|
@@ -0,0 +1,97 @@
|
|
|
+package com.rongwei.bsentity.domain;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+import com.rongwei.rwcommon.base.BaseDo;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 安全积分-人员积分清单
|
|
|
+ * @TableName qhse_points_record_user
|
|
|
+ */
|
|
|
+@TableName(value ="qhse_points_record_user")
|
|
|
+@Data
|
|
|
+public class QhsePointsRecordUserDo extends BaseDo {
|
|
|
+ /**
|
|
|
+ * 主键ID
|
|
|
+ */
|
|
|
+ @TableId
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 租户ID
|
|
|
+ */
|
|
|
+ private String tenantid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扩展json格式配置
|
|
|
+ */
|
|
|
+ private String roption;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 积分年度
|
|
|
+ */
|
|
|
+ private Integer pointyear;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 积分持有人
|
|
|
+ */
|
|
|
+ private String holdername;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 积分持有人ID
|
|
|
+ */
|
|
|
+ private String holderid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 积分持有人工号
|
|
|
+ */
|
|
|
+ private String holderaccount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当前分数
|
|
|
+ */
|
|
|
+ private Integer currentpoint;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 加分
|
|
|
+ */
|
|
|
+ private Integer bonuspoints;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扣分
|
|
|
+ */
|
|
|
+ private Integer deductpoints;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 重置次数
|
|
|
+ */
|
|
|
+ private Integer resetnum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 上次重置时间
|
|
|
+ */
|
|
|
+ private Date resetteie;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 加分说明
|
|
|
+ */
|
|
|
+ private String bonuspointsdesc;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扣分说明
|
|
|
+ */
|
|
|
+ private String deductpointsdesc;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 兑换次数
|
|
|
+ */
|
|
|
+ private Integer exchangenum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+}
|