| | |
| | | import com.ruoyi.sales.pojo.CommonFile; |
| | | import com.ruoyi.sales.pojo.ShippingInfo; |
| | | import com.ruoyi.sales.pojo.ShippingProductDetail; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @TableField(exist = false) |
| | | private List<CommonFile> commonFileList; |
| | | |
| | | @Schema(description = "退货单号集合") |
| | | @TableField(exist = false) |
| | | private List<String> returnNoList; |
| | | |
| | | @Schema(description = "退货单号字符串") |
| | | @TableField(exist = false) |
| | | private String returnNos; |
| | | |
| | | private String specificationModel; |
| | | |
| | | private String productName; |
| | |
| | | private List<Long> batchNo; |
| | | private List<ShippingProductDetail> batchNoDetailList; |
| | | |
| | | //关联的出库单号 |
| | | private String outboundBatches; |
| | | |
| | | //发货数量 |
| | | private BigDecimal totalQuantity; |
| | | |
| | | private Long templateId; |
| | | |
| | | private String templateName; |
| | | |
| | | |
| | | } |