You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

215 lines
4.4 KiB

package erm.economiccapital.api;
import erm.api.enums.EconomicCapitalCalMethod;
import io.sc.platform.orm.api.vo.BaseVo;
import io.sc.platform.orm.api.vo.CorporationAuditorVo;
public class ResultRwaVo extends BaseVo {
private String id;
private String debtId;
private String custId;
private String custName;
private String orgName;
private String busCategory;
private String prodName;
private String stripline;
private Double assetEquity;
private Double ccf;
private String eadBigType;
private String eadSmallType;
private Double ead;
private Double uncoverageEad;
private Double rwa;
private Double rwaMitigation;
private Double weightIrs;
private Double weightArea;
private Double weightIndustry;
private Double weightProd;
private Double weightTerm;
private Double ecRwa;
private Double ecRwaAdjusted;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDebtId() {
return debtId;
}
public void setDebtId(String debtId) {
this.debtId = debtId;
}
public String getCustId() {
return custId;
}
public void setCustId(String custId) {
this.custId = custId;
}
public String getCustName() {
return custName;
}
public void setCustName(String custName) {
this.custName = custName;
}
public String getOrgName() {
return orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public String getBusCategory() {
return busCategory;
}
public void setBusCategory(String busCategory) {
this.busCategory = busCategory;
}
public String getProdName() {
return prodName;
}
public void setProdName(String prodName) {
this.prodName = prodName;
}
public String getStripline() {
return stripline;
}
public void setStripline(String stripline) {
this.stripline = stripline;
}
public Double getAssetEquity() {
return assetEquity;
}
public void setAssetEquity(Double assetEquity) {
this.assetEquity = assetEquity;
}
public Double getCcf() {
return ccf;
}
public void setCcf(Double ccf) {
this.ccf = ccf;
}
public String getEadBigType() {
return eadBigType;
}
public void setEadBigType(String eadBigType) {
this.eadBigType = eadBigType;
}
public String getEadSmallType() {
return eadSmallType;
}
public void setEadSmallType(String eadSmallType) {
this.eadSmallType = eadSmallType;
}
public Double getEad() {
return ead;
}
public void setEad(Double ead) {
this.ead = ead;
}
public Double getUncoverageEad() {
return uncoverageEad;
}
public void setUncoverageEad(Double uncoverageEad) {
this.uncoverageEad = uncoverageEad;
}
public Double getRwa() {
return rwa;
}
public void setRwa(Double rwa) {
this.rwa = rwa;
}
public Double getRwaMitigation() {
return rwaMitigation;
}
public void setRwaMitigation(Double rwaMitigation) {
this.rwaMitigation = rwaMitigation;
}
public Double getWeightIrs() {
return weightIrs;
}
public void setWeightIrs(Double weightIrs) {
this.weightIrs = weightIrs;
}
public Double getWeightArea() {
return weightArea;
}
public void setWeightArea(Double weightArea) {
this.weightArea = weightArea;
}
public Double getWeightIndustry() {
return weightIndustry;
}
public void setWeightIndustry(Double weightIndustry) {
this.weightIndustry = weightIndustry;
}
public Double getWeightProd() {
return weightProd;
}
public void setWeightProd(Double weightProd) {
this.weightProd = weightProd;
}
public Double getWeightTerm() {
return weightTerm;
}
public void setWeightTerm(Double weightTerm) {
this.weightTerm = weightTerm;
}
public Double getEcRwa() {
return ecRwa;
}
public void setEcRwa(Double ecRwa) {
this.ecRwa = ecRwa;
}
public Double getEcRwaAdjusted() {
return ecRwaAdjusted;
}
public void setEcRwaAdjusted(Double ecRwaAdjusted) {
this.ecRwaAdjusted = ecRwaAdjusted;
}
}