Commit d62f122d by jianan

审批问题12

parent 74f84d21
...@@ -11,7 +11,7 @@ public class PractitionerHiringListRequestVO { ...@@ -11,7 +11,7 @@ public class PractitionerHiringListRequestVO {
private Long branchId; private Long branchId;
private Long deptId; private Long deptId;
private Long subsystemId; private Long subsystemId;
private Long name; private String name;
private String status; private String status;
private PageInfo<PractitionerHiringListInfo> pageInfo; private PageInfo<PractitionerHiringListInfo> pageInfo;
...@@ -54,11 +54,11 @@ public class PractitionerHiringListRequestVO { ...@@ -54,11 +54,11 @@ public class PractitionerHiringListRequestVO {
this.subsystemId = subsystemId; this.subsystemId = subsystemId;
} }
public Long getName() { public String getName() {
return name; return name;
} }
public void setName(Long name) { public void setName(String name) {
this.name = name; this.name = name;
} }
......
...@@ -67,7 +67,7 @@ public interface AgmsHiringMapper { ...@@ -67,7 +67,7 @@ public interface AgmsHiringMapper {
@Param("branchId")Long branchId, @Param("branchId")Long branchId,
@Param("deptId")Long deptId, @Param("deptId")Long deptId,
@Param("subsystemId")Long subsystemId, @Param("subsystemId")Long subsystemId,
@Param("name")Long name @Param("name")String name
); );
Page<PractitionerHiringListInfo> queryUnhandledList(@Param("approveStatus")String approveStatus, Page<PractitionerHiringListInfo> queryUnhandledList(@Param("approveStatus")String approveStatus,
...@@ -75,7 +75,7 @@ public interface AgmsHiringMapper { ...@@ -75,7 +75,7 @@ public interface AgmsHiringMapper {
@Param("branchId")Long branchId, @Param("branchId")Long branchId,
@Param("deptId")Long deptId, @Param("deptId")Long deptId,
@Param("subsystemId")Long subsystemId, @Param("subsystemId")Long subsystemId,
@Param("name")Long name @Param("name")String name
); );
List<PractitionerHiringListInfo> queryS2List(); List<PractitionerHiringListInfo> queryS2List();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment