Commit d62f122d by jianan

审批问题12

parent 74f84d21
......@@ -11,7 +11,7 @@ public class PractitionerHiringListRequestVO {
private Long branchId;
private Long deptId;
private Long subsystemId;
private Long name;
private String name;
private String status;
private PageInfo<PractitionerHiringListInfo> pageInfo;
......@@ -54,11 +54,11 @@ public class PractitionerHiringListRequestVO {
this.subsystemId = subsystemId;
}
public Long getName() {
public String getName() {
return name;
}
public void setName(Long name) {
public void setName(String name) {
this.name = name;
}
......
......@@ -67,7 +67,7 @@ public interface AgmsHiringMapper {
@Param("branchId")Long branchId,
@Param("deptId")Long deptId,
@Param("subsystemId")Long subsystemId,
@Param("name")Long name
@Param("name")String name
);
Page<PractitionerHiringListInfo> queryUnhandledList(@Param("approveStatus")String approveStatus,
......@@ -75,7 +75,7 @@ public interface AgmsHiringMapper {
@Param("branchId")Long branchId,
@Param("deptId")Long deptId,
@Param("subsystemId")Long subsystemId,
@Param("name")Long name
@Param("name")String name
);
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