| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 销售台账对象 sales_ledger |
| | |
| | | @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; |
| | | } |
| | | |