|
|
|
@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Version;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -66,6 +67,11 @@ public class MesCellFeed extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("供应商代码")
|
|
|
|
|
private String supplierCode;
|
|
|
|
|
|
|
|
|
|
// @Version
|
|
|
|
|
// @Column(name = "LOCK_VERSION")
|
|
|
|
|
// @ApiParam(value = "乐观锁", example = "1")
|
|
|
|
|
// public Integer lockVersion;
|
|
|
|
|
|
|
|
|
|
public double getRawQtyVal() {
|
|
|
|
|
return this.rawQty == null ? 0l : this.rawQty;
|
|
|
|
|
}
|
|
|
|
|