package org.jeecg.modules.tms.entity; import java.io.Serializable; import java.io.UnsupportedEncodingException; import java.util.Date; 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 org.jeecg.common.constant.CommonConstant; import org.jeecgframework.poi.excel.annotation.Excel; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import org.jeecg.common.aspect.annotation.Dict; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * @Description: 工装报废 * @Author: jeecg-boot * @Date: 2025-07-28 * @Version: V1.0 */ @Data @TableName("tms_tool_scrap") @ApiModel(value="tms_tool_scrap对象", description="工装报废") public class TmsToolScrap 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 orderStatus; /**申请人*/ @Excel(name = "申请人", width = 15) @ApiModelProperty(value = "申请人") private String applicant; /**申请时间*/ @Excel(name = "申请时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "申请时间") private Date applicationTime; /**申请说明*/ @Excel(name = "申请说明", width = 15) @ApiModelProperty(value = "申请说明") private String applicationComment; /**确认人*/ @Excel(name = "确认人", width = 15) @ApiModelProperty(value = "确认人") private String confirmer; /**确认时间*/ @Excel(name = "确认时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "确认时间") private Date confirmTime; /**确认意见*/ @Excel(name = "确认意见", width = 15) @ApiModelProperty(value = "确认意见") private String confirmComment; }