Compare commits

..

No commits in common. "e68b0de45509964486be8f023c5246cfef1de1d0" and "a4569c0936e7ad67335ab516db3620a9ba1c8190" have entirely different histories.

1 changed files with 1 additions and 3 deletions

View File

@ -8,7 +8,6 @@ import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@ -23,9 +22,8 @@ public class AppMassagePackageDetailController {
@Login
@GetMapping("/findAppPage")
@ApiOperation("查询按服务包详情(分页)")
public Result findAppPage(@RequestAttribute("userId") Long userId, MassagePackageDetail massagePackageDetail){
public Result findAppPage(MassagePackageDetail massagePackageDetail){
massagePackageDetail.setStatus(1);
massagePackageDetail.setUserId(userId);
return service.findAppPage(massagePackageDetail);
}