| | |
| | | package com.ruoyi.sales.pojo; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 销售台账对象 sales_ledger |
| | |
| | | private LocalDate deliveryDate; |
| | | |
| | | /** |
| | | * 发货状态:1-未发货,2-审批中,3-审批不通过,4-已发货 |
| | | * 发货状态:1-未发货,2-审批中,3-审批不通过,4-审批通过,5-已发货,6-部分发货(如扫码分批发货未满单) |
| | | */ |
| | | @ApiModelProperty("发货状态:1-未发货,2-审批中,3-审批不通过,4-已发货") |
| | | @ApiModelProperty("发货状态:1-未发货,2-审批中,3-审批不通过,4-审批通过,5-已发货,6-部分发货") |
| | | private Integer deliveryStatus; |
| | | |
| | | /** |
| | | * 入库状态:0-未入库,1-部分入库,2-已入库 |
| | | */ |
| | | @ApiModelProperty("入库状态:0-未入库,1-部分入库,2-已入库") |
| | | private Integer stockStatus; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "交货天数差") |
| | |
| | | @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; |
| | | |
| | | /** |
| | | * 审核状态:0-未审核,1-已审核,2-反审 |
| | | */ |
| | | @ApiModelProperty("审核状态") |
| | | private Integer reviewStatus; |
| | | |
| | | @ApiModelProperty("反审时间") |
| | | private LocalDateTime counterReviewTime; |
| | | |
| | | @ApiModelProperty("反审人") |
| | | private String counterReviewPerson; |
| | | |
| | | @ApiModelProperty("反审人Id") |
| | | private Long counterReviewPersonId; |
| | | } |