|
|
|
@ -142,6 +142,9 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
@ApiParam("防错码")
|
|
|
|
|
private String pokeYokeFix;
|
|
|
|
|
|
|
|
|
|
@ApiParam("防错码长度")
|
|
|
|
|
private String pokeYokeLength;
|
|
|
|
|
|
|
|
|
|
private Map<String, PsetModel> psets = new LinkedHashMap<>();
|
|
|
|
|
|
|
|
|
|
public TorqueCollectionModel(String vinCode) {
|
|
|
|
@ -207,7 +210,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, String pokeYokeFix) {
|
|
|
|
|
Integer torqueNo, Integer sendSeq, Integer checkScanCount, String pokeYokeFix, String pokeYokeLength) {
|
|
|
|
|
this.vinCode = vinCode;
|
|
|
|
|
this.prodCfgTypeCode = prodCfgTypeCode;
|
|
|
|
|
this.gradeCode = gradeCode;
|
|
|
|
@ -226,6 +229,7 @@ public class TorqueCollectionModel implements Serializable {
|
|
|
|
|
this.sendSeq = sendSeq;
|
|
|
|
|
this.checkScanCount = checkScanCount;
|
|
|
|
|
this.pokeYokeFix = pokeYokeFix;
|
|
|
|
|
this.pokeYokeLength = pokeYokeLength;
|
|
|
|
|
assemblePsets();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|