From 8cb6e4ba6aa4977f761b7d07e2dc741d72eb52a3 Mon Sep 17 00:00:00 2001 From: wanggongfeng <1305282856@qq.com> Date: Thu, 31 Mar 2022 15:41:33 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E8=B0=83=E6=95=B4=E7=AE=A1?= =?UTF-8?q?=E7=90=86dto=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/PointsIntegralAdjustmentCheckDTO.java | 29 +++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java b/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java index ffbec62..b46f8fe 100644 --- a/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java +++ b/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; -} \ No newline at end of file +}