|
|
@@ -208,7 +208,7 @@ public class Demand {
|
|
|
/**
|
|
|
* 加急报酬
|
|
|
*/
|
|
|
- private Integer urgentMoney;
|
|
|
+ private BigDecimal urgentMoney;
|
|
|
|
|
|
private String orderCount;
|
|
|
private String orderIntentionCount;
|
|
|
@@ -607,16 +607,12 @@ public class Demand {
|
|
|
this.urgentDays = Integer.valueOf(urgentDays);
|
|
|
}
|
|
|
|
|
|
- public Integer getUrgentMoney() {
|
|
|
+ public BigDecimal getUrgentMoney() {
|
|
|
return urgentMoney;
|
|
|
}
|
|
|
|
|
|
- public void setUrgentMoney(Integer urgentMoney) {
|
|
|
- this.urgentMoney = urgentMoney;
|
|
|
- }
|
|
|
-
|
|
|
public void setUrgentMoney(String urgentMoney) {
|
|
|
- this.urgentMoney = Integer.valueOf(urgentMoney);
|
|
|
+ this.urgentMoney = new BigDecimal(urgentMoney);
|
|
|
}
|
|
|
|
|
|
public String getContactMobile() {
|