实体属性修改

yun-zuoyi
crish 6 years ago
parent 8678d9961e
commit 5f13bf7f1d

@ -31,9 +31,9 @@ public class MesPlanOrder extends BaseBean {
@ApiParam("生产计划单号")
private String orderNo;
@Column(name="ORDER_TYPE")
@Column(name="PO_TYPE")
@ApiParam("计划类型")
private Integer orderType;
private Integer planType;
@Column(name="PROD_CFG_CODE")
@ApiParam("产品配置代码")
@ -96,6 +96,6 @@ public class MesPlanOrder extends BaseBean {
}
public int getOrderTypeVal() {
return this.orderType == null ? 0 : this.orderType;
return this.planType == null ? 0 : this.planType;
}
}

Loading…
Cancel
Save