| | |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | |
| | | @ApiModelProperty(value = "销售报价产品表id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | @ApiModelProperty(value = "状态 待审核 审核中 ,审核拒绝 审核通过 已发货") |
| | | @Excel(name = "状态") |
| | | private String status; |
| | | |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @TableField(value = "is_all_send") |
| | | @ApiModelProperty(value = "是否全部发货 1全部发货 0不全部发货") |
| | | private Integer isAllSend; |
| | | |
| | | @ApiModelProperty(value = "部分发货数量") |
| | | @TableField(value = "part_send_amount") |
| | | private BigDecimal partSendAmount; |
| | | |
| | | } |