新火炬后端单体项目初始化代码
Lius
8 天以前 9af27ed8da6b5710025fb080f96a7dd9e80467a4
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package org.jeecg.modules.tms.entity;
 
import java.io.Serializable;
 
import com.baomidou.mybatisplus.annotation.*;
import org.jeecg.common.aspect.annotation.Dict;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.UnsupportedEncodingException;
 
/**
 * @Description: 工装入库明细
 * @Author: jeecg-boot
 * @Date:   2025-07-28
 * @Version: V1.0
 */
@Data
@TableName("tms_tool_inbound_detail")
@ApiModel(value="tms_tool_inbound_detail对象", description="工装入库明细")
public class TmsToolInboundDetail implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键")
    private String id;
    /**创建人*/
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**创建时间*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**入库单*/
    @ApiModelProperty(value = "入库单")
    private String orderId;
    /**工装ID*/
    @Excel(name = "工装ID", width = 15)
    @ApiModelProperty(value = "工装ID")
    private String toolId;
    /**入库数量*/
    @Excel(name = "入库数量", width = 15)
    @ApiModelProperty(value = "入库数量")
    private Integer receiveNumber;
 
    /**工装名称*/
    @Excel(name = "工装名称", width = 15)
    @ApiModelProperty(value = "工装名称")
    @TableField(exist = false)
    private String toolName;
    /**工装编码*/
    @Excel(name = "工装编码", width = 15)
    @ApiModelProperty(value = "工装编码")
    @TableField(exist = false)
    private String toolCode;
    /**工装分类*/
    @Excel(name = "工装分类", width = 15)
    @ApiModelProperty(value = "工装分类")
    @TableField(exist = false)
    private String toolCategory;
    /**型号*/
    @Excel(name = "型号", width = 15)
    @ApiModelProperty(value = "型号")
    @TableField(exist = false)
    private String toolModel;
    /**规格*/
    @Excel(name = "规格", width = 15)
    @ApiModelProperty(value = "规格")
    @TableField(exist = false)
    private String toolSpecification;
}