Преглед изворни кода

单位积分清单实体提交

huangpeng пре 1 недеља
родитељ
комит
9b5739ac78

+ 69 - 0
qhse-entity/src/main/java/com/rongwei/bsentity/domain/QhsePointsUnitRecordDo.java

@@ -0,0 +1,69 @@
+package com.rongwei.bsentity.domain;
+
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.rongwei.rwcommon.base.BaseDo;
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * 单位积分清单(QhsePointsUnitRecord)表实体类
+ *
+ * @author makejava
+ * @since 2025-09-05 15:15:03
+ */
+@SuppressWarnings("serial")
+@Data
+@TableName(value ="qhse_points_unit_record")
+
+public class QhsePointsUnitRecordDo extends BaseDo {
+
+
+//主键
+    private String id;
+//租户ID
+    private String tenantid;
+//扩展json格式配置
+    private String roption;
+//是否删除Y/N
+    private String deleted;
+//备注
+    private String remark;
+//创建时间
+    private Date createdate;
+//创建用户ID
+    private String createuserid;
+//修改日期
+    private Date modifydate;
+//修改用户ID
+    private String modifyuserid;
+//创建人名称
+    private String createusername;
+//修改人名称
+    private String modifyusername;
+//积分编号
+    private String pointscode;
+//积分年度
+    private Integer pointsyear;
+//分包商ID
+    private String subcontractorid;
+//加分
+    private Integer bonuspoints;
+//加分描述
+    private String bonusdescription;
+//扣分
+    private Integer deductionpoints;
+//扣分描述
+    private String deductiondescription;
+//累计分值
+    private Integer cumulativescore;
+//预警
+    private String warning;
+//单位编号
+    private String unitcode;
+
+
+
+}
+