| package doumeemes.dao.ext.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2022/06/27 13:58 | 
|  */ | 
| @Data | 
| @ApiModel("工艺卡管理查询参数") | 
| public class QueryRouteCardExtDTO { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1") | 
|     private Integer deleted; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "公司级组织编码(关联department表组织)", example = "1") | 
|     private Integer departId; | 
|   | 
|     @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1") | 
|     private Integer rootDepartId; | 
|   | 
|     @ApiModelProperty(value = "BOM历史版本编码(bom_version表)", example = "1") | 
|     private Integer bomId; | 
|   | 
|     @ApiModelProperty(value = "工艺工序关联编码(关联route_procedure表)", example = "1") | 
|     private Integer routeProcedureId; | 
|   | 
|     @ApiModelProperty(value = "注意事项") | 
|     private String tips; | 
|   | 
|     @ApiModelProperty(value = "附件地址") | 
|     private String fileurl; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表主键", example = "1") | 
|     private Integer rmodelId; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表是否已删除 0未删除 1已删除", example = "1") | 
|     private Byte rmodelDeleted; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表创建人编码", example = "1") | 
|     private Integer rmodelCreateUser; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date rmodelCreateTime; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表更新人编码", example = "1") | 
|     private Integer rmodelUpdateUser; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date rmodelUpdateTime; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表备注") | 
|     private String rmodelRemark; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表公司级组织编码(关联department表组织)", example = "1") | 
|     private Integer rmodelDepartId; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表工艺路线编码", example = "1") | 
|     private Integer rmodelRouteId; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表工序编码", example = "1") | 
|     private Integer rmodelProcedureId; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表加工顺序", example = "1") | 
|     private Integer rmodelSortnum; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表工序数量", example = "1") | 
|     private Integer rmodelProcedureNum; | 
|   | 
|     @ApiModelProperty(value = "工艺路线与工序关联表,工艺路线行表状态0.无效 1.有效", example = "1") | 
|     private Byte rmodelStatus; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表主键", example = "1") | 
|     private Integer bmodelId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表是否已删除 0未删除 1已删除", example = "1") | 
|     private Byte bmodelDeleted; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表创建人编码", example = "1") | 
|     private Integer bmodelCreateUser; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date bmodelCreateTime; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表更新人编码", example = "1") | 
|     private Integer bmodelUpdateUser; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date bmodelUpdateTime; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表备注") | 
|     private String bmodelRemark; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表主组织编码(关联department表根组织)", example = "1") | 
|     private Integer bmodelRootDepartId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表公司级组织编码(关联department表)", example = "1") | 
|     private Integer bmodelDepartId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表物料ID(关联material表)", example = "1") | 
|     private Integer bmodelMaterialId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表版本号") | 
|     private String bmodelVersion; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表单位编码(关联unit_distribute表)", example = "1") | 
|     private Integer bmodelUnitId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表工艺路线编码(关联route表)", example = "1") | 
|     private Integer bmodelRouteId; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表状态0.无效 1.有效(启用后不可删除)", example = "1") | 
|     private Byte bmodelStatus; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表最后启用时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date bmodelValidTime; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表最后失效时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date bmodelInvalidTime; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表图纸编号") | 
|     private String bmodelPapercode; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表模具编号") | 
|     private String bmodelMjcode; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表喂料体系") | 
|     private String bmodelWltx; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表收缩比") | 
|     private String bmodelRate; | 
|   | 
|     @ApiModelProperty(value = "物料清单版本历史信息表BOM编码", example = "1") | 
|     private Integer bmodelBomId; | 
|   | 
|   | 
|     private List<Integer> departIds; | 
|     @ApiModelProperty(value = "工装id") | 
|     private String workOrderId; | 
|   | 
|   | 
|     @ApiModelProperty(value = "工厂名称") | 
|     private String factoryName; | 
|   | 
|     @ApiModelProperty(value = "工厂id") | 
|     private String factoryId; | 
|   | 
| } |