| | |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fzzy.conf.NumberSerializer; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | * 接口表-合同信息 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class SH2023Api1201 implements Serializable { |
| | | |
| | | /** |
| | |
| | | @PropertyDef(label = "实际完成时间") |
| | | private Date sswcsj; |
| | | |
| | | @JSONField(name = "Lysl") |
| | | @PropertyDef(label = "履约数量") |
| | | private double lysl; |
| | | |
| | | @JSONField(name = "Lyl") |
| | | @PropertyDef(label = "履约率") |
| | | private double lyl; |
| | | private double lyl = 100; |
| | | |
| | | @JSONField(name = "Jsjg") |
| | | @PropertyDef(label = "结算价格") |
| | | private double jsjg; |
| | | |
| | | @JSONField(name = "Jszje", serializeUsing = NumberSerializer.class) |
| | | @PropertyDef(label = "结算总金额") |
| | | private BigDecimal jszje; |
| | | |
| | |
| | | @PropertyDef(label = "更新时间") |
| | | private Date zhgxsj; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "业务id") |
| | | private String bizId; |
| | | |
| | | @PropertyDef(label = "库区代码") |
| | | private String kqdm; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间") |
| | | private Date syncTime; |
| | | |
| | | @PropertyDef(label = "合同是否中止") |
| | | private String htsfzz; |
| | | private String htsfzz = "0"; |
| | | |
| | | @PropertyDef(label = "标记位") |
| | | private String bjw; |