ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/LandReportedController.java
@@ -12,6 +12,7 @@ import com.ruoyi.system.model.LandReported; import com.ruoyi.system.query.LandReportedListQuery; import com.ruoyi.system.service.*; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.bind.annotation.*; @@ -30,6 +31,7 @@ * @since 2025-10-17 */ @RestController @Api(tags = "已办证土地管理") @RequestMapping("/land-reported") public class LandReportedController { @Resource ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/ProjectInventoryController.java
@@ -95,8 +95,8 @@ public R<PageInfo<OutStorageListVO>> outStoragePageList(@RequestBody InventoryStorageListQuery inventoryStorageListQuery) { return R.ok(projectInventoryService.outStoragePageList(inventoryStorageListQuery)); } @ApiOperation(value = "月新增出库项目情况分页列表") @PostMapping(value = "/outStoragePageList") @ApiOperation(value = "月新增入库项目情况分页列表") @PostMapping(value = "/monthStoragePageList") public R<PageInfo<MonthStorageListVO>> monthStoragePageList(@RequestBody InventoryStorageListQuery inventoryStorageListQuery) { return R.ok(projectInventoryService.monthStoragePageList(inventoryStorageListQuery)); } ruoyi-system/src/main/resources/mapper/system/OaApprovalApplicationsMapper.xml
@@ -33,7 +33,7 @@ <if test="query.userId != null "> and applicant_user_id like concat('%',#{query.userId},'%') </if> order by approval_time desc order by application_date desc </select> </mapper>