|
@@ -43,7 +43,7 @@ public class AmstruckRailDayplan implements IBasePO<BigDecimal> {
|
|
* 收货单位(DAYPLAN_RECEIVE_UNIT,VARCHAR,20)
|
|
* 收货单位(DAYPLAN_RECEIVE_UNIT,VARCHAR,20)
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value="收货单位",required=false)
|
|
@ApiModelProperty(value="收货单位",required=false)
|
|
- private String dayplanReceiveUnit;
|
|
|
|
|
|
+ private BigDecimal dayplanReceiveUnit;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 发货日期(DAYPLAN_DELIVERY_DATE,TIMESTAMP,7)
|
|
* 发货日期(DAYPLAN_DELIVERY_DATE,TIMESTAMP,7)
|
|
@@ -164,12 +164,12 @@ public class AmstruckRailDayplan implements IBasePO<BigDecimal> {
|
|
this.dayplanDeliveryPlace = dayplanDeliveryPlace == null ? null : dayplanDeliveryPlace.trim();
|
|
this.dayplanDeliveryPlace = dayplanDeliveryPlace == null ? null : dayplanDeliveryPlace.trim();
|
|
}
|
|
}
|
|
|
|
|
|
- public String getDayplanReceiveUnit() {
|
|
|
|
|
|
+ public BigDecimal getDayplanReceiveUnit() {
|
|
return dayplanReceiveUnit;
|
|
return dayplanReceiveUnit;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setDayplanReceiveUnit(String dayplanReceiveUnit) {
|
|
|
|
- this.dayplanReceiveUnit = dayplanReceiveUnit == null ? null : dayplanReceiveUnit.trim();
|
|
|
|
|
|
+ public void setDayplanReceiveUnit(BigDecimal dayplanReceiveUnit) {
|
|
|
|
+ this.dayplanReceiveUnit = dayplanReceiveUnit;
|
|
}
|
|
}
|
|
|
|
|
|
public Date getDayplanDeliveryDate() {
|
|
public Date getDayplanDeliveryDate() {
|