| | |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '合同服务属性'") |
| | | private Integer contractAttribute; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "签署日期") |
| | | @Column(columnDefinition = "date comment '签署日期'") |
| | | private Date signDate; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "签订地点") |
| | | @Column(columnDefinition = "VARCHAR(255) comment '签订地点'") |
| | | private String signPlace; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "生效日期") |
| | | @Column(columnDefinition = "date comment '生效日期'") |
| | | private Date effectiveDate; |
| | |
| | | @Column(columnDefinition = "int default 0 comment '交付周期'") |
| | | private Integer deliveryCycle; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Schema(description = "到期日期") |
| | | @Column(columnDefinition = "date comment '到期日期'") |
| | | private Date expirationDate; |
| | |
| | | @Column(columnDefinition = "decimal(10,2) comment '已开票金额'") |
| | | private BigDecimal billingAmout; |
| | | |
| | | @Schema(description = "下一阶段") |
| | | @Column(columnDefinition = "VARCHAR(128) comment '下一阶段'") |
| | | private String nextScheduleName; |
| | | |
| | | @Schema(description = "模版ID") |
| | | @Column(columnDefinition = "bigint comment '模版ID'") |
| | | private Long templateId; |
| | | |
| | | @Schema(description = "销售模式") |
| | | @Column(columnDefinition = "VARCHAR(16) comment '销售模式 1 按单生产 2 先产后销 3 代储代销'") |
| | | private String salesModel; |
| | | |
| | | @Schema(description = "已付款金额") |
| | | @Column(columnDefinition = "decimal(10,2) comment '已付款金额'") |
| | | private BigDecimal paidAmount; |
| | | |
| | | /** |
| | | * 临时字段 - 用于接收审批人名称等关联查询结果 |
| | | */ |