|
@@ -0,0 +1,204 @@
|
|
|
+package com.sundata.product.rwa.businessconfig.model;
|
|
|
+
|
|
|
+public class AccountReconciliationModel {
|
|
|
+ // 计算实例号
|
|
|
+ private String calcIndex;
|
|
|
+ // 起始数据日期
|
|
|
+ private String startDate;
|
|
|
+ // 截止数据日期
|
|
|
+ private String endDate;
|
|
|
+ // 年月
|
|
|
+ private String yearMonth;
|
|
|
+ // 数据日期
|
|
|
+ private String dataDate;
|
|
|
+ // 总账科目号
|
|
|
+ private String generalLedgerCode;
|
|
|
+ // 科目名称
|
|
|
+ private String subjectName;
|
|
|
+ // 科目状态
|
|
|
+ private String subjectState;
|
|
|
+ // 科目级别
|
|
|
+ private String subjectLevel;
|
|
|
+ // 是否最小层级科目
|
|
|
+ private String minLevelSubject;
|
|
|
+ // 是否纳入计量
|
|
|
+ private String measurement;
|
|
|
+ // 是否总分校验
|
|
|
+ private String totalScoreVerified;
|
|
|
+ // 是否总账取数
|
|
|
+ private String generalLedgerRetrieval;
|
|
|
+ // 二档行风险暴露划分(适用总账直接取数和总分校验出现正差异时)
|
|
|
+ private String exposureClassification1;
|
|
|
+ // 二档行风险暴露划分(适用总分校验出现负差异时)
|
|
|
+ private String exposureClassification2;
|
|
|
+ // 记账方向(A:实际,D:借方,C:贷方)
|
|
|
+ private String accountingDirection;
|
|
|
+ // 处理方式(N借-贷,M贷-借)
|
|
|
+ private String disposal;
|
|
|
+ // 科目性质
|
|
|
+ private String subjectNature;
|
|
|
+ // 表内外标识
|
|
|
+ private String onOffFlag;
|
|
|
+ // 分工
|
|
|
+ private String divisionOfLabor;
|
|
|
+
|
|
|
+ public String getCalcIndex() {
|
|
|
+ return calcIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCalcIndex(String calcIndex) {
|
|
|
+ this.calcIndex = calcIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStartDate() {
|
|
|
+ return startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartDate(String startDate) {
|
|
|
+ this.startDate = startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEndDate() {
|
|
|
+ return endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndDate(String endDate) {
|
|
|
+ this.endDate = endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getYearMonth() {
|
|
|
+ return yearMonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYearMonth(String yearMonth) {
|
|
|
+ this.yearMonth = yearMonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDataDate() {
|
|
|
+ return dataDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDataDate(String dataDate) {
|
|
|
+ this.dataDate = dataDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGeneralLedgerCode() {
|
|
|
+ return generalLedgerCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGeneralLedgerCode(String generalLedgerCode) {
|
|
|
+ this.generalLedgerCode = generalLedgerCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectName() {
|
|
|
+ return subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectName(String subjectName) {
|
|
|
+ this.subjectName = subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectState() {
|
|
|
+ return subjectState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectState(String subjectState) {
|
|
|
+ this.subjectState = subjectState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectLevel() {
|
|
|
+ return subjectLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectLevel(String subjectLevel) {
|
|
|
+ this.subjectLevel = subjectLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMinLevelSubject() {
|
|
|
+ return minLevelSubject;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinLevelSubject(String minLevelSubject) {
|
|
|
+ this.minLevelSubject = minLevelSubject;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMeasurement() {
|
|
|
+ return measurement;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMeasurement(String measurement) {
|
|
|
+ this.measurement = measurement;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTotalScoreVerified() {
|
|
|
+ return totalScoreVerified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalScoreVerified(String totalScoreVerified) {
|
|
|
+ this.totalScoreVerified = totalScoreVerified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGeneralLedgerRetrieval() {
|
|
|
+ return generalLedgerRetrieval;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGeneralLedgerRetrieval(String generalLedgerRetrieval) {
|
|
|
+ this.generalLedgerRetrieval = generalLedgerRetrieval;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExposureClassification1() {
|
|
|
+ return exposureClassification1;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExposureClassification1(String exposureClassification1) {
|
|
|
+ this.exposureClassification1 = exposureClassification1;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExposureClassification2() {
|
|
|
+ return exposureClassification2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExposureClassification2(String exposureClassification2) {
|
|
|
+ this.exposureClassification2 = exposureClassification2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAccountingDirection() {
|
|
|
+ return accountingDirection;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccountingDirection(String accountingDirection) {
|
|
|
+ this.accountingDirection = accountingDirection;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDisposal() {
|
|
|
+ return disposal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDisposal(String disposal) {
|
|
|
+ this.disposal = disposal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectNature() {
|
|
|
+ return subjectNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectNature(String subjectNature) {
|
|
|
+ this.subjectNature = subjectNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOnOffFlag() {
|
|
|
+ return onOffFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOnOffFlag(String onOffFlag) {
|
|
|
+ this.onOffFlag = onOffFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDivisionOfLabor() {
|
|
|
+ return divisionOfLabor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDivisionOfLabor(String divisionOfLabor) {
|
|
|
+ this.divisionOfLabor = divisionOfLabor;
|
|
|
+ }
|
|
|
+}
|