| package doumeemes.dao.ext.beanDto; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/7/19 13:55 | 
|  */ | 
| @Data | 
| public class SubmitTransferOutDetailDTO { | 
|   | 
|     @ApiModelProperty(value = "转库单明细行主键") | 
|     private Integer wTransferDetailId; | 
|   | 
|     @ApiModelProperty(value = "库存行主键") | 
|     private Integer wStockId; | 
|   | 
|     @ApiModelProperty(value = "出库数量") | 
|     private BigDecimal outNum; | 
|   | 
| } |