package com.fuzamei.dto; public class BuyBackInfoDTO { private String accountId; private String operatorEnterprise; private String ownEnterprise; private Integer orderActId; private Long remainingDays; private Double annualRate; private Double paidMoney; public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getOwnEnterprise() { return ownEnterprise; } public void setOwnEnterprise(String ownEnterprise) { this.ownEnterprise = ownEnterprise; } public String getOperatorEnterprise() { return operatorEnterprise; } public void setOperatorEnterprise(String operatorEnterprise) { this.operatorEnterprise = operatorEnterprise; } public Integer getOrderActId() { return orderActId; } public void setOrderActId(Integer orderActId) { this.orderActId = orderActId; } public Long getRemainingDays() { return remainingDays; } public void setRemainingDays(Long remainingDays) { this.remainingDays = remainingDays; } public Double getAnnualRate() { return annualRate; } public void setAnnualRate(Double annualRate) { this.annualRate = annualRate; } public Double getPaidMoney() { return paidMoney; } public void setPaidMoney(Double paidMoney) { this.paidMoney = paidMoney; } }