Commit 085b5822 by 墨竹

fix:操作日志

parent 62337870
...@@ -96,6 +96,10 @@ public class HmQrcodeQDTO implements Serializable { ...@@ -96,6 +96,10 @@ public class HmQrcodeQDTO implements Serializable {
private List<String> clerkIdList; private List<String> clerkIdList;
private String staffId; private String staffId;
private String staffName; private String staffName;
/**
* 调用类型,1:手动调用;2:系统调用;3:批量调用
*/
private Integer invokingType;
public Long getHmId() { public Long getHmId() {
...@@ -353,5 +357,13 @@ public class HmQrcodeQDTO implements Serializable { ...@@ -353,5 +357,13 @@ public class HmQrcodeQDTO implements Serializable {
public void setStaffName(String staffName) { public void setStaffName(String staffName) {
this.staffName = staffName; this.staffName = staffName;
} }
public Integer getInvokingType() {
return invokingType;
}
public void setInvokingType(Integer invokingType) {
this.invokingType = invokingType;
}
} }
...@@ -188,6 +188,7 @@ public class HmQrcodeApiServiceImpl implements HmQrcodeApiService { ...@@ -188,6 +188,7 @@ public class HmQrcodeApiServiceImpl implements HmQrcodeApiService {
} }
for (String clerkId : clerkIdList) { for (String clerkId : clerkIdList) {
hmQrcodeQDTO.setClerkIdList(Collections.singletonList(clerkId)); hmQrcodeQDTO.setClerkIdList(Collections.singletonList(clerkId));
hmQrcodeQDTO.setInvokingType(3);
add(hmQrcodeQDTO); add(hmQrcodeQDTO);
} }
setLoggerContext(enterpriseId, wxEnterpriseId, hmQrcodeQDTO.getCreatorId(), hmQrcodeQDTO.getCreatorName()); setLoggerContext(enterpriseId, wxEnterpriseId, hmQrcodeQDTO.getCreatorId(), hmQrcodeQDTO.getCreatorName());
......
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