|
@@ -1,62 +1,20 @@
|
|
|
package com.sundata.product.rwa.resultList.model;
|
|
|
|
|
|
-public class ResultListModel {
|
|
|
- private String calcindex; //计算实例号
|
|
|
- private String sdate; //起始数据日期
|
|
|
- private String edate; //截止数据日期
|
|
|
- private String term; //年月
|
|
|
- private String dataDate; //数据日期
|
|
|
- private String ruleId; //规则编号
|
|
|
- private String ruleName; //规则名称
|
|
|
- private String glCode; //总账科目号
|
|
|
- private String subjectDesc; //科目名称
|
|
|
- private String subjectNature; //科目性质
|
|
|
- private String subjectState; //科目状态
|
|
|
- private String onoroff; //表内外标识
|
|
|
- private String accountingDirection; //记账方向(A:实际,D:借方,C:贷方)
|
|
|
- private String calcMethod; //计算方式
|
|
|
- private String positiveRiskType; //正差异风险暴露分类
|
|
|
- private String negativeRiskType; //负差异风险暴露分类
|
|
|
- private String positiveOffProjectType; //正差异表外项目分类
|
|
|
- private String negativeOffProjectType; //负差异表外项目分类
|
|
|
- private String stageinId; //所属阶段
|
|
|
- private String subjectSql; //总账取数规则
|
|
|
- private String productSql; //勾稽明细取数规则
|
|
|
- private String yesorno; //状态
|
|
|
- private String sundataEditType; // 判断新增还是修改
|
|
|
- private String ruleNo;
|
|
|
-
|
|
|
- public String getRuleNo() {
|
|
|
- return ruleNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRuleNo(String ruleNo) {
|
|
|
- this.ruleNo = ruleNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCalcindex() {
|
|
|
- return calcindex;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCalcindex(String calcindex) {
|
|
|
- this.calcindex = calcindex;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSdate() {
|
|
|
- return sdate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSdate(String sdate) {
|
|
|
- this.sdate = sdate;
|
|
|
- }
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
|
- public String getEdate() {
|
|
|
- return edate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEdate(String edate) {
|
|
|
- this.edate = edate;
|
|
|
- }
|
|
|
+public class ResultListModel {
|
|
|
+ private String term; //数据期次
|
|
|
+ private String orgcode; //法人机构
|
|
|
+ private String subjcode; //科目代码
|
|
|
+ private String subjname; //科目名称
|
|
|
+ private String ccy; //币种
|
|
|
+ private BigDecimal glamt; //总账科目余额(万元)
|
|
|
+ private BigDecimal ledgartamt; //勾稽汇总金额(万元)
|
|
|
+ private BigDecimal differamt; //核对差异金额(万元)
|
|
|
+ private BigDecimal differrate; //核对差异率%
|
|
|
+ private BigDecimal percthreshold; //差异容忍度%
|
|
|
+ private String leartresulttype; //是否超过容忍度
|
|
|
+ private BigDecimal offsetdifferamt; //轧差后核对差异(万元)
|
|
|
|
|
|
public String getTerm() {
|
|
|
return term;
|
|
@@ -66,155 +24,91 @@ public class ResultListModel {
|
|
|
this.term = term;
|
|
|
}
|
|
|
|
|
|
- public String getDataDate() {
|
|
|
- return dataDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDataDate(String dataDate) {
|
|
|
- this.dataDate = dataDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRuleId() {
|
|
|
- return ruleId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRuleId(String ruleId) {
|
|
|
- this.ruleId = ruleId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRuleName() {
|
|
|
- return ruleName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRuleName(String ruleName) {
|
|
|
- this.ruleName = ruleName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getGlCode() {
|
|
|
- return glCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGlCode(String glCode) {
|
|
|
- this.glCode = glCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSubjectDesc() {
|
|
|
- return subjectDesc;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubjectDesc(String subjectDesc) {
|
|
|
- this.subjectDesc = subjectDesc;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSubjectNature() {
|
|
|
- return subjectNature;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubjectNature(String subjectNature) {
|
|
|
- this.subjectNature = subjectNature;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSubjectState() {
|
|
|
- return subjectState;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubjectState(String subjectState) {
|
|
|
- this.subjectState = subjectState;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOnoroff() {
|
|
|
- return onoroff;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOnoroff(String onoroff) {
|
|
|
- this.onoroff = onoroff;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAccountingDirection() {
|
|
|
- return accountingDirection;
|
|
|
+ public String getOrgcode() {
|
|
|
+ return orgcode;
|
|
|
}
|
|
|
|
|
|
- public void setAccountingDirection(String accountingDirection) {
|
|
|
- this.accountingDirection = accountingDirection;
|
|
|
+ public void setOrgcode(String orgcode) {
|
|
|
+ this.orgcode = orgcode;
|
|
|
}
|
|
|
|
|
|
- public String getCalcMethod() {
|
|
|
- return calcMethod;
|
|
|
+ public String getSubjcode() {
|
|
|
+ return subjcode;
|
|
|
}
|
|
|
|
|
|
- public void setCalcMethod(String calcMethod) {
|
|
|
- this.calcMethod = calcMethod;
|
|
|
+ public void setSubjcode(String subjcode) {
|
|
|
+ this.subjcode = subjcode;
|
|
|
}
|
|
|
|
|
|
- public String getPositiveRiskType() {
|
|
|
- return positiveRiskType;
|
|
|
+ public String getSubjname() {
|
|
|
+ return subjname;
|
|
|
}
|
|
|
|
|
|
- public void setPositiveRiskType(String positiveRiskType) {
|
|
|
- this.positiveRiskType = positiveRiskType;
|
|
|
+ public void setSubjname(String subjname) {
|
|
|
+ this.subjname = subjname;
|
|
|
}
|
|
|
|
|
|
- public String getNegativeRiskType() {
|
|
|
- return negativeRiskType;
|
|
|
+ public String getCcy() {
|
|
|
+ return ccy;
|
|
|
}
|
|
|
|
|
|
- public void setNegativeRiskType(String negativeRiskType) {
|
|
|
- this.negativeRiskType = negativeRiskType;
|
|
|
+ public void setCcy(String ccy) {
|
|
|
+ this.ccy = ccy;
|
|
|
}
|
|
|
|
|
|
- public String getPositiveOffProjectType() {
|
|
|
- return positiveOffProjectType;
|
|
|
+ public BigDecimal getGlamt() {
|
|
|
+ return glamt;
|
|
|
}
|
|
|
|
|
|
- public void setPositiveOffProjectType(String positiveOffProjectType) {
|
|
|
- this.positiveOffProjectType = positiveOffProjectType;
|
|
|
+ public void setGlamt(BigDecimal glamt) {
|
|
|
+ this.glamt = glamt;
|
|
|
}
|
|
|
|
|
|
- public String getNegativeOffProjectType() {
|
|
|
- return negativeOffProjectType;
|
|
|
+ public BigDecimal getLedgartamt() {
|
|
|
+ return ledgartamt;
|
|
|
}
|
|
|
|
|
|
- public void setNegativeOffProjectType(String negativeOffProjectType) {
|
|
|
- this.negativeOffProjectType = negativeOffProjectType;
|
|
|
+ public void setLedgartamt(BigDecimal ledgartamt) {
|
|
|
+ this.ledgartamt = ledgartamt;
|
|
|
}
|
|
|
|
|
|
- public String getStageinId() {
|
|
|
- return stageinId;
|
|
|
+ public BigDecimal getDifferamt() {
|
|
|
+ return differamt;
|
|
|
}
|
|
|
|
|
|
- public void setStageinId(String stageinId) {
|
|
|
- this.stageinId = stageinId;
|
|
|
+ public void setDifferamt(BigDecimal differamt) {
|
|
|
+ this.differamt = differamt;
|
|
|
}
|
|
|
|
|
|
- public String getSubjectSql() {
|
|
|
- return subjectSql;
|
|
|
+ public BigDecimal getDifferrate() {
|
|
|
+ return differrate;
|
|
|
}
|
|
|
|
|
|
- public void setSubjectSql(String subjectSql) {
|
|
|
- this.subjectSql = subjectSql;
|
|
|
+ public void setDifferrate(BigDecimal differrate) {
|
|
|
+ this.differrate = differrate;
|
|
|
}
|
|
|
|
|
|
- public String getProductSql() {
|
|
|
- return productSql;
|
|
|
+ public BigDecimal getPercthreshold() {
|
|
|
+ return percthreshold;
|
|
|
}
|
|
|
|
|
|
- public void setProductSql(String productSql) {
|
|
|
- this.productSql = productSql;
|
|
|
+ public void setPercthreshold(BigDecimal percthreshold) {
|
|
|
+ this.percthreshold = percthreshold;
|
|
|
}
|
|
|
|
|
|
- public String getYesorno() {
|
|
|
- return yesorno;
|
|
|
+ public String getLeartresulttype() {
|
|
|
+ return leartresulttype;
|
|
|
}
|
|
|
|
|
|
- public void setYesorno(String yesorno) {
|
|
|
- this.yesorno = yesorno;
|
|
|
+ public void setLeartresulttype(String leartresulttype) {
|
|
|
+ this.leartresulttype = leartresulttype;
|
|
|
}
|
|
|
|
|
|
- public String getSundataEditType() {
|
|
|
- return sundataEditType;
|
|
|
+ public BigDecimal getOffsetdifferamt() {
|
|
|
+ return offsetdifferamt;
|
|
|
}
|
|
|
|
|
|
- public void setSundataEditType(String sundataEditType) {
|
|
|
- this.sundataEditType = sundataEditType;
|
|
|
+ public void setOffsetdifferamt(BigDecimal offsetdifferamt) {
|
|
|
+ this.offsetdifferamt = offsetdifferamt;
|
|
|
}
|
|
|
}
|