| | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 销售台账对象 sales_ledger |
| | |
| | | @TableField(exist = false) |
| | | private Boolean hasProductionRecord; |
| | | |
| | | @Schema(description = "项目ID") |
| | | private Long projectId; |
| | | |
| | | @Schema(description = "年份") |
| | | @Excel(name = "年份") |
| | | private Integer year; |
| | | |
| | | @Schema(description = "签单单位ID") |
| | | private Long signingUnitId; |
| | | |
| | | @Schema(description = "办事处ID") |
| | | private Long officeId; |
| | | |
| | | @Schema(description = "组负责人ID") |
| | | private Long groupLeaderId; |
| | | |
| | | @Schema(description = "是否开发票(1是 0否)") |
| | | private Integer isInvoice; |
| | | |
| | | @Schema(description = "中标价") |
| | | @Excel(name = "中标价") |
| | | private BigDecimal bidPrice; |
| | | |
| | | @Schema(description = "是否中标(1是 0否)") |
| | | private Integer isBid; |
| | | |
| | | @Schema(description = "未中标原因") |
| | | private String unbidReason; |
| | | |
| | | @Schema(description = "合同原件约定回传日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "合同原件约定回传日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate contractOriginalReturnDate; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "关联合同ID列表") |
| | | private List<Long> associatedContractIds; |
| | | } |
| | | |