Browse Source

积分调整管理dto添加字段

master
wanggongfeng 4 years ago
parent
commit
8cb6e4ba6a
  1. 29
      epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java

29
epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java

@ -23,7 +23,7 @@ import lombok.Data;
/**
* 积分调整审核表
* 积分调整审核表
*
* @author elink elink@elink-cn.com
* @since v1.0.0 2022-03-31
@ -108,6 +108,31 @@ public class PointsIntegralAdjustmentCheckDTO implements Serializable {
*/
private String workUserId;
/**
* 工作人员姓名
*/
private String workUserName;
/**
* 工作人员部门ID
*/
private String workUserDeptId;
/**
* 工作人员部门名称
*/
private String workUserDeptName;
/**
* 审核状态1未审核2通过3不通过
*/
private Integer state;
/**
* 审核意见
*/
private String checkOpinion;
/**
* 乐观锁
*/
@ -138,4 +163,4 @@ public class PointsIntegralAdjustmentCheckDTO implements Serializable {
*/
private Date updatedTime;
}
}

Loading…
Cancel
Save