|
|
|
@ -8,6 +8,7 @@ import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.hy.common.api.vo.Result; |
|
|
|
|
import org.hy.common.aspect.annotation.AutoLog; |
|
|
|
|
import org.hy.common.aspect.annotation.PermissionData; |
|
|
|
|
import org.hy.common.system.base.controller.JeecgController; |
|
|
|
|
import org.hy.common.system.query.QueryGenerator; |
|
|
|
|
import org.hy.modules.waste.entity.ProcessWaste; |
|
|
|
@ -49,6 +50,7 @@ public class ProcessWasteController extends JeecgController<ProcessWaste, IProce
|
|
|
|
|
@AutoLog(value = "废旧物资库表-分页列表查询") |
|
|
|
|
@ApiOperation(value="废旧物资库表-分页列表查询", notes="废旧物资库表-分页列表查询") |
|
|
|
|
@GetMapping(value = "/list") |
|
|
|
|
@PermissionData(pageComponent="waste/ProcessWasteList") |
|
|
|
|
public Result<?> queryPageList(ProcessWaste processWaste, |
|
|
|
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo, |
|
|
|
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize, |
|
|
|
@ -72,6 +74,7 @@ public class ProcessWasteController extends JeecgController<ProcessWaste, IProce
|
|
|
|
|
@AutoLog(value = "废旧物资库表-报废台账分页列表查询") |
|
|
|
|
@ApiOperation(value="废旧物资库表-报废台账分页列表查询", notes="废旧物资库表-报废台账分页列表查询") |
|
|
|
|
@GetMapping(value = "/listCable") |
|
|
|
|
@PermissionData(pageComponent="waste/ProcessWasteList") |
|
|
|
|
public Result<?> queryPageLists(ProcessWaste processWaste, |
|
|
|
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo, |
|
|
|
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize, |
|
|
|
|