task `1300` 5 BI 产线运行情况

yun-zuoyi
WYnneaoapc 5 years ago
parent b088b40fd1
commit 48338fec28

@ -9,6 +9,7 @@ import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.*;
import java.math.BigDecimal;
/**
* @Description:
@ -154,6 +155,14 @@ public class MesProduceSn extends BaseBean {
@ApiParam("条码类型名称")
private String snTypeName;
public MesProduceSn() {
}
public MesProduceSn(String partNo, Integer qcStatus, Double qty) {
this.partNo = partNo;
this.qcStatus = qcStatus;
this.qty = qty;
}
public double getQtyVal() {
return this.qty == null ? 0.0d : this.qty;

Loading…
Cancel
Save