Appearance
POST /dm-device/plan/logic/page
Content-Type: application/json
触发按钮:pageAjax
入参
无
出参
传递对象:ResultData,前端实际消费的是 data 中的 rows / total。<rows + total>
json
{
"id": "",
"partNo": "",
"partCode": "",
"partName": "",
"bigCategory": "",
"...": "..."
}前端校验规则
text
无后端逻辑
text
业务流程:限定逻辑计划范围后获取当前用户可见部门并分页查询计划
├── 绑定逻辑计划业务类型 :53
├── 查询当前用户可见部门:MaintenancePlansServiceImpl.getDeptList :133
├── 无可见部门时直接返回空分页 :135-137
└── 按部门和条件分页查询计划:MaintenancePlansServiceImpl.queryToPage :138-141后端校验规则
text
无涉及数据库表
| 库名.表名 | mapper.statement | 描述 |
|---|---|---|
| plan | PlanMapper.selectPage | 按筛选条件分页查询plan数据 |