|
@@ -0,0 +1,242 @@
|
|
|
+package com.rongwe.zhsw.system.domain;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+* 换表登记
|
|
|
+* @TableName sw_meter_exchange_register
|
|
|
+*/
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@TableName("sw_meter_exchange_register")
|
|
|
+@Accessors(chain = true)
|
|
|
+public class SwMeterExchangeRegisterDo implements Serializable {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @JsonProperty("ID")
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 租户ID
|
|
|
+ */
|
|
|
+ @JsonProperty("TENANTID")
|
|
|
+ private String tenantid;
|
|
|
+ @JsonProperty("ROPTION")
|
|
|
+ /**
|
|
|
+ * 扩展json格式配置
|
|
|
+ */
|
|
|
+ private String roption;
|
|
|
+
|
|
|
+ @JsonProperty("DELETED")
|
|
|
+ /**
|
|
|
+ * 是否删除Y/N
|
|
|
+ */
|
|
|
+ private String deleted;
|
|
|
+
|
|
|
+ @JsonProperty("REMARK")
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("CREATEDATE")
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private Date createdate;
|
|
|
+
|
|
|
+ @JsonProperty("CREATEUSERID")
|
|
|
+ /**
|
|
|
+ * 创建用户ID
|
|
|
+ */
|
|
|
+ private String createuserid;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("MODIFYDATE")
|
|
|
+ /**
|
|
|
+ * 修改日期
|
|
|
+ */
|
|
|
+ private Date modifydate;
|
|
|
+
|
|
|
+ @JsonProperty("MODIFYUSERID")
|
|
|
+ /**
|
|
|
+ * 修改用户ID
|
|
|
+ */
|
|
|
+ private String modifyuserid;
|
|
|
+
|
|
|
+ @JsonProperty("CREATEUSERNAME")
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ private String createusername;
|
|
|
+
|
|
|
+ @JsonProperty("MODIFYUSERNAME")
|
|
|
+ /**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ private String modifyusername;
|
|
|
+
|
|
|
+ @JsonProperty("ACCOUNTUSERNO")
|
|
|
+ /**
|
|
|
+ * 所属户号
|
|
|
+ */
|
|
|
+ private String accountuserno;
|
|
|
+
|
|
|
+ @JsonProperty("OLDSMETERNO")
|
|
|
+ /**
|
|
|
+ * 旧表编号
|
|
|
+ */
|
|
|
+ private String oldsmeterno;
|
|
|
+
|
|
|
+ @JsonProperty("WATERTYPE")
|
|
|
+ /**
|
|
|
+ * 用水类型
|
|
|
+ */
|
|
|
+ private String watertype;
|
|
|
+
|
|
|
+ @JsonProperty("VILLAGENAME")
|
|
|
+ /**
|
|
|
+ * 小区/村落/街道名称
|
|
|
+ */
|
|
|
+ private String villagename;
|
|
|
+
|
|
|
+ @JsonProperty("ADDRESS")
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ @JsonProperty("PHONENUMBER")
|
|
|
+ /**
|
|
|
+ * 手机号
|
|
|
+ */
|
|
|
+ private String phonenumber;
|
|
|
+
|
|
|
+ @JsonProperty("VOLUMENO")
|
|
|
+ /**
|
|
|
+ * 册号
|
|
|
+ */
|
|
|
+ private String volumeno;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("METERCHANGEENTRYDATE")
|
|
|
+ /**
|
|
|
+ * 换表登记日期
|
|
|
+ */
|
|
|
+ private Date meterchangeentrydate;
|
|
|
+
|
|
|
+ @JsonProperty("NEWMETERNO")
|
|
|
+ /**
|
|
|
+ * 新水表编号
|
|
|
+ */
|
|
|
+ private String newmeterno;
|
|
|
+
|
|
|
+ @JsonProperty("NEWMETERMODEL")
|
|
|
+ /**
|
|
|
+ * 新水表型号
|
|
|
+ */
|
|
|
+ private String newmetermodel;
|
|
|
+
|
|
|
+ @JsonProperty("MANUFACTURER")
|
|
|
+ /**
|
|
|
+ * 新水表厂家
|
|
|
+ */
|
|
|
+ private String manufacturer;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("MANUFACTUREDATE")
|
|
|
+ /**
|
|
|
+ * 生产日期
|
|
|
+ */
|
|
|
+ private Date manufacturedate;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("METERCHANGEDATE")
|
|
|
+ /**
|
|
|
+ * 换表日期
|
|
|
+ */
|
|
|
+ private Date meterchangedate;
|
|
|
+
|
|
|
+ @JsonProperty("METERSTATUS")
|
|
|
+ /**
|
|
|
+ * 水表状态
|
|
|
+ */
|
|
|
+ private String meterstatus;
|
|
|
+
|
|
|
+ @JsonProperty("USERNAME")
|
|
|
+ /**
|
|
|
+ * 户名
|
|
|
+ */
|
|
|
+ private String username;
|
|
|
+
|
|
|
+ @JsonProperty("USERID")
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ private String userid;
|
|
|
+
|
|
|
+ @JsonProperty("OLDSMETERMODEL")
|
|
|
+ /**
|
|
|
+ * 旧表型号
|
|
|
+ */
|
|
|
+ private String oldsmetermodel;
|
|
|
+
|
|
|
+ @JsonProperty("OLDSMETERREADING")
|
|
|
+ /**
|
|
|
+ * 旧表读数
|
|
|
+ */
|
|
|
+ private BigDecimal oldsmeterreading;
|
|
|
+
|
|
|
+ @JsonProperty("NEWMETERREADING")
|
|
|
+ /**
|
|
|
+ * 新表读数
|
|
|
+ */
|
|
|
+ private BigDecimal newmeterreading;
|
|
|
+
|
|
|
+ @JsonProperty("OLDSMETERCREATOR")
|
|
|
+ /**
|
|
|
+ * 旧表创建人
|
|
|
+ */
|
|
|
+ private String oldsmetercreator;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("OLDSMETERENTRYDATE")
|
|
|
+ /**
|
|
|
+ * 旧表创建日期
|
|
|
+ */
|
|
|
+ private Date oldsmeterentrydate;
|
|
|
+
|
|
|
+ @JsonProperty("PREVMTRREADING")
|
|
|
+ /**
|
|
|
+ * 上次抄表读数
|
|
|
+ */
|
|
|
+ private BigDecimal prevmtrreading;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonProperty("PREVMTRRDATE")
|
|
|
+ /**
|
|
|
+ * 上次抄表日期
|
|
|
+ */
|
|
|
+ private Date prevmtrrdate;
|
|
|
+
|
|
|
+ @JsonProperty("OLDMTRMFTR")
|
|
|
+ /**
|
|
|
+ * 旧水表厂家
|
|
|
+ */
|
|
|
+ private String oldmtrmftr;
|
|
|
+
|
|
|
+ @JsonProperty("OLDMTRTYPE")
|
|
|
+ /**
|
|
|
+ * 旧水表类型
|
|
|
+ */
|
|
|
+ private String oldmtrtype;
|
|
|
+
|
|
|
+ @JsonProperty("NEWMTRTYPE")
|
|
|
+ /**
|
|
|
+ * 新水表类型
|
|
|
+ */
|
|
|
+ private String newmtrtype;
|
|
|
+}
|