|
@@ -8,6 +8,8 @@ import java.math.BigDecimal;
|
|
*/
|
|
*/
|
|
public class ReplacementInstrumentActivityStatHead {
|
|
public class ReplacementInstrumentActivityStatHead {
|
|
|
|
|
|
|
|
+ private int openPay;
|
|
|
|
+
|
|
private String cooperationOrganName;
|
|
private String cooperationOrganName;
|
|
|
|
|
|
private BigDecimal surveyNum;
|
|
private BigDecimal surveyNum;
|
|
@@ -16,6 +18,16 @@ public class ReplacementInstrumentActivityStatHead {
|
|
|
|
|
|
private BigDecimal replacementRate = new BigDecimal(0);
|
|
private BigDecimal replacementRate = new BigDecimal(0);
|
|
|
|
|
|
|
|
+ private BigDecimal paymentRate = new BigDecimal(0);
|
|
|
|
+
|
|
|
|
+ public int getOpenPay() {
|
|
|
|
+ return openPay;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOpenPay(int openPay) {
|
|
|
|
+ this.openPay = openPay;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getCooperationOrganName() {
|
|
public String getCooperationOrganName() {
|
|
return cooperationOrganName;
|
|
return cooperationOrganName;
|
|
}
|
|
}
|
|
@@ -47,4 +59,12 @@ public class ReplacementInstrumentActivityStatHead {
|
|
public void setReplacementRate(BigDecimal replacementRate) {
|
|
public void setReplacementRate(BigDecimal replacementRate) {
|
|
this.replacementRate = replacementRate;
|
|
this.replacementRate = replacementRate;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPaymentRate() {
|
|
|
|
+ return paymentRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaymentRate(BigDecimal paymentRate) {
|
|
|
|
+ this.paymentRate = paymentRate;
|
|
|
|
+ }
|
|
}
|
|
}
|