From ba9218dd49c0443007e925385cec5660dae9d8a2 Mon Sep 17 00:00:00 2001 From: wanggongfeng <1305282856@qq.com> Date: Thu, 31 Mar 2022 15:00:51 +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=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../epdc/dto/PointsAdjustmentTypeDTO.java | 91 +++++++++++ .../dto/PointsIntegralAdjustmentCheckDTO.java | 141 ++++++++++++++++++ 2 files changed, 232 insertions(+) create mode 100644 epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsAdjustmentTypeDTO.java create mode 100644 epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java diff --git a/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsAdjustmentTypeDTO.java b/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsAdjustmentTypeDTO.java new file mode 100644 index 0000000..a188cf8 --- /dev/null +++ b/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsAdjustmentTypeDTO.java @@ -0,0 +1,91 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto; + +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + + +/** + * 积分调整类型分值管理表 + * + * @author elink elink@elink-cn.com + * @since v1.0.0 2022-03-31 + */ +@Data +public class PointsAdjustmentTypeDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * ID + */ + private String id; + + /** + * 行为调整类型code + */ + private String adjustmentTypeCode; + + /** + * 行为调整类型名称 + */ + private String adjustmentTypeName; + + /** + * 分数 + */ + private Integer point; + + /** + * 备注 + */ + private String remark; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 逻辑删除标识 + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + +} \ No newline at end of file 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 new file mode 100644 index 0000000..ffbec62 --- /dev/null +++ b/epdc-cloud-points-client/src/main/java/com/elink/esua/epdc/dto/PointsIntegralAdjustmentCheckDTO.java @@ -0,0 +1,141 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto; + +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + + +/** + * 积分调整审核表 + * + * @author elink elink@elink-cn.com + * @since v1.0.0 2022-03-31 + */ +@Data +public class PointsIntegralAdjustmentCheckDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * ID + */ + private String id; + + /** + * 用户ID + */ + private String userId; + + /** + * 用户昵称 + */ + private String nickName; + + /** + * 姓名 + */ + private String realName; + + /** + * 用户头像 + */ + private String faceImg; + + /** + * 性别(0-女,1-男) + */ + private String sex; + + /** + * 出生日期 + */ + private Date birthday; + + /** + * 手机号 + */ + private String mobile; + + /** + * 用户当前积分 + */ + private Integer points; + + /** + * 调整原因 + */ + private String adjustReason; + + /** + * 积分操作类型(0:减;1:加) + */ + private String operationType; + + /** + * 积分调整值 + */ + private Integer operatePoints; + + /** + * 积分调整类型编码 + */ + private String pointOperateTypeCode; + + /** + * 积分调整类型名称 + */ + private String pointOperateTypeName; + + /** + * 工作人员ID + */ + private String workUserId; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 逻辑删除标识 + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + +} \ No newline at end of file