|
|
|
@ -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;
|
|
|
|
|