| | |
| | | private Long id; |
| | | |
| | | /** |
| | | * 审批实例ID |
| | | */ |
| | | private Long approvalInstanceId; |
| | | |
| | | /** |
| | | * 采购合同号 |
| | | */ |
| | | @Excel(name = "采购合同号") |
| | |
| | | /** |
| | | * 录入日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | | /** |
| | | * 申请提交时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date applicationSubmitTime; |
| | | |
| | | /** |
| | | * 签订日期 |
| | |
| | | @Excel(name = "合同金额") |
| | | private BigDecimal contractAmount = BigDecimal.ZERO; |
| | | |
| | | /** |
| | | * 实际合同金额(扣减退货后) |
| | | */ |
| | | @Schema(description = "实际合同金额") |
| | | private BigDecimal netContractAmount = BigDecimal.ZERO; |
| | | |
| | | |
| | | @Schema(description = "文件类型 取 4") |
| | | @TableField(exist = false) |
| | |
| | | |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | @Schema(description = "采购类别:客存、代储、采购入库、采购直销") |
| | | private String purchaseCategory; |
| | | |
| | | @Schema(description = "采购油品:汽#92、汽#95、柴#0、柴#-35") |
| | | private String purchaseOilProduct; |
| | | |
| | | @Schema(description = "物流方式:厂家配送、委外物流、客户自提") |
| | | private String logisticsMethod; |
| | | |
| | | @Schema(description = "提货方式:暂不提货、提货") |
| | | private String pickupMethod; |
| | | @Schema(description = "采购油库id") |
| | | private Long oilDepotId; |
| | | @Schema(description = "采购油库名称") |
| | | private String oilDepotName; |
| | | @Schema(description = "客户名称") |
| | | private String customerName; |
| | | @Schema(description = "最佳到站日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date bestArrivalDate; |
| | | @Schema(description = "采购数量(吨)") |
| | | private Integer purchaseQuantity; |
| | | @Schema(description = "采购申请订单状态") |
| | | private String purchaseOrderStatus; |
| | | @Schema(description = "审批状态") |
| | | private Integer approvalStatus; |
| | | @Schema(description = "模板名称") |