cuilei
2025-05-28 62ad99ee2a374c1726730146335ed82cbcfacebb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.jeecg.modules.tms.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 新增方式出库参数封装
 */
@Data
public class OutBoundAddDto {
    //台账明细id
    @ApiModelProperty(value = "台账明细id")
    private String toolLedgerDetailId;
    //工具编码(tms_base_tool表主键id)
    @ApiModelProperty(value = "工具编码(tms_base_tool表主键id)")
    private String toolCode;
    //工具编号(唯一编号,管到把的属性)
    @ApiModelProperty(value = "工具编号(唯一编号,管到把的属性)")
    private String toolId;
    //出库方式
    @ApiModelProperty(value = "出库方式")
    private String outStorehouseType;
    //出库数量
    @ApiModelProperty(value = "出库数量")
    private BigDecimal outboundQuantity;
    //库位号
    @ApiModelProperty(value = "库位号")
    private String outboundLocation;
}