Commit 73959d3c by huangZW

111

parent 7bb25b00
......@@ -373,12 +373,12 @@ public class StaffDepartmentRelatedApiServiceImpl implements StaffDepartmentRela
dto2.setValue(content);
dto3.setKey("结果");
dto3.setValue(auditStatus == 1?"已同意":"已拒绝");
dto4.setKey("理由");
dto4.setValue(auditReason);
items.add(dto1);
items.add(dto2);
items.add(dto3);
if(org.apache.commons.lang.StringUtils.isNotBlank(auditReason)){
if(StringUtils.isNotEmpty(auditReason)){
dto4.setKey("理由");
dto4.setValue(auditReason);
items.add(dto4);
}
ArrayList<String> list = new ArrayList<>();
......
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