tags/yfai-pcn-ext-v1.0
王杰 11 months ago
parent 83e887f7af
commit d6b9195768

@ -99,11 +99,11 @@ public class MesProdRuleContext implements Serializable {
//----------仅作为查询条件冗余-------------
@ApiParam(name = "进料零件号与规则是否均为空")
private Boolean inPartIsEmpty = false;
@ApiParam(name = "进料零件号是否有值")
private Boolean inPartIsEmpty;
@ApiParam(name = "进料规则是否有值")
private Boolean inPartRuleIsNotEmpty = false;
private Boolean inPartRuleIsEmpty;
@ApiParam(name = "进料零件号")
private String inPartNos;
@ -156,13 +156,13 @@ public class MesProdRuleContext implements Serializable {
return this;
}
public MesProdRuleContext inPartIsEmpty() {
this.inPartIsEmpty = true;
public MesProdRuleContext inPartIsEmpty(Boolean isEmpty) {
this.inPartIsEmpty = isEmpty;
return this;
}
public MesProdRuleContext inPartRuleIsNotEmpty() {
this.inPartRuleIsNotEmpty = true;
public MesProdRuleContext inPartRuleIsEmpty(Boolean isEmpty) {
this.inPartRuleIsEmpty = true;
return this;
}

Loading…
Cancel
Save