Fancy
2024-10-17 451eada4d42593de866b6fe150129ec12079a452
pms-parent/pms-test/src/main/java/com/dy/pmsTest/command/CommandCtrl.java
@@ -34,11 +34,9 @@
     * @return
     */
    @PostMapping(path="save")
    @SsoPowerAop(power = "10300005")
    @SsoPowerAop(power = "-1")
    @Log("保存指令")
    public BaseResponse<Boolean> save(@RequestBody @Valid TstCommand command){
        command.disabled = false;
        command.deleted = false;
        int count = sv.save(command);
        if (count <= 0) {
            return BaseResponseUtils.buildFail("数据库存储失败");
@@ -53,7 +51,7 @@
     * @return
     */
    @PostMapping(path="update")
    @SsoPowerAop(power = "10300005")
    @SsoPowerAop(power = "-1")
    @Log("更新指令")
    public BaseResponse<Boolean> update(@RequestBody @Valid TstCommand command){
        int count = sv.update(command);
@@ -70,7 +68,7 @@
     * @return
     */
    @GetMapping(path="delete")
    @SsoPowerAop(power = "10300005")
    @SsoPowerAop(power = "-1")
    @Log("删除指令")
    public BaseResponse<Boolean> delete(String id){
        int count = sv.delete(Long.parseLong(id));
@@ -86,7 +84,7 @@
     * @return
     */
    @GetMapping(path="one")
    @SsoPowerAop(power = "10300004") //登录与权限同时验证
    @SsoPowerAop(power = "-1") //登录与权限同时验证
    @Log("根据ID查询指令")
    public BaseResponse<TstCommand> one(String id){
        TstCommand param=sv.selectById(id);
@@ -99,7 +97,7 @@
     * @return
     */
    @PostMapping(path="some")
    @SsoPowerAop(power = "10300004")
    @SsoPowerAop(power = "-1")
    @Log("分页查询指令")
    public BaseResponse<QueryResultVo<List<TstCommand>>> some(@RequestBody QueryVo vo){
        QueryResultVo<List<TstCommand>> list = sv.selectSome(vo) ;
@@ -111,7 +109,7 @@
     * @return
     */
    @GetMapping(path="all")
    @SsoPowerAop(power = "10300004")
    @SsoPowerAop(power = "-1")
    @Log("查询所有指令")
    public BaseResponse<List<TstCommand>> all(){
        List<TstCommand> list = sv.selectAll();