| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.persistence.Column; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | private Integer supplyAttribute; |
| | | |
| | | @Schema(description = "合同状态(0-草稿 1-已生效 2-已终止 3-已过期)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '合同状态'") |
| | | private Integer contractStatus; |
| | | |
| | | @Schema(description = "合同服务属性(0-产品销售 1-无形服务)") |
| | |
| | | |
| | | @Schema(description = "出库金额") |
| | | private BigDecimal outAmount; |
| | | |
| | | @Schema(description = "质保节点ID") |
| | | private Long warrantyScheduleId; |
| | | } |