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

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

Loading…
Cancel
Save