package org.jeecg.modules.tms.entity;
|
|
import java.io.Serializable;
|
import java.io.UnsupportedEncodingException;
|
import java.util.Date;
|
import java.math.BigDecimal;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import lombok.Data;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.jeecg.common.constant.CommonConstant;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @Description: 工装信息
|
* @Author: jeecg-boot
|
* @Date: 2025-07-28
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("tms_tools")
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="tms_tools对象", description="工装信息")
|
public class TmsTools 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")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
/**删除标记*/
|
@Excel(name = "删除标记", width = 15)
|
@ApiModelProperty(value = "删除标记")
|
@TableLogic
|
private Integer delFlag = CommonConstant.DEL_FLAG_0;
|
/**工装名称*/
|
@Excel(name = "工装名称", width = 15)
|
@ApiModelProperty(value = "工装名称")
|
private String toolName;
|
/**工装编码*/
|
@Excel(name = "工装编码", width = 15)
|
@ApiModelProperty(value = "工装编码")
|
private String toolCode;
|
/**工装分类*/
|
@Excel(name = "工装分类", width = 15)
|
@ApiModelProperty(value = "工装分类")
|
private String toolCategory;
|
/**型号*/
|
@Excel(name = "型号", width = 15)
|
@ApiModelProperty(value = "型号")
|
private String toolModel;
|
/**规格*/
|
@Excel(name = "规格", width = 15)
|
@ApiModelProperty(value = "规格")
|
private String toolSpecification;
|
/**单位*/
|
@Excel(name = "单位", width = 15)
|
@ApiModelProperty(value = "单位")
|
private String toolUnit;
|
/**存放位置*/
|
@Excel(name = "存放位置", width = 15)
|
@ApiModelProperty(value = "存放位置")
|
private String storeLocation;
|
/**供应商*/
|
@Excel(name = "供应商", width = 15)
|
@ApiModelProperty(value = "供应商")
|
private String supplierId;
|
/**库存预警值*/
|
@Excel(name = "库存预警值", width = 15)
|
@ApiModelProperty(value = "库存预警值")
|
private Integer inventoryWarning;
|
/**备注*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
}
|