package com.zksy.data.domain.po; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; /** * 内资补充信息 * @TableName xcr_domestic_capital_supplement */ @TableName(value ="xcr_domestic_capital_supplement") @Data public class XcrDomesticCapitalSupplement extends BasePo implements Serializable { @TableField("POSTALCODE") @JsonProperty("POSTALCODE") private String POSTALCODE; @TableField("GOVPORP") @JsonProperty("GOVPORP") private BigDecimal GOVPORP; @TableField("YIEDISTRICT") @JsonProperty("YIEDISTRICT") private String YIEDISTRICT; @TableField("EMAIL") @JsonProperty("EMAIL") private String EMAIL; @TableField("PRIPID") @JsonProperty("PRIPID") private String PRIPID; @TableField("LOCALADM") @JsonProperty("LOCALADM") private String LOCALADM; @TableField("GOVNUM") @JsonProperty("GOVNUM") private Integer GOVNUM; @TableField("TEL") @JsonProperty("TEL") private String TEL; @TableField("FARMERNUM") @JsonProperty("FARMERNUM") private Integer FARMERNUM; @TableField("ETPS_ID") @JsonProperty("ETPS_ID") private String ETPS_ID; @TableField("FARMERPORP") @JsonProperty("FARMERPORP") private BigDecimal FARMERPORP; @TableField("S_EXT_DATATIME") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss") @JsonProperty("S_EXT_DATATIME") private Date S_EXT_DATATIME; @TableField("PROLOC") @JsonProperty("PROLOC") private String PROLOC; @TableField("CALCULATIONMETHOD") @JsonProperty("CALCULATIONMETHOD") private String CALCULATIONMETHOD; }