|
|
|
@ -138,6 +138,9 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
@ApiParam("psets总数")
|
|
|
|
|
private Integer psetSum;
|
|
|
|
|
|
|
|
|
|
@ApiParam("防错码")
|
|
|
|
|
private String pokeYokeFix;
|
|
|
|
|
|
|
|
|
|
private Map<String, PsetModel> psets = new LinkedHashMap<>();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -158,7 +161,8 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public TorqueCollectionModel(String vinCode, String prodCfgTypeCode, String gradeCode, String colorCode, String partNo,
|
|
|
|
|
String partName, Integer torqueNo, Integer checkScanCount, Integer sendSeq,
|
|
|
|
|
Integer yellowGunRule, Integer isEndSeq, String groupCode, Integer isPf, Double qualifiedCount) {
|
|
|
|
|
Integer yellowGunRule, Integer isEndSeq, String groupCode, Integer isPf, Double qualifiedCount,
|
|
|
|
|
String pokeYokeFix) {
|
|
|
|
|
this.vinCode = vinCode;
|
|
|
|
|
this.prodCfgTypeCode = prodCfgTypeCode;
|
|
|
|
|
this.gradeCode = gradeCode;
|
|
|
|
@ -173,6 +177,7 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
this.groupCode = groupCode;
|
|
|
|
|
this.isPf = isPf;
|
|
|
|
|
this.qualifiedCount = qualifiedCount;
|
|
|
|
|
this.pokeYokeFix = pokeYokeFix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -197,7 +202,7 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
public TorqueCollectionModel(String vinCode, String prodCfgTypeCode, String gradeCode,
|
|
|
|
|
String colorCode, String partNo, String partName, Integer pset1, Integer pset2,
|
|
|
|
|
Integer pset3, Integer pset4, Integer pset5, Integer pset6, Integer pset7, Integer pset8,
|
|
|
|
|
Integer torqueNo, Integer sendSeq, Integer checkScanCount) {
|
|
|
|
|
Integer torqueNo, Integer sendSeq, Integer checkScanCount, String pokeYokeFix) {
|
|
|
|
|
this.vinCode = vinCode;
|
|
|
|
|
this.prodCfgTypeCode = prodCfgTypeCode;
|
|
|
|
|
this.gradeCode = gradeCode;
|
|
|
|
@ -215,6 +220,7 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
this.torqueNo = torqueNo;
|
|
|
|
|
this.sendSeq = sendSeq;
|
|
|
|
|
this.checkScanCount = checkScanCount;
|
|
|
|
|
this.pokeYokeFix = pokeYokeFix;
|
|
|
|
|
assemblePsets();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|