|
@@ -1,9 +1,13 @@
|
|
package com.steerinfo.ems.emsprodplanmonth.model;
|
|
package com.steerinfo.ems.emsprodplanmonth.model;
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.steerinfo.framework.model.IBasePO;
|
|
import com.steerinfo.framework.model.IBasePO;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
@ApiModel(value="月计划编制表")
|
|
@ApiModel(value="月计划编制表")
|
|
@@ -37,13 +41,13 @@ public class EmsProdplanMonth implements IBasePO<String> {
|
|
* 目标计划量(月)(WEIGHT_MONTH,DECIMAL,0)
|
|
* 目标计划量(月)(WEIGHT_MONTH,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="目标计划量(月)",required=false)
|
|
@ApiModelProperty(value="目标计划量(月)",required=false)
|
|
- private Long weightMonth;
|
|
|
|
|
|
+ private BigDecimal weightMonth;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 目标计划量(日)(WEIGHT_DAY,DECIMAL,0)
|
|
* 目标计划量(日)(WEIGHT_DAY,DECIMAL,0)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="目标计划量(日)",required=false)
|
|
@ApiModelProperty(value="目标计划量(日)",required=false)
|
|
- private Long weightDay;
|
|
|
|
|
|
+ private BigDecimal weightDay;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 单位名称(UNIT,VARCHAR,10)
|
|
* 单位名称(UNIT,VARCHAR,10)
|
|
@@ -91,9 +95,9 @@ public class EmsProdplanMonth implements IBasePO<String> {
|
|
private String state;
|
|
private String state;
|
|
|
|
|
|
@ApiModelProperty(value = "已下发量",required = false)
|
|
@ApiModelProperty(value = "已下发量",required = false)
|
|
- private Long yxf_weight;
|
|
|
|
|
|
+ private BigDecimal yxf_weight;
|
|
@ApiModelProperty(value = "可下发量",required = false)
|
|
@ApiModelProperty(value = "可下发量",required = false)
|
|
- private Long kxf_weight;
|
|
|
|
|
|
+ private BigDecimal kxf_weight;
|
|
@ApiModelProperty(value = "序号",required = false)
|
|
@ApiModelProperty(value = "序号",required = false)
|
|
private Long sqno;
|
|
private Long sqno;
|
|
|
|
|
|
@@ -105,23 +109,22 @@ public class EmsProdplanMonth implements IBasePO<String> {
|
|
this.sqno = sqno;
|
|
this.sqno = sqno;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getYxf_weight() {
|
|
|
|
|
|
+ public BigDecimal getYxf_weight() {
|
|
return yxf_weight;
|
|
return yxf_weight;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setYxf_weight(Long yxf_weight) {
|
|
|
|
|
|
+ public void setYxf_weight(BigDecimal yxf_weight) {
|
|
this.yxf_weight = yxf_weight;
|
|
this.yxf_weight = yxf_weight;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getKxf_weight() {
|
|
|
|
|
|
+ public BigDecimal getKxf_weight() {
|
|
return kxf_weight;
|
|
return kxf_weight;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setKxf_weight(Long kxf_weight) {
|
|
|
|
|
|
+ public void setKxf_weight(BigDecimal kxf_weight) {
|
|
this.kxf_weight = kxf_weight;
|
|
this.kxf_weight = kxf_weight;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
public String getState() {
|
|
public String getState() {
|
|
return state;
|
|
return state;
|
|
}
|
|
}
|
|
@@ -193,19 +196,19 @@ public class EmsProdplanMonth implements IBasePO<String> {
|
|
this.may = may;
|
|
this.may = may;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getWeightMonth() {
|
|
|
|
|
|
+ public BigDecimal getWeightMonth() {
|
|
return weightMonth;
|
|
return weightMonth;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setWeightMonth(Long weightMonth) {
|
|
|
|
|
|
+ public void setWeightMonth(BigDecimal weightMonth) {
|
|
this.weightMonth = weightMonth;
|
|
this.weightMonth = weightMonth;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getWeightDay() {
|
|
|
|
|
|
+ public BigDecimal getWeightDay() {
|
|
return weightDay;
|
|
return weightDay;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setWeightDay(Long weightDay) {
|
|
|
|
|
|
+ public void setWeightDay(BigDecimal weightDay) {
|
|
this.weightDay = weightDay;
|
|
this.weightDay = weightDay;
|
|
}
|
|
}
|
|
|
|
|