|
@@ -1,6 +1,8 @@
|
|
|
package com.zksy.data.domain.po;
|
|
package com.zksy.data.domain.po;
|
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
@@ -8,136 +10,144 @@ import lombok.Data;
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 信用怀化基础数据2
|
|
|
|
|
- * @TableName xcr_xinyonghuaihua_base_info2
|
|
|
|
|
|
|
+ * 水费清单表
|
|
|
|
|
+ * @TableName xcr_other_info_36
|
|
|
*/
|
|
*/
|
|
|
-@TableName(value ="xcr_xinyonghuaihua_base_info2")
|
|
|
|
|
|
|
+@TableName(value ="xcr_other_info_36")
|
|
|
@Data
|
|
@Data
|
|
|
-public class XcrXinyonghuaihuaBaseInfo2 extends BasePo implements Serializable {
|
|
|
|
|
- @JsonProperty("TABLECODE")
|
|
|
|
|
- @TableField("TABLECODE")
|
|
|
|
|
- private String tableCode;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("Open_Date")
|
|
|
|
|
- @TableField("Open_Date")
|
|
|
|
|
- private String openDate;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("Statistical_Base_Date")
|
|
|
|
|
- @TableField("Statistical_Base_Date")
|
|
|
|
|
- private String statisticalBaseDate;
|
|
|
|
|
|
|
+public class XcrOtherInfo36 extends BasePo implements Serializable {
|
|
|
|
|
+ @JsonProperty("id")
|
|
|
|
|
+ @TableId(value = "id", type = IdType.INPUT)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
|
|
|
@JsonProperty("entity_name")
|
|
@JsonProperty("entity_name")
|
|
|
@TableField("entity_name")
|
|
@TableField("entity_name")
|
|
|
private String entityName;
|
|
private String entityName;
|
|
|
|
|
|
|
|
- @JsonProperty("MONTHLY_CONSUMPTION_6")
|
|
|
|
|
- @TableField("MONTHLY_CONSUMPTION_6")
|
|
|
|
|
- private Double monthlyConsumption6;
|
|
|
|
|
|
|
+ @JsonProperty("entity_code")
|
|
|
|
|
+ @TableField("entity_code")
|
|
|
|
|
+ private String entityCode;
|
|
|
|
|
|
|
|
- @JsonProperty("User_Address")
|
|
|
|
|
- @TableField("User_Address")
|
|
|
|
|
- private String userAddress;
|
|
|
|
|
|
|
+ @JsonProperty("entity_code_add")
|
|
|
|
|
+ @TableField("entity_code_add")
|
|
|
|
|
+ private String entityCodeAdd;
|
|
|
|
|
|
|
|
- @JsonProperty("Areacode")
|
|
|
|
|
- @TableField("Areacode")
|
|
|
|
|
- private String areacode;
|
|
|
|
|
|
|
+ @JsonProperty("entity_type")
|
|
|
|
|
+ @TableField("entity_type")
|
|
|
|
|
+ private String entityType;
|
|
|
|
|
|
|
|
- @JsonProperty("IS_IN_ARREARS")
|
|
|
|
|
- @TableField("IS_IN_ARREARS")
|
|
|
|
|
- private String isInArrears;
|
|
|
|
|
|
|
+ @JsonProperty("inventory_id")
|
|
|
|
|
+ @TableField("inventory_id")
|
|
|
|
|
+ private Long inventoryId;
|
|
|
|
|
|
|
|
- @JsonProperty("update_time")
|
|
|
|
|
- @TableField("update_time")
|
|
|
|
|
- private String updateTime;
|
|
|
|
|
|
|
+ @JsonProperty("inventory_source_id")
|
|
|
|
|
+ @TableField("inventory_source_id")
|
|
|
|
|
+ private Long inventorySourceId;
|
|
|
|
|
|
|
|
- @JsonProperty("update_user")
|
|
|
|
|
- @TableField("update_user")
|
|
|
|
|
- private String updateUser;
|
|
|
|
|
|
|
+ @JsonProperty("meta_id")
|
|
|
|
|
+ @TableField("meta_id")
|
|
|
|
|
+ private Long metaId;
|
|
|
|
|
|
|
|
- @JsonProperty("entity_code")
|
|
|
|
|
- @TableField("entity_code")
|
|
|
|
|
- private String entityCode;
|
|
|
|
|
|
|
+ @JsonProperty("status")
|
|
|
|
|
+ @TableField("status")
|
|
|
|
|
+ private String status;
|
|
|
|
|
|
|
|
@JsonProperty("is_del")
|
|
@JsonProperty("is_del")
|
|
|
@TableField("is_del")
|
|
@TableField("is_del")
|
|
|
private int isDel;
|
|
private int isDel;
|
|
|
|
|
|
|
|
- @JsonProperty("id")
|
|
|
|
|
- @TableField("id")
|
|
|
|
|
- private Long id;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("tablename")
|
|
|
|
|
- @TableField("tablename")
|
|
|
|
|
- private String tableName;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("userinfo")
|
|
|
|
|
- @TableField("userinfo")
|
|
|
|
|
- private String userInfo;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("Prepaid_Amount")
|
|
|
|
|
- @TableField("Prepaid_Amount")
|
|
|
|
|
- private String prepaidAmount;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("payment_detail")
|
|
|
|
|
- @TableField("payment_detail")
|
|
|
|
|
- private String paymentDetail;
|
|
|
|
|
-
|
|
|
|
|
@JsonProperty("dep_id")
|
|
@JsonProperty("dep_id")
|
|
|
@TableField("dep_id")
|
|
@TableField("dep_id")
|
|
|
- private Integer depId;
|
|
|
|
|
|
|
+ private Long depId;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("org_id")
|
|
|
|
|
+ @TableField("org_id")
|
|
|
|
|
+ private Long orgId;
|
|
|
|
|
|
|
|
@JsonProperty("batch_no")
|
|
@JsonProperty("batch_no")
|
|
|
@TableField("batch_no")
|
|
@TableField("batch_no")
|
|
|
private Long batchNo;
|
|
private Long batchNo;
|
|
|
|
|
|
|
|
|
|
+ @JsonProperty("create_user")
|
|
|
|
|
+ @TableField("create_user")
|
|
|
|
|
+ private String createUser;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("update_user")
|
|
|
|
|
+ @TableField("update_user")
|
|
|
|
|
+ private String updateUser;
|
|
|
|
|
+
|
|
|
@JsonProperty("create_time")
|
|
@JsonProperty("create_time")
|
|
|
@TableField("create_time")
|
|
@TableField("create_time")
|
|
|
private String createTime;
|
|
private String createTime;
|
|
|
|
|
|
|
|
|
|
+ @JsonProperty("update_time")
|
|
|
|
|
+ @TableField("update_time")
|
|
|
|
|
+ private String updateTime;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("data_code")
|
|
|
|
|
+ @TableField("data_code")
|
|
|
|
|
+ private String dataCode;
|
|
|
|
|
+
|
|
|
@JsonProperty("entity_ztlb")
|
|
@JsonProperty("entity_ztlb")
|
|
|
@TableField("entity_ztlb")
|
|
@TableField("entity_ztlb")
|
|
|
private Integer entityZtlb;
|
|
private Integer entityZtlb;
|
|
|
|
|
|
|
|
- @JsonProperty("meta_id")
|
|
|
|
|
- @TableField("meta_id")
|
|
|
|
|
- private int metaId;
|
|
|
|
|
|
|
+ @JsonProperty("userinfo")
|
|
|
|
|
+ @TableField("userinfo")
|
|
|
|
|
+ private String userInfo;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("payment_detail")
|
|
|
|
|
+ @TableField("payment_detail")
|
|
|
|
|
+ private String paymentDetail;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("MONTHLY_CONSUMPTION_3")
|
|
|
|
|
+ @TableField("MONTHLY_CONSUMPTION_3")
|
|
|
|
|
+ private String monthlyConsumption3;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("MONTHLY_CONSUMPTION_6")
|
|
|
|
|
+ @TableField("MONTHLY_CONSUMPTION_6")
|
|
|
|
|
+ private String monthlyConsumption6;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("IS_IN_ARREARS")
|
|
|
|
|
+ @TableField("IS_IN_ARREARS")
|
|
|
|
|
+ private String isInArrears;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tjsj")
|
|
|
|
|
+ @TableField("tjsj")
|
|
|
|
|
+ private String tjsj;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("tablename")
|
|
|
|
|
+ @TableField("tablename")
|
|
|
|
|
+ private String tableName;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("TABLECODE")
|
|
|
|
|
+ @TableField("TABLECODE")
|
|
|
|
|
+ private String tableCode;
|
|
|
|
|
|
|
|
@JsonProperty("report_state")
|
|
@JsonProperty("report_state")
|
|
|
@TableField("report_state")
|
|
@TableField("report_state")
|
|
|
private String reportState;
|
|
private String reportState;
|
|
|
|
|
|
|
|
- @JsonProperty("inventory_id")
|
|
|
|
|
- @TableField("inventory_id")
|
|
|
|
|
- private Integer inventoryId;
|
|
|
|
|
|
|
+ @JsonProperty("Open_Date")
|
|
|
|
|
+ @TableField("Open_Date")
|
|
|
|
|
+ private String openDate;
|
|
|
|
|
|
|
|
- @JsonProperty("inventory_source_id")
|
|
|
|
|
- @TableField("inventory_source_id")
|
|
|
|
|
- private Integer inventorySourceId;
|
|
|
|
|
|
|
+ @JsonProperty("User_Address")
|
|
|
|
|
+ @TableField("User_Address")
|
|
|
|
|
+ private String userAddress;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("Prepaid_Amount")
|
|
|
|
|
+ @TableField("Prepaid_Amount")
|
|
|
|
|
+ private String prepaidAmount;
|
|
|
|
|
|
|
|
@JsonProperty("Owed_Amount")
|
|
@JsonProperty("Owed_Amount")
|
|
|
@TableField("Owed_Amount")
|
|
@TableField("Owed_Amount")
|
|
|
private String owedAmount;
|
|
private String owedAmount;
|
|
|
|
|
|
|
|
- @JsonProperty("data_code")
|
|
|
|
|
- @TableField("data_code")
|
|
|
|
|
- private String dataCode;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("entity_type")
|
|
|
|
|
- @TableField("entity_type")
|
|
|
|
|
- private String entityType;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("entity_code_add")
|
|
|
|
|
- @TableField("entity_code_add")
|
|
|
|
|
- private String entityCodeAdd;
|
|
|
|
|
-
|
|
|
|
|
@JsonProperty("One_Household_One_Meter")
|
|
@JsonProperty("One_Household_One_Meter")
|
|
|
@TableField("One_Household_One_Meter")
|
|
@TableField("One_Household_One_Meter")
|
|
|
private String oneHouseholdOneMeter;
|
|
private String oneHouseholdOneMeter;
|
|
|
|
|
|
|
|
- @JsonProperty("org_id")
|
|
|
|
|
- @TableField("org_id")
|
|
|
|
|
- private int orgId;
|
|
|
|
|
-
|
|
|
|
|
@JsonProperty("Payment_Period")
|
|
@JsonProperty("Payment_Period")
|
|
|
@TableField("Payment_Period")
|
|
@TableField("Payment_Period")
|
|
|
private String paymentPeriod;
|
|
private String paymentPeriod;
|
|
@@ -146,23 +156,15 @@ public class XcrXinyonghuaihuaBaseInfo2 extends BasePo implements Serializable {
|
|
|
@TableField("Bz")
|
|
@TableField("Bz")
|
|
|
private String bz;
|
|
private String bz;
|
|
|
|
|
|
|
|
|
|
+ @JsonProperty("Areacode")
|
|
|
|
|
+ @TableField("Areacode")
|
|
|
|
|
+ private String areacode;
|
|
|
|
|
+
|
|
|
@JsonProperty("Statistical_Date")
|
|
@JsonProperty("Statistical_Date")
|
|
|
@TableField("Statistical_Date")
|
|
@TableField("Statistical_Date")
|
|
|
private String statisticalDate;
|
|
private String statisticalDate;
|
|
|
|
|
|
|
|
- @JsonProperty("create_user")
|
|
|
|
|
- @TableField("create_user")
|
|
|
|
|
- private String createUser;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("MONTHLY_CONSUMPTION_3")
|
|
|
|
|
- @TableField("MONTHLY_CONSUMPTION_3")
|
|
|
|
|
- private Double monthlyConsumption3;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("tjsj")
|
|
|
|
|
- @TableField("tjsj")
|
|
|
|
|
- private String tjsj;
|
|
|
|
|
-
|
|
|
|
|
- @JsonProperty("status")
|
|
|
|
|
- @TableField("status")
|
|
|
|
|
- private String status;
|
|
|
|
|
|
|
+ @JsonProperty("Statistical_Base_Date")
|
|
|
|
|
+ @TableField("Statistical_Base_Date")
|
|
|
|
|
+ private String statisticalBaseDate;
|
|
|
}
|
|
}
|