Merge remote-tracking branch 'origin/dev' into dev
| | |
| | | * @Author: wwj |
| | | * @Date: 2025/4/9 |
| | | */ |
| | | @GetMapping("/confirmPart") |
| | | public AjaxResult confirmPart(ApsPartPlanTemp apsPartPlanTemp) { |
| | | @PostMapping("/confirmPart") |
| | | public AjaxResult confirmPart(@RequestBody ApsPartPlanTemp apsPartPlanTemp) { |
| | | return toAjax(apsPartPlanService.confirmPart(apsPartPlanTemp)); |
| | | } |
| | | |
| | |
| | | left join sys_user_role ur on rm.role_id = ur.role_id |
| | | left join sys_role ro on ur.role_id = ro.role_id |
| | | left join sys_user u on ur.user_id = u.user_id |
| | | where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = 0 AND ro.status = 0 |
| | | where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = '0' AND ro.status = '0' |
| | | order by m.parent_id, m.order_num |
| | | </select> |
| | | |