소스 검색

绩效考核 流程结束

ys321973351 1 년 전
부모
커밋
fd1953ad66

+ 11 - 0
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/controller/ItdmWeituoInfoController.java

@@ -312,4 +312,15 @@ public class ItdmWeituoInfoController extends JeecgController<ItdmWeituoInfo, II
     }
 
 
+
+    /**
+     * 根据委托单位查询委托信息列表
+     */
+    @ApiOperation(value = "根据委托单位查询委托信息列表", notes = "根据委托单位查询委托信息列表")
+    @GetMapping(value = "/shenheList")
+    public Result<List<ItdmWeituoInfo>> shenheList() {
+        return Result.OK(itdmWeituoInfoService.shenheList());
+    }
+
+
 }

+ 3 - 0
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/mapper/ItdmWeituoInfoMapper.java

@@ -23,6 +23,9 @@ public interface ItdmWeituoInfoMapper extends BaseMapper<ItdmWeituoInfo> {
     public List<ItdmWeituoInfo> selectWTListByClient(@Param("weituoClient") String weituoClient);
 
 
+    @Select("select * from itdm_weituo_info where  shenhe_status =1 ")
+    public List<ItdmWeituoInfo> selectShenheOk();
+
 
 
 

+ 6 - 0
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/service/IItdmWeituoInfoService.java

@@ -43,6 +43,12 @@ public interface IItdmWeituoInfoService extends IService<ItdmWeituoInfo> {
 
     public void word(String id, HttpServletResponse response) throws IOException;
 
+
+
+
+    /**根据委托单位查询委托信息列表*/
+    public List<ItdmWeituoInfo> shenheList();
+
 }
 
 

+ 6 - 0
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/service/impl/ItdmWeituoInfoServiceImpl.java

@@ -237,4 +237,10 @@ public class ItdmWeituoInfoServiceImpl extends ServiceImpl<ItdmWeituoInfoMapper,
 
 
     }
+
+    @Override
+    public List<ItdmWeituoInfo> shenheList() {
+        return itdmWeituoInfoMapper.selectShenheOk();
+    }
+
 }