@@ -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());
+ }
@@ -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();
@@ -43,6 +43,12 @@ public interface IItdmWeituoInfoService extends IService<ItdmWeituoInfo> {
public void word(String id, HttpServletResponse response) throws IOException;
+ /**根据委托单位查询委托信息列表*/
+ public List<ItdmWeituoInfo> shenheList();
@@ -237,4 +237,10 @@ public class ItdmWeituoInfoServiceImpl extends ServiceImpl<ItdmWeituoInfoMapper,
+ @Override
+ public List<ItdmWeituoInfo> shenheList() {
+ return itdmWeituoInfoMapper.selectShenheOk();