package com.ruoyi.production.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.time.LocalDateTime; import java.util.List; @Data @TableName("process_route_item") @ApiModel(value = "processRouteItem", description = "工艺路线明细") public class ProcessRouteItem { @TableId(type = IdType.AUTO) private Long id; @ApiModelProperty(value = "工艺路线ID") private Long routeId; @ApiModelProperty(value = "工序ID") private Long processId; @ApiModelProperty(value = "产品规格ID(兼容旧字段)") private Long productModelId; @ApiModelProperty(value = "多产品ID,逗号分隔") private String productModelIds; @TableField(exist = false) @ApiModelProperty(value = "多产品ID列表") private List productModelIdList; @ApiModelProperty(value = "租户ID") @TableField(fill = FieldFill.INSERT) private Long tenantId; @TableField(fill = FieldFill.INSERT) @ApiModelProperty(value = "创建时间") private LocalDateTime createTime; @ApiModelProperty(value = "更新时间") @TableField(fill = FieldFill.UPDATE) private LocalDateTime updateTime; @ApiModelProperty(value = "拖动排序") private Integer dragSort; @ApiModelProperty(value = "是否质检") private Boolean isQuality; }