cuijian
2025-06-16 b6e1d497fd8bcb8bd79450e661e86b3f722033af
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.jeecg.modules.tms.entity.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.math.BigDecimal;
 
/***
 * 工具出库申请-选择出库工具列表展示对象封装
 */
@Data
public class SelectOutboundToolVo {
    /**主键id*/
    @ApiModelProperty(value = "主键id")
    private String id;
    /**台账明细id*/
    @ApiModelProperty(value = "台账明细id")
    private String toolLedgerDetailId;
    /**工具编码(关联字段)*/
    @ApiModelProperty(value = "工具编码(关联字段,存tms_base_tools表主键id)")
    private String toolCode;
    /**工具编码*/
    @ApiModelProperty(value = "工具编码(tms_base_tools表tool_code字段)")
    private String toolNum;
    /**工具编号*/
    @ApiModelProperty(value = "工具编号")
    private String toolId;
    /**工具中文名称*/
    @ApiModelProperty(value = "工具中文名称")
    private String toolName;
    /**数量*/
    @ApiModelProperty(value = "数量")
    private BigDecimal quantity;
    /**库区/库号*/
    @ApiModelProperty(value = "库区/库号")
    private String warehouseId;
    /**仓库名称*/
    @ApiModelProperty(value = "仓库名称")
    private String warehouseName;
    /**库位号*/
    @ApiModelProperty(value = "库位号")
    private String positionCode;
 
    @ApiModelProperty(value = "精度等级")
    private String accuracyClass;
}