| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 销售台账对象 sales_ledger |
| | |
| | | @ApiModelProperty("发货状态:1-未发货,2-审批中,3-审批不通过,4-审批通过,5-已发货") |
| | | private Integer deliveryStatus; |
| | | |
| | | /** |
| | | * 入库状态:0-未入库,1-部分入库,2-已入库 |
| | | */ |
| | | @ApiModelProperty("入库状态:0-未入库,1-部分入库,2-已入库") |
| | | private Integer stockStatus; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "交货天数差") |
| | | private Integer deliveryDaysDiff; |
| | |
| | | @TableField(exist = false) |
| | | //是否可编辑 |
| | | private Boolean isEdit; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("订单产品总数量") |
| | | private BigDecimal productTotalQuantity = BigDecimal.ZERO; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("订单产品总面积(㎡)") |
| | | private BigDecimal productTotalArea = BigDecimal.ZERO; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("命中的销售产品列表") |
| | | private List<SalesLedgerProduct> matchedProducts; |
| | | } |
| | | |