From 89ffb9fded4da0fbac9a14d4979aa7623b0a78f0 Mon Sep 17 00:00:00 2001 From: cuilei <ray_tsu1@163.com> Date: 星期一, 28 七月 2025 20:47:00 +0800 Subject: [PATCH] 工装管理基础代码 --- src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundDetail.java | 77 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 77 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundDetail.java b/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundDetail.java new file mode 100644 index 0000000..ea87983 --- /dev/null +++ b/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundDetail.java @@ -0,0 +1,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; +} -- Gitblit v1.9.3