package org.jeecg.modules.tms.vo; import java.util.List; import org.jeecg.modules.tms.entity.TmsToolScrap; import org.jeecg.modules.tms.entity.TmsToolScrapDetail; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecgframework.poi.excel.annotation.ExcelEntity; import org.jeecgframework.poi.excel.annotation.ExcelCollection; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; 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 @ApiModel(value="tms_tool_scrapPage对象", description="工装报废") public class TmsToolScrapPage { /**主键*/ @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 = "删除标记") private Integer delFlag; /**报废单状态*/ @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; @ExcelCollection(name="工装报废明细") @ApiModelProperty(value = "工装报废明细") private List tmsToolScrapDetailList; }