| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | @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; |
| | | |
| | | @ApiModelProperty("反审核类型:1=作废,2=重新生成") |
| | | private Integer counterReviewType; |
| | | |
| | | @ApiModelProperty("反审核描述") |
| | | private String counterReviewDesc; |
| | | |
| | | /** |
| | | * 订单状态:0-进行中,1-已完成 |
| | | */ |
| | | @ApiModelProperty("订单状态:0-进行中,1-已完成") |
| | | private Integer orderStatus; |
| | | |
| | | /** |
| | | * 标签打印次数 |
| | | */ |
| | | @ApiModelProperty("标签打印次数") |
| | | private Integer labelPrintCount; |
| | | |
| | | /** |
| | | * 单据打印次数 |
| | | */ |
| | | @ApiModelProperty("单据打印次数") |
| | | private Integer documentPrintCount; |
| | | } |