package org.jeecg.modules.dncFlow.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @Description: nc程序与电子图版签派 * @Author: jeecg-boot * @Date: 2025-03-19 * @Version: V1.0 */ @Data @TableName("nc_dispatch_file") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="nc_dispatch_file对象", description="nc程序与电子图版签派") public class DispatchFile implements Serializable { private static final long serialVersionUID = 1L; /**主键*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键") private String id; /**产品id*/ @Excel(name = "产品id", width = 15) @ApiModelProperty(value = "产品id") private String productId; /**部件id*/ @Excel(name = "部件id", width = 15) @ApiModelProperty(value = "部件id") private String componentId; /**零件id*/ @Excel(name = "零件id", width = 15) @ApiModelProperty(value = "零件id") private String partsId; /**工艺规程id*/ @Excel(name = "工艺规程id", width = 15) @ApiModelProperty(value = "工艺规程id") private String psvId; /**工序id*/ @Excel(name = "工序id", width = 15) @ApiModelProperty(value = "工序id") private String processId; /**工步id*/ @Excel(name = "工步id", width = 15) @ApiModelProperty(value = "工步id") private String stepId; /**所属ID*/ @Excel(name = "所属ID", width = 15) @ApiModelProperty(value = "所属ID") private String attributionId; /**所属type*/ @Excel(name = "所属type", width = 15) @ApiModelProperty(value = "所属type") private String attributionType; /**文件类型*/ @Excel(name = "文件类型", width = 15) @ApiModelProperty(value = "文件类型") private String docClassCode; /**设备类id*/ @Excel(name = "设备类id", width = 15) @ApiModelProperty(value = "设备类id") private String deviceTypeId; /**文档id*/ @Excel(name = "文档id", width = 15) @ApiModelProperty(value = "文档id") private String docId; /**文件表id*/ @Excel(name = "文件表id", width = 15) @ApiModelProperty(value = "文件表id") private String fileId; /**当前节点*/ @Excel(name = "当前节点", width = 15) @ApiModelProperty(value = "当前节点") private String currentNode; /**节点状态*/ @Excel(name = "节点状态", width = 15) @ApiModelProperty(value = "节点状态") private String nodeState; /**创建人*/ @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 updateBy; /**更新日期*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新日期") private Date updateTime; /**申请理由*/ @ApiModelProperty(value = "申请理由") private transient String organization; }