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;
|
}
|