|
|
@ -104,4 +104,14 @@ public class ProjectDaily extends EntityWithId { |
|
|
|
public String getAdvancePaymentWan() { |
|
|
|
return NumberUtil.roundStr(this.advancePayment / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public double getCreditLimit() { |
|
|
|
double d=Double.valueOf(String.format("%.2f",creditLimit/10000)); |
|
|
|
return this.creditLimit=d; |
|
|
|
} |
|
|
|
|
|
|
|
public double getUseLimit() { |
|
|
|
double d=Double.valueOf(String.format("%.2f",useLimit/10000)); |
|
|
|
return this.useLimit=d; |
|
|
|
} |
|
|
|
} |
|
|
|