| | |
| | | package com.consum.base.pojo; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | |
| | | import java.util.List; |
| | | import lombok.Data; |
| | | |
| | |
| | | * @description: 调拨单规格型号 |
| | | * @date 2023/11/6 9:28 |
| | | */ |
| | | @ApiModel(value = "调拨单规格型号") |
| | | // @ApiModel(value = "调拨单规格型号") |
| | | @Data |
| | | public class LWhTransferModelParam { |
| | | |
| | | // //规格型号编号 |
| | | @ApiModelProperty(value = "规格型号编号") |
| | | // @ApiModelProperty(value = "规格型号编号") |
| | | private Long baseGoodsModelsId; |
| | | @ApiModelProperty(value = "规格型号名字") |
| | | // @ApiModelProperty(value = "规格型号名字") |
| | | private String baseGoodsModelsName; |
| | | //价格 |
| | | @ApiModelProperty(value = "价格") |
| | | // @ApiModelProperty(value = "价格") |
| | | private Long price; |
| | | //数量 |
| | | @ApiModelProperty(value = "数量") |
| | | // @ApiModelProperty(value = "数量") |
| | | private Integer counts; |
| | | // 单据类型 1 采购2 调拨 3出库4部门分发 |
| | | @ApiModelProperty(value = "单据类型 1 采购2 调拨 3出库4部门分发") |
| | | // @ApiModelProperty(value = "单据类型 1 采购2 调拨 3出库4部门分发") |
| | | private Integer procureModelBusinessType; |
| | | // 计量单位 |
| | | @ApiModelProperty(value = "计量单位") |
| | | // @ApiModelProperty(value = "计量单位") |
| | | private String baseUnit; |
| | | @ApiModelProperty(value = "剩余数量") |
| | | // @ApiModelProperty(value = "剩余数量") |
| | | private Integer num; |
| | | |
| | | @ApiModelProperty(value = "用户规格型号") |
| | | // @ApiModelProperty(value = "用户规格型号") |
| | | private List<LWhProcureModelUserParam> procureModelUserList; |
| | | |
| | | } |