| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | private String salesContractNo; |
| | | private String customerContractNo; |
| | | private String projectName; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date entryDate; |
| | | |
| | | private String entryDateStart; |
| | |
| | | |
| | | private List<StorageBlobDTO> storageBlobDTOs; |
| | | private List<StorageBlobVO> StorageBlobVOs; |
| | | |
| | | /** |
| | | * 销售类型:卖油 / 代储 |
| | | * 注意:不要复用上面的 type,那个是子表行的 SaleEnum(销售/采购/项目),落 sales_ledger_product.type |
| | | */ |
| | | @Schema(description = "销售类型:卖油/代储") |
| | | private String ledgerType; |
| | | |
| | | @Schema(description = "油库id(类型=代储时使用)") |
| | | private Long oilDepotId; |
| | | |
| | | @Schema(description = "油库名称") |
| | | private String oilDepotName; |
| | | |
| | | @Schema(description = "储罐id(类型=代储时使用)") |
| | | private Long tankId; |
| | | |
| | | @Schema(description = "储罐号") |
| | | private String tankNo; |
| | | |
| | | @Schema(description = "审批状态:待审批/审核中/通过/拒绝") |
| | | private String approvalStatus; |
| | | |
| | | /** |
| | | * 合同金额。卖油的金额由产品明细汇总产生;代储没有明细,由前端手工填写 |
| | | */ |
| | | @Schema(description = "合同金额") |
| | | private BigDecimal contractAmount; |
| | | } |