Fix Bug #2357,2358

yun-zuoyi
wynne1005 5 years ago
parent 8d29e72322
commit 25382f0265

@ -165,4 +165,8 @@ public class MesScatterPartProdCfg extends BaseBean implements Serializable {
@Column(name = "MULTIMEDIA_PLUG_QTY") @Column(name = "MULTIMEDIA_PLUG_QTY")
@ApiParam("多媒体插头数量") @ApiParam("多媒体插头数量")
private Double multimediaPlusQty; private Double multimediaPlusQty;
@Column(name = "QUALIFIED_COUNT")
@ApiParam("应收合格数")
private Double qualifiedCount;
} }

@ -88,6 +88,9 @@ public class TorqueCollectionModel implements Serializable {
@ApiParam("确认扫描次数") @ApiParam("确认扫描次数")
private Integer checkScanCount; private Integer checkScanCount;
@ApiParam("实际确认扫描次数")
private Integer actualCheckScanCount;
@ApiParam("组合码发送顺序") @ApiParam("组合码发送顺序")
private Integer sendSeq; private Integer sendSeq;
@ -103,8 +106,31 @@ public class TorqueCollectionModel implements Serializable {
@ApiParam("是否黄枪") @ApiParam("是否黄枪")
private Integer isYellowGun; private Integer isYellowGun;
@ApiParam("应收合格数")
private Double qualifiedCount;
@ApiParam("实际合格数")
private Double actualQualifiedCount;
@ApiParam("工步信息行颜色")
private String color;
@ApiParam("扭矩显示信息")
private String torqueInfo;
@ApiParam("扭矩颜色")
private String torqueColor;
@ApiParam("绑定关键件信息")
private String bindPartKeyInfo;
@ApiParam("绑定关键件颜色")
private String bindPartKeyColor;
@ApiParam("是否大枪")
private Integer isPf;
/** /**
* *
*
* @param vinCode * @param vinCode
* @param prodCfgTypeCode * @param prodCfgTypeCode
* @param gradeCode * @param gradeCode
@ -120,7 +146,7 @@ public class TorqueCollectionModel implements Serializable {
*/ */
public TorqueCollectionModel(String vinCode, String prodCfgTypeCode, String gradeCode, String colorCode, String partNo, public TorqueCollectionModel(String vinCode, String prodCfgTypeCode, String gradeCode, String colorCode, String partNo,
String partName, Integer torqueNo, Integer checkScanCount, Integer sendSeq, String partName, Integer torqueNo, Integer checkScanCount, Integer sendSeq,
Integer yellowGunRule, Integer isEndSeq, String groupCode) { Integer yellowGunRule, Integer isEndSeq, String groupCode, Integer isPf, Double qualifiedCount) {
this.vinCode = vinCode; this.vinCode = vinCode;
this.prodCfgTypeCode = prodCfgTypeCode; this.prodCfgTypeCode = prodCfgTypeCode;
this.gradeCode = gradeCode; this.gradeCode = gradeCode;
@ -133,10 +159,13 @@ public class TorqueCollectionModel implements Serializable {
this.yellowGunRule = yellowGunRule; this.yellowGunRule = yellowGunRule;
this.isEndSeq = isEndSeq; this.isEndSeq = isEndSeq;
this.groupCode = groupCode; this.groupCode = groupCode;
this.isPf = isPf;
this.qualifiedCount = qualifiedCount;
} }
/** /**
* *
*
* @param vinCode * @param vinCode
* @param prodCfgTypeCode * @param prodCfgTypeCode
* @param gradeCode * @param gradeCode

Loading…
Cancel
Save