parent
9e048089fb
commit
2ec97a38d6
18 changed files with 697 additions and 342 deletions
@ -0,0 +1,15 @@ |
||||
package org.springblade.desk.quality.pojo.request; |
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode() |
||||
public class ReviewSheetInitSearch { |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
||||
@ -0,0 +1,35 @@ |
||||
package org.springblade.desk.quality.pojo.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode() |
||||
public class InspectionTaskSubPartVO { |
||||
|
||||
@Schema(description = "子件号") |
||||
private String subPartCode; |
||||
@Schema(description = "子件名称") |
||||
private String subPartName; |
||||
@Schema(description = "数量") |
||||
private String qty; |
||||
@Schema(description = "产品型号") |
||||
private String prodTypeName; |
||||
@Schema(description = "子件类型") |
||||
private String subPartTypeName; |
||||
@Schema(description = "镀种") |
||||
private String plateName; |
||||
@Schema(description = "材料") |
||||
private String material; |
||||
@Schema(description = "面积") |
||||
private String area; |
||||
@Schema(description = "总面积") |
||||
private String totalArea; |
||||
@Schema(description = "镀层代码") |
||||
private String matCode; |
||||
@Schema(description = "镀层厚度") |
||||
private String thickness; |
||||
@Schema(description = "备注") |
||||
private String remark; |
||||
} |
||||
@ -0,0 +1,39 @@ |
||||
package org.springblade.desk.quality.pojo.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import org.springblade.desk.basic.pojo.vo.BaseEntityVO; |
||||
import org.springblade.desk.quality.pojo.entity.ReviewSheet; |
||||
|
||||
public class ReviewSheetInitListVO extends ReviewSheet { |
||||
|
||||
@Schema(description = "BaseEntityVO") |
||||
private BaseEntityVO base; |
||||
@Schema(description = "单据编号") |
||||
private String docCode; |
||||
@Schema(description = "车间订单号") |
||||
private String woCode; |
||||
@Schema(description = "产品编号") |
||||
private String prodCode; |
||||
@Schema(description = "产品名称") |
||||
private String prodName; |
||||
@Schema(description = "产品型号名称") |
||||
private String prodTypeName; |
||||
@Schema(description = "生产标识") |
||||
private String prodIdent; |
||||
@Schema(description = "批次号") |
||||
private String batchNo; |
||||
@Schema(description = "流程卡号") |
||||
private String cardNo; |
||||
@Schema(description = "生产数量") |
||||
private Double poQty; |
||||
@Schema(description = "不合格数量") |
||||
private Short unqualifiedQty; |
||||
@Schema(description = "[生产处置单]模式 名称") |
||||
private String reviewOrderModeName; |
||||
@Schema(description = "打回[用户]真名") |
||||
private String backUserRealName; |
||||
@Schema(description = "审理状态 名称") |
||||
private String reviewStatusName; |
||||
@Schema(description = "审理[用户]真名") |
||||
private String reviewUserRealName; |
||||
} |
||||
Loading…
Reference in new issue