diff --git a/cips.frontend/package.json b/cips.frontend/package.json index 09cdfe58..9161f84d 100644 --- a/cips.frontend/package.json +++ b/cips.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/erm.frontend/package.json b/erm.frontend/package.json index b0d60f59..7a41751e 100644 --- a/erm.frontend/package.json +++ b/erm.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/gradle.properties b/gradle.properties index 99d943cc..444b8ede 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 org.gradle.configureondemand=true systemProp.org.gradle.internal.publish.checksums.insecure=true org.gradle.parallel=true -org.gradle.workers.max=4 +org.gradle.workers.max=2 ########################################################### # Maven private repository configuration @@ -37,9 +37,9 @@ application_version=1.0.0 # platform ########################################################### platform_group=io.sc -platform_version=8.2.18 +platform_version=8.2.19 platform_plugin_version=8.2.10 -platform_core_frontend_version=8.2.80 +platform_core_frontend_version=8.2.82 ########################################################### # dependencies version @@ -47,6 +47,7 @@ platform_core_frontend_version=8.2.80 ai4j_version=1.2.0 asciidoctor_version=3.3.2 asm_version=9.7.1 +big_math_version=2.3.2 checker_version=3.43.0 commons_compress_version=1.25.0 commons_fileupload_version=1.4 diff --git a/io.sc.engine.mv.frontend/package.json b/io.sc.engine.mv.frontend/package.json index 2a8028c0..025baff2 100644 --- a/io.sc.engine.mv.frontend/package.json +++ b/io.sc.engine.mv.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.engine.rule.core/build.gradle b/io.sc.engine.rule.core/build.gradle index 5824d02d..04f36c74 100644 --- a/io.sc.engine.rule.core/build.gradle +++ b/io.sc.engine.rule.core/build.gradle @@ -13,6 +13,7 @@ dependencies { "org.slf4j:slf4j-api", "org.freemarker:freemarker", "com.jfinal:enjoy:${enjoy_version}", + "ch.obermuhlner:big-math:${big_math_version}", "org.codehaus.groovy:groovy", "org.codehaus.groovy:groovy-jsr223", diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/ArithmeticFunction.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/ArithmeticFunction.java index 7055bdb7..7f4308fd 100644 --- a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/ArithmeticFunction.java +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/ArithmeticFunction.java @@ -1,6 +1,11 @@ package io.sc.engine.rule.core.function; +import ch.obermuhlner.math.big.BigDecimalMath; + import java.math.BigDecimal; +import java.math.MathContext; +import java.math.RoundingMode; +import java.util.Date; import java.util.Random; /** @@ -9,6 +14,16 @@ import java.util.Random; * */ public class ArithmeticFunction { + /** + * 求余数 + * @param x 被除数 + * @param y 除数 + * @return 余数 + */ + public static Long mod(Number x, Number y){ + return x.longValue() % y.longValue(); + } + /** * 获取一个 range 范围内的随机整数 * @param range 随机数范围 @@ -18,20 +33,25 @@ public class ArithmeticFunction { Random random =new Random(); return random.nextInt(range); } - + /** * 求最大可比较值 * @param 参数类型 * @param numbers 参数列表 * @return 最大可比较值 */ - @SafeVarargs - public static > T max(T... numbers) { + public static T max(T... numbers) { T max =null; if(numbers!=null) { for(T number : numbers) { if(number!=null) { - if(max!=null) {if(number.compareTo(max)>0) {max =number;} }else {max =number;} + if(max!=null) { + if(number.doubleValue()>max.doubleValue()) { + max =number; + } + }else { + max =number; + } } } } @@ -45,12 +65,18 @@ public class ArithmeticFunction { * @return 最小可比较值 */ @SafeVarargs - public static > T min(T... numbers) { + public static T min(T... numbers) { T min =null; if(numbers!=null) { for(T number : numbers) { if(number!=null) { - if(min!=null) {if(number.compareTo(min)<0) {min =number;} }else {min =number;} + if(min!=null) { + if(number.doubleValue() BigDecimal sum(T... numbers) { + BigDecimal sum =new BigDecimal(0); if(numbers!=null) { - for(Integer number : numbers) { + for(Number number : numbers) { if(number!=null) { - if(sum!=null) { sum +=number;}else {sum =number;} + sum =sum.add(new BigDecimal(number.doubleValue())); } } } return sum; } - /** - * 小数求和 - * @param numbers 其他参数列表 - * @return 和 - */ - public static Long sum(Long... numbers) { - Long sum =null; - if(numbers!=null) { - for(Long number : numbers) { - if(number!=null) { - if(sum!=null) { sum +=number;}else {sum =number;} - } - } - } - return sum; + public static Double transformSequencing(Double value,Double sourceMin,Double sourceMax,Double targetMin,Double targetMax) { + return targetMin + ((value-sourceMin)/(sourceMax-sourceMin))*(targetMax-targetMin); } - - /** - * 小数求和 - * @param numbers 其他参数列表 - * @return 和 - */ - public static Double sum(Double... numbers) { - Double sum =null; - if(numbers!=null) { - for(Double number : numbers) { - if(number!=null) { - if(sum!=null) { sum +=number;}else {sum =number;} - } - } - } - return sum; + + public static BigDecimal multiply(Number x,Number y) { + return multiply(x,y,8,RoundingMode.HALF_UP); } - - /** - * 小数求和 - * @param numbers 其他参数列表 - * @return 和 - */ - public static BigDecimal sum(BigDecimal... numbers) { - BigDecimal sum =null; - if(numbers!=null) { - for(BigDecimal number : numbers) { - if(number!=null) { - if(sum!=null) { sum=sum.add(number);}else {sum =number;} - } - } + + public static BigDecimal multiply(Number x, Number y,int scale) { + return multiply(x,y,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal multiply(Number x, Number y, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + BigDecimal yy =new BigDecimal(x.toString()); + return xx.multiply(yy,new MathContext(scale,roundingMode)); + } + + public static BigDecimal divide(Number x,Number y) { + return divide(x,y,8,RoundingMode.HALF_UP); + } + + public static BigDecimal divide(Number x, Number y,int scale) { + return divide(x,y,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal divide(Number x, Number y, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + BigDecimal yy =new BigDecimal(x.toString()); + return xx.divide(yy,scale,roundingMode); + } + + public static BigDecimal pow(Number x, Number y) { + return pow(x,y,8,RoundingMode.HALF_UP); + } + + public static BigDecimal pow(Number x, Number y, int scale) { + return pow(x,y,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal pow(Number x, Number y, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + if(Long.class.isAssignableFrom(y.getClass())){ + Long yy =Long.parseLong(y.toString()); + return BigDecimalMath.pow(xx,yy,new MathContext(scale,roundingMode)); + }else { + BigDecimal yy = new BigDecimal(y.toString()); + return BigDecimalMath.pow(xx,yy,new MathContext(scale,roundingMode)); } - return sum; } - - public static Double transformSequencing(Double value,Double sourceMin,Double sourceMax,Double targetMin,Double targetMax) { - return targetMin + ((value-sourceMin)/(sourceMax-sourceMin))*(targetMax-targetMin); + + public static BigDecimal exp(Number x) { + return exp(x,8,RoundingMode.HALF_UP); + } + + public static BigDecimal exp(Number x, int scale) { + return exp(x,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal exp(Number x, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + return BigDecimalMath.exp(xx,new MathContext(scale,roundingMode)); + } + + public static BigDecimal log(Number x, Number y) { + return log(x,y,8,RoundingMode.HALF_UP); } - public static Double log(Double x, Double y){ - return Math.log(y)/Math.log(x); + public static BigDecimal log(Number x, Number y, int scale) { + return log(x,y,scale,RoundingMode.HALF_UP); } - public static Double lg(Double x){ - return Math.log10(x); + public static BigDecimal log(Number x, Number y, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + BigDecimal yy =new BigDecimal(y.toString()); + BigDecimal numerator =BigDecimalMath.log(yy,new MathContext(scale + 6,roundingMode)); + BigDecimal denominator =BigDecimalMath.log(xx,new MathContext(scale + 6,roundingMode)); + return divide(numerator,denominator,scale,roundingMode); } - public static Double ln(Double x){ - return Math.log(x); + public static BigDecimal lg(Number x) { + return lg(x,8,RoundingMode.HALF_UP); } - public static Double square(Double x) { return Math.pow(x,2); } + public static BigDecimal lg(Number x, int scale) { + return lg(x,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal lg(Number x, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + return BigDecimalMath.log10(xx,new MathContext(scale,roundingMode)); + } + + public static BigDecimal ln(Number x) { + return ln(x,8,RoundingMode.HALF_UP); + } + + public static BigDecimal ln(Number x, int scale) { + return ln(x,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal ln(Number x, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + return BigDecimalMath.log(xx,new MathContext(scale,roundingMode)); + } + + public static BigDecimal square(Number x) { + return square(x,8,RoundingMode.HALF_UP); + } - public static Double root(Double x,Double y){ - return Math.pow(x,1/y); + public static BigDecimal square(Number x, int scale) { + return square(x,scale,RoundingMode.HALF_UP); } - public static Double div(Double x, Double y){ - return x/y; + public static BigDecimal square(Number x, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + return BigDecimalMath.pow(xx,2,new MathContext(scale,roundingMode)); } - public static Integer mod(Integer x, Integer y) { return x % y;} + public static BigDecimal root(Number x,Number y) { + return root(x,y,8,RoundingMode.HALF_UP); + } + + public static BigDecimal root(Number x, Number y,int scale) { + return root(x,y,scale,RoundingMode.HALF_UP); + } + + public static BigDecimal root(Number x, Number y, int scale, RoundingMode roundingMode) { + BigDecimal xx =new BigDecimal(x.toString()); + BigDecimal yy =new BigDecimal(x.toString()); + return BigDecimalMath.root(xx,yy,new MathContext(scale,roundingMode)); + } + + +// public static Double log(Double x, Double y){ +// return Math.log(y)/Math.log(x); +// } + +// public static Double lg(Double x){ +// return Math.log10(x); +// } + +// public static Double ln(Double x){ +// return Math.log(x); +// } + +// public static Double square(Double x) { return Math.pow(x,2); } +// +// public static Double root(Double x,Double y){ +// return Math.pow(x,1/y); +// } +// +// public static Double div(Double x, Double y){ +// return x/y; +// } +// +// public static BigDecimal div(BigDecimal x, BigDecimal y){ +// return x.divide(y,20, RoundingMode.HALF_UP); +// } +// +// public static BigDecimal div(BigDecimal x, BigDecimal y,int scale){ +// return x.divide(y,scale, RoundingMode.HALF_UP); +// } +// +// public static BigDecimal div(BigDecimal x, BigDecimal y,int scale, RoundingMode roundingMode){ +// return x.divide(y,scale, roundingMode); +// } + +// public static Integer mod(Integer x, Integer y) { return x % y;} +// +// public static Long mod(Long x, Long y){ +// return x % y; +// } } diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/StringFunction.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/StringFunction.java index 38e97f86..73d07f5f 100644 --- a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/StringFunction.java +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/function/StringFunction.java @@ -92,24 +92,60 @@ public class StringFunction { return s1.endsWith(s2); } + /** + * 返回字符串的子串 + * @param string 字符串 + * @param start 起始位置 + * @return 字符串的子串 + */ + public static String substring(String string, int start){ + if(string==null){ + return null; + } + return string.substring(start); + } + + /** + * 返回字符串的子串 + * @param string 字符串 + * @param start 起始位置 + * @param end 结束位置 + * @return 字符串的子串 + */ + public static String substring(String string, int start, int end){ + if(string==null){ + return null; + } + return string.substring(start,end); + } + /** * 连接多个字符串 - * @param join 连接符 + * @param delimiter 连接符 * @param strings 需要连接的字符串数组 * @return 连接后的字符串 */ - public static String join(String join,String...strings) { - if(join==null) { - join =""; + public static String join(String delimiter,String...strings) { + if(strings==null || strings.length==0) { + return ""; } - StringBuilder sb =new StringBuilder(); - if(strings!=null && strings.length>0) { - for(String s : strings) { - if(s!=null) { - sb.append(s).append(join); - } - } + if(delimiter==null) { + delimiter =""; + } + return String.join(delimiter,strings); + } + + /** + * 字符串替换 + * @param string 字符串 + * @param target 需要被替换的子串 + * @param replacement 替换字符串 + * @return 替换后的字符串 + */ + public static String replace(String string, CharSequence target, CharSequence replacement){ + if(string==null){ + return null; } - return sb.toString(); + return string.replace(target,replacement); } } diff --git a/io.sc.engine.rule.core/src/main/resources/io/sc/engine/rule/core/code/template/import_render.tpl b/io.sc.engine.rule.core/src/main/resources/io/sc/engine/rule/core/code/template/import_render.tpl index 7f93a790..a97e5858 100644 --- a/io.sc.engine.rule.core/src/main/resources/io/sc/engine/rule/core/code/template/import_render.tpl +++ b/io.sc.engine.rule.core/src/main/resources/io/sc/engine/rule/core/code/template/import_render.tpl @@ -24,7 +24,10 @@ import java.util.Map; import java.util.Random; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import static io.sc.engine.rule.core.function.ArithmeticFunction.div; +import static io.sc.engine.rule.core.function.ArithmeticFunction.multiply; +import static io.sc.engine.rule.core.function.ArithmeticFunction.divide; +import static io.sc.engine.rule.core.function.ArithmeticFunction.exp; +import static io.sc.engine.rule.core.function.ArithmeticFunction.pow; import static io.sc.engine.rule.core.function.ArithmeticFunction.lg; import static io.sc.engine.rule.core.function.ArithmeticFunction.ln; import static io.sc.engine.rule.core.function.ArithmeticFunction.log; @@ -54,7 +57,9 @@ import static io.sc.engine.rule.core.function.StringFunction.endsWith; import static io.sc.engine.rule.core.function.StringFunction.join; import static io.sc.engine.rule.core.function.StringFunction.length; import static io.sc.engine.rule.core.function.StringFunction.lowerCase; +import static io.sc.engine.rule.core.function.StringFunction.replace; import static io.sc.engine.rule.core.function.StringFunction.startsWith; +import static io.sc.engine.rule.core.function.StringFunction.substring; import static io.sc.engine.rule.core.function.StringFunction.trim; import static io.sc.engine.rule.core.function.StringFunction.upperCase; import static io.sc.platform.util.CollectionUtil.hasElements; @@ -81,10 +86,7 @@ import static java.lang.Math.cbrt; import static java.lang.Math.ceil; import static java.lang.Math.cos; import static java.lang.Math.cosh; -import static java.lang.Math.exp; -import static java.lang.Math.expm1; import static java.lang.Math.floor; -import static java.lang.Math.pow; import static java.lang.Math.random; import static java.lang.Math.rint; import static java.lang.Math.round; diff --git a/io.sc.engine.rule.frontend/package.json b/io.sc.engine.rule.frontend/package.json index 5f32c3cd..3603bc7c 100644 --- a/io.sc.engine.rule.frontend/package.json +++ b/io.sc.engine.rule.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例(元数据).json b/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例(元数据).json index dbfa9ef2..fcb7c1fc 100644 --- a/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例(元数据).json +++ b/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例(元数据).json @@ -1,6 +1,6 @@ { "type" : "FOLDER", - "id" : "a66f6083-aa49-4812-93fc-76aa0ba78db1", + "id" : "35eaac11-ddac-4019-90ab-3dddbcb107bd", "type" : "FOLDER", "code" : "D1731633603729", "name" : "引擎示例", @@ -10,7 +10,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "c2705752-53a3-4998-a9b9-8a37cacab4fe", + "id" : "b603b255-f87c-4c79-a85b-a2d0465e4d91", "type" : "FOLDER", "code" : "D1731633627033", "name" : "财务报表", @@ -20,7 +20,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "d53372a8-ea91-4ca2-93ce-32854d21405a", + "id" : "c132330a-e0c4-4ca1-b239-0ce49b4101fd", "type" : "FOLDER", "code" : "D1731633645619", "name" : "旧会计准则", @@ -30,7 +30,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "189adac1-1e05-435d-a203-12f9b2ea2d1a", + "id" : "9ba5ca5c-128e-4c92-9bf2-36ebc114ea34", "type" : "FOLDER", "code" : "D1731642528086", "name" : "事业单位", @@ -40,7 +40,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "f45cb241-48cf-4618-9799-a2ff3177b107", + "id" : "437523b4-c0f4-4d3c-9ace-3779dfcda3a3", "type" : "UD_JAVA_CLASS", "code" : "D1731642535207", "name" : "事业单位", @@ -50,7 +50,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "924c680e-32d0-469a-af20-7cc3d8891c2a", + "id" : "77e0fa1d-0049-492c-8079-f60c34166478", "code" : "_NULL_IND", "name" : "是否财报为空", "description" : "1-是为空 0-不为空", @@ -64,7 +64,7 @@ "order" : 1, "tab" : null }, { - "id" : "38afdc03-cbae-48da-ab91-4924dd608643", + "id" : "e20c8a28-ecdb-435c-a2b2-a465b55336b9", "code" : "IU_01010001", "name" : "现金", "description" : null, @@ -78,7 +78,7 @@ "order" : 2, "tab" : null }, { - "id" : "fcf2f8d6-54dd-4959-86ca-384a7f4e9a0a", + "id" : "6deb7da0-0269-43ca-956f-fa932fbea183", "code" : "IU_01010002", "name" : "银行存款", "description" : null, @@ -92,7 +92,7 @@ "order" : 3, "tab" : null }, { - "id" : "6ec3bc87-b117-4423-86ea-52d4439ac4d8", + "id" : "7f34b8d2-832a-494f-b7f8-f98ecdf4b022", "code" : "IU_01010003", "name" : "应收票据", "description" : null, @@ -106,7 +106,7 @@ "order" : 4, "tab" : null }, { - "id" : "96345806-e2d5-42a7-bdfa-b5506b004fac", + "id" : "7a2ac9fa-9098-40be-9228-1dddd9df16ed", "code" : "IU_01010004", "name" : "应收账款", "description" : null, @@ -120,7 +120,7 @@ "order" : 5, "tab" : null }, { - "id" : "0bf9c9a2-1837-4287-9d4e-affcb53b7556", + "id" : "ca95b10c-b26b-423b-b721-53fd5cc6b8b2", "code" : "IU_01010005", "name" : "预付账款", "description" : null, @@ -134,7 +134,7 @@ "order" : 6, "tab" : null }, { - "id" : "01c65ebc-35da-48e4-baab-095fd90579f3", + "id" : "a24472d1-13ca-44f5-8aa2-89a73c70f5e7", "code" : "IU_01010006", "name" : "其他应收款", "description" : null, @@ -148,7 +148,7 @@ "order" : 7, "tab" : null }, { - "id" : "512498bc-5162-4399-a976-2a1857357d5c", + "id" : "fbb77ea8-0f5e-4f7c-93b4-8c369a3d821b", "code" : "IU_01010007", "name" : "材料", "description" : null, @@ -162,7 +162,7 @@ "order" : 8, "tab" : null }, { - "id" : "9d027ca7-e363-48a5-9c8d-ed1da56fb6fd", + "id" : "e0f6b9f0-a616-453d-9713-dc6dd0c39327", "code" : "IU_01010008", "name" : "产成品", "description" : null, @@ -176,7 +176,7 @@ "order" : 9, "tab" : null }, { - "id" : "1011e43d-ee44-48a5-973a-d0f4de81ed3f", + "id" : "c36ff87a-8b67-4eb7-a864-7bd3aacc6751", "code" : "IU_01010009", "name" : "对外投资", "description" : null, @@ -190,7 +190,7 @@ "order" : 10, "tab" : null }, { - "id" : "11992fc8-4e97-45f9-9cc5-74d7f5a5808f", + "id" : "8cbd5fc7-4b32-4d90-a391-0df73350742b", "code" : "IU_01010010", "name" : "固定资产", "description" : null, @@ -204,7 +204,7 @@ "order" : 11, "tab" : null }, { - "id" : "6424b10e-2364-49d3-8ad7-404a648e99ee", + "id" : "96ffd57e-7fe1-40fd-a6dd-4fbf5a1a5540", "code" : "IU_01010011", "name" : "无形资产", "description" : null, @@ -218,7 +218,7 @@ "order" : 12, "tab" : null }, { - "id" : "401c5bcf-25a1-431d-a08d-74a6c2b9098e", + "id" : "f750dfa2-349b-4554-8aa7-b0f8c45db46a", "code" : "IU_01010012", "name" : "资产合计:", "description" : null, @@ -232,7 +232,7 @@ "order" : 13, "tab" : null }, { - "id" : "33b540ee-c402-4fc5-9ac5-cfb720fa7bca", + "id" : "3ac74f0c-1143-470f-9cfe-9e8658c0f9d0", "code" : "IU_01010013", "name" : "借入款项", "description" : null, @@ -246,7 +246,7 @@ "order" : 14, "tab" : null }, { - "id" : "af122ad5-8fd7-4894-a86b-41defac2a3cd", + "id" : "af19fb98-1643-47bf-b87c-262af51f7ee3", "code" : "IU_01010014", "name" : "应付票据", "description" : null, @@ -260,7 +260,7 @@ "order" : 15, "tab" : null }, { - "id" : "9b2cf42b-4878-459d-9cb9-f591f40c12f8", + "id" : "19296b39-4290-4849-9f7f-a8b89cbc9d05", "code" : "IU_01010015", "name" : "应付帐款", "description" : null, @@ -274,7 +274,7 @@ "order" : 16, "tab" : null }, { - "id" : "6e18afc0-becb-47c0-99bb-55e856589865", + "id" : "17a36ecf-c9d5-458a-a618-407ef9d108a1", "code" : "IU_01010016", "name" : "预收帐款", "description" : null, @@ -288,7 +288,7 @@ "order" : 17, "tab" : null }, { - "id" : "d7768974-3312-425f-8cd8-d83f2fcfca4c", + "id" : "be36e3e1-4f8b-476e-a71e-8b27dde4f8ec", "code" : "IU_01010017", "name" : "其他应付款", "description" : null, @@ -302,7 +302,7 @@ "order" : 18, "tab" : null }, { - "id" : "7c8879af-7b42-4d50-8ca1-8b235b0013fc", + "id" : "0747d7a4-f95f-451c-9af0-741c0d17e54e", "code" : "IU_01010018", "name" : "应缴预算款", "description" : null, @@ -316,7 +316,7 @@ "order" : 19, "tab" : null }, { - "id" : "aefd798a-d80d-4f7e-a5b8-815c823cd57b", + "id" : "21bcb44f-4ad0-4c25-b674-7a5f183bb8cf", "code" : "IU_01010019", "name" : "应缴财政专户款", "description" : null, @@ -330,7 +330,7 @@ "order" : 20, "tab" : null }, { - "id" : "095bc85f-6e37-4c54-8d3e-96f2d8ccd7c7", + "id" : "6bb379fa-a46f-4698-8489-7ea1ba6451f3", "code" : "IU_01010020", "name" : "应交税金", "description" : null, @@ -344,7 +344,7 @@ "order" : 21, "tab" : null }, { - "id" : "1fb44a7c-44ea-4f79-a4a1-a4487a05691c", + "id" : "943932f2-9835-4604-b2c3-da3bed49bb5d", "code" : "IU_01010021", "name" : "负债合计:", "description" : null, @@ -358,7 +358,7 @@ "order" : 22, "tab" : null }, { - "id" : "d6929b5c-2c80-4b45-bb71-f3fde2158fc4", + "id" : "618c0cf2-3edc-492a-a1ad-d7f767676867", "code" : "IU_01010022", "name" : "事业基金", "description" : null, @@ -372,7 +372,7 @@ "order" : 23, "tab" : null }, { - "id" : "196473f5-e44f-4a32-9aaf-3a60d1ea2f7c", + "id" : "a95f2259-253f-4f35-b5f5-4b61b9c60610", "code" : "IU_01010023", "name" : "其中:一般基金", "description" : null, @@ -386,7 +386,7 @@ "order" : 24, "tab" : null }, { - "id" : "22377337-6811-49f3-bc8a-7154fe5ffee7", + "id" : "dc379680-86ea-4c94-9636-dabe7626046a", "code" : "IU_01010024", "name" : "投资基金", "description" : null, @@ -400,7 +400,7 @@ "order" : 25, "tab" : null }, { - "id" : "a844bcaa-c23c-4181-bbf8-2c87dfd6f246", + "id" : "0363920f-e8e6-4a89-b2d4-b283aaffe97e", "code" : "IU_01010025", "name" : "固定基金", "description" : null, @@ -414,7 +414,7 @@ "order" : 26, "tab" : null }, { - "id" : "97f5cef6-651c-42b4-8484-f9ecd6395d81", + "id" : "ee60a3b2-0571-416d-b191-29f89d78fce3", "code" : "IU_01010026", "name" : "专用基金", "description" : null, @@ -428,7 +428,7 @@ "order" : 27, "tab" : null }, { - "id" : "dc3b3ef4-bda9-4e74-b77a-253a3252bf95", + "id" : "3289fca0-1144-4c48-9c63-983006f31217", "code" : "IU_01010029", "name" : "净资产合计:", "description" : null, @@ -442,7 +442,7 @@ "order" : 28, "tab" : null }, { - "id" : "f34c705e-8a60-4b67-ae2a-38160557fcc0", + "id" : "8b3bf468-75f9-4f85-9f5b-0ad151c512ff", "code" : "IU_01010032", "name" : "拨入专款", "description" : null, @@ -456,7 +456,7 @@ "order" : 29, "tab" : null }, { - "id" : "fcc1fd99-8c00-4b04-b078-7458da6128ca", + "id" : "2ee54ef9-bbbf-443d-b02a-a7b5fc1a6adb", "code" : "IU_01010037", "name" : "收入合计:", "description" : null, @@ -470,7 +470,7 @@ "order" : 30, "tab" : null }, { - "id" : "1795f511-a61d-4a67-a2f3-e844df7601a0", + "id" : "e516735f-83e0-4a13-8ef7-a36e37b04a4c", "code" : "IU_01010038", "name" : "拨出经费", "description" : null, @@ -484,7 +484,7 @@ "order" : 31, "tab" : null }, { - "id" : "4174d9c5-908d-44d1-9830-868c3e93088c", + "id" : "4bf1f935-969e-4e79-b25a-95a27916486d", "code" : "IU_01010039", "name" : "拨出专款", "description" : null, @@ -498,7 +498,7 @@ "order" : 32, "tab" : null }, { - "id" : "79f82b18-9676-4087-9192-fb58fcad4372", + "id" : "58fa8546-0046-40a6-ba7d-d03314a493c6", "code" : "IU_01010040", "name" : "专款支出", "description" : null, @@ -512,7 +512,7 @@ "order" : 33, "tab" : null }, { - "id" : "bf55aa4c-4dd0-48bd-86aa-c01a7973dfa6", + "id" : "2171773a-13eb-40df-a7a5-b224474a9126", "code" : "IU_01010043", "name" : "成本费用", "description" : null, @@ -526,7 +526,7 @@ "order" : 34, "tab" : null }, { - "id" : "73c98da8-a24b-4f57-aa72-54524809d57e", + "id" : "081cd08d-dc96-4cfa-9033-4132c5c3b5df", "code" : "IU_01010044", "name" : "销售税金", "description" : null, @@ -540,7 +540,7 @@ "order" : 35, "tab" : null }, { - "id" : "fded3093-ea5e-4f9f-99bc-2a7a184b0006", + "id" : "93e90b56-c855-4568-be3d-0723422f94d7", "code" : "IU_01010047", "name" : "结转自筹基建", "description" : null, @@ -554,7 +554,7 @@ "order" : 36, "tab" : null }, { - "id" : "6c29f58f-2479-4b08-bb21-e42d43dc9407", + "id" : "eb8cd625-da47-47a3-b759-2bdd50c43de7", "code" : "IU_01010048", "name" : "支出合计:", "description" : null, @@ -568,7 +568,7 @@ "order" : 37, "tab" : null }, { - "id" : "bcab13af-8bd0-4cbf-9edf-5be9a9c91a86", + "id" : "a1202412-e98a-4f91-b345-838a7007434b", "code" : "IU_01010049", "name" : "资产部类总计:", "description" : null, @@ -582,7 +582,7 @@ "order" : 38, "tab" : null }, { - "id" : "a5380fc4-3022-463a-8b09-5c38129a2d45", + "id" : "1aec420a-96f2-4700-872f-32c9710084e7", "code" : "IU_01010050", "name" : "负债部类总计:", "description" : null, @@ -596,7 +596,7 @@ "order" : 39, "tab" : null }, { - "id" : "492b4039-5269-4d7f-a29a-8126f49badd8", + "id" : "416d5a90-69a0-4d94-ac1a-1f13b2bb5b75", "code" : "IU_01020001", "name" : "财政补助收入", "description" : null, @@ -610,7 +610,7 @@ "order" : 40, "tab" : null }, { - "id" : "1d8b6184-644d-4c50-9411-79f6a04a234e", + "id" : "de54df77-4d62-4efd-9321-1c8f17dd1778", "code" : "IU_01020002", "name" : "上级补助收入", "description" : null, @@ -624,7 +624,7 @@ "order" : 41, "tab" : null }, { - "id" : "4865c5b5-16cc-4358-b382-6504e5c7b25f", + "id" : "5744f701-a7d8-4e76-a2ed-1b7a8317ee87", "code" : "IU_01020003", "name" : "附属单位缴款", "description" : null, @@ -638,7 +638,7 @@ "order" : 42, "tab" : null }, { - "id" : "33e50787-a917-4d69-9d10-0876383657ed", + "id" : "99d0bd61-19ec-4866-b8e8-ac4b67cf614f", "code" : "IU_01020004", "name" : "事业收入", "description" : null, @@ -652,7 +652,7 @@ "order" : 43, "tab" : null }, { - "id" : "35a6ab78-0b37-4e0f-b754-c0abe1d38d59", + "id" : "01d31325-3bca-41e7-8bb1-8fdb87a1ee68", "code" : "IU_01020005", "name" : "其中:预算外资金收入", "description" : null, @@ -666,7 +666,7 @@ "order" : 44, "tab" : null }, { - "id" : "e24b5410-003a-4843-aeb6-fc7d22818749", + "id" : "aa8d057f-18b3-4fab-83c6-5b33b4439e1f", "code" : "IU_01020006", "name" : "其他收入", "description" : null, @@ -680,7 +680,7 @@ "order" : 45, "tab" : null }, { - "id" : "4d4f3918-e58a-4c32-bcd2-6ed222e08546", + "id" : "6829c789-feff-4d82-b893-19b8b351bb11", "code" : "IU_01020007", "name" : "小 计1", "description" : null, @@ -694,7 +694,7 @@ "order" : 46, "tab" : null }, { - "id" : "06445043-d3be-4d0a-a640-bf372f7b8e16", + "id" : "9903eccc-a6d6-4131-aa3b-e2987005269a", "code" : "IU_01020008", "name" : "经营收入", "description" : null, @@ -708,7 +708,7 @@ "order" : 47, "tab" : null }, { - "id" : "5d4e4d4b-0490-4c9f-a48d-f8e2ea13a4ba", + "id" : "d139a245-57de-4e64-bad1-1c3df698720b", "code" : "IU_01020009", "name" : "小 计2", "description" : null, @@ -722,7 +722,7 @@ "order" : 48, "tab" : null }, { - "id" : "b2deee73-fdd8-4883-b172-2cd45f4cf5bd", + "id" : "1b73f9ed-d3c5-4603-935b-64042cb31679", "code" : "IU_01020010", "name" : "收入总计", "description" : null, @@ -736,7 +736,7 @@ "order" : 49, "tab" : null }, { - "id" : "2450640f-34f6-4c89-af7a-e96608e89400", + "id" : "40f946e6-f89e-432b-a8f0-f8971162e990", "code" : "IU_01020012", "name" : "上缴上级支出", "description" : null, @@ -750,7 +750,7 @@ "order" : 50, "tab" : null }, { - "id" : "540df886-07b3-494d-b9a5-c98236536680", + "id" : "2846fd28-cc65-4149-b45c-b0b9b83c21ab", "code" : "IU_01020013", "name" : "对附属单位补助", "description" : null, @@ -764,7 +764,7 @@ "order" : 51, "tab" : null }, { - "id" : "859a142d-d926-4888-872a-dfc186b74472", + "id" : "c8d84c85-5c14-494c-8a6b-8bdcecc2323e", "code" : "IU_01020014", "name" : "事业支出", "description" : null, @@ -778,7 +778,7 @@ "order" : 52, "tab" : null }, { - "id" : "56a4370a-731c-4b1e-97f6-a2e2460bdfde", + "id" : "50cbf342-4098-4451-a880-92beda5e40e3", "code" : "IU_01020015", "name" : "其中:财政补助支出", "description" : null, @@ -792,7 +792,7 @@ "order" : 53, "tab" : null }, { - "id" : "df51fe63-e9f4-414b-88ad-7faae4272bf6", + "id" : "a66c80dd-da01-42f6-b77b-4a104aed1e64", "code" : "IU_01020016", "name" : "预算外资金支出", "description" : null, @@ -806,7 +806,7 @@ "order" : 54, "tab" : null }, { - "id" : "437aa09e-8a11-4a13-acda-0b5f834a1fd8", + "id" : "acc62092-0693-4353-8198-2ee16b2e38a1", "code" : "IU_01020019", "name" : "小 计3", "description" : null, @@ -820,7 +820,7 @@ "order" : 55, "tab" : null }, { - "id" : "6b1a88aa-a55e-4394-a53b-d791aac11a93", + "id" : "75bfd4b7-1bd9-4b06-9edc-1e6e817c509f", "code" : "IU_01020020", "name" : "经营支出", "description" : null, @@ -834,7 +834,7 @@ "order" : 56, "tab" : null }, { - "id" : "d08833da-98d7-4c91-a69a-76b36d52314a", + "id" : "493f8fda-f482-472d-a74f-50093cbfa27a", "code" : "IU_01020022", "name" : "小 计4", "description" : null, @@ -848,7 +848,7 @@ "order" : 57, "tab" : null }, { - "id" : "f4143fd6-e69c-408d-a781-2c01783f8b67", + "id" : "77098315-4b09-4bba-a3f6-347f70e4c40b", "code" : "IU_01020025", "name" : "支出总计", "description" : null, @@ -862,7 +862,7 @@ "order" : 58, "tab" : null }, { - "id" : "6ff0d2ed-4594-44d0-a2e9-90c5ac40d853", + "id" : "fc9d8f65-f2eb-4492-a664-6ccc3a05b022", "code" : "IU_01020026", "name" : "事业结余", "description" : null, @@ -876,7 +876,7 @@ "order" : 59, "tab" : null }, { - "id" : "c6283368-675f-48e0-a434-a57ae9723ae0", + "id" : "39fa8d7f-a159-49ff-b5bd-aa34825da259", "code" : "IU_01020027", "name" : "1、正常收支结余", "description" : null, @@ -890,7 +890,7 @@ "order" : 60, "tab" : null }, { - "id" : "e78f416c-2064-441f-ba33-c9edcfbb38a7", + "id" : "c70ce9f3-d3dc-471f-b2f5-aec9da41c403", "code" : "IU_01020028", "name" : "2、收回以前年度事业支出", "description" : null, @@ -904,7 +904,7 @@ "order" : 61, "tab" : null }, { - "id" : "7910e5c9-98c5-46d4-b4bd-0d6d67704589", + "id" : "32e3a9a8-a2b6-4b5d-8751-d01e33ea14ee", "code" : "IU_01020029", "name" : "经营结余", "description" : null, @@ -918,7 +918,7 @@ "order" : 62, "tab" : null }, { - "id" : "affeba42-a697-4c67-903d-83d6a34019cb", + "id" : "6a364561-ef49-4d05-923c-75f3f2fb7f16", "code" : "IU_01020030", "name" : "以前年度经营亏损(一)", "description" : null, @@ -932,7 +932,7 @@ "order" : 63, "tab" : null }, { - "id" : "a2a52960-098b-4f80-9981-0d15829b0d7e", + "id" : "4223fbc2-7532-4a2b-8187-3879058d8faf", "code" : "IU_01020031", "name" : "结余分配", "description" : null, @@ -946,7 +946,7 @@ "order" : 64, "tab" : null }, { - "id" : "53a4d34b-ff81-45c8-999d-7e53c633dde8", + "id" : "3a792bed-0c9e-4200-87ab-996bffa0d1a5", "code" : "IU_01020032", "name" : "1、应交所得税", "description" : null, @@ -960,7 +960,7 @@ "order" : 65, "tab" : null }, { - "id" : "037d1e7a-2b6b-41cb-8486-1dd344c54acb", + "id" : "6c7123ff-7e87-4b90-ae9e-18e77daedc75", "code" : "IU_01020033", "name" : "2、提取专用基金", "description" : null, @@ -974,7 +974,7 @@ "order" : 66, "tab" : null }, { - "id" : "52194a1c-ec08-4769-a1ca-d738fd123a24", + "id" : "f5b8f5ff-09f3-471e-82dc-40f193f8baf3", "code" : "IU_01020034", "name" : "3、转入事业基金", "description" : null, @@ -988,7 +988,7 @@ "order" : 67, "tab" : null }, { - "id" : "54d0ff52-2ebc-42a8-8a0d-818b98016c71", + "id" : "eb418290-73b7-499a-8380-a573c2f33a4a", "code" : "IU_01020035", "name" : "4、其他", "description" : null, @@ -1005,7 +1005,7 @@ } ] }, { "type" : "FOLDER", - "id" : "dec5a44f-d87e-4ea8-9edf-0834a40ddf0d", + "id" : "4b1b75f3-c43b-48b9-b241-92fb6aa032a8", "type" : "FOLDER", "code" : "D1731642292109", "name" : "一般企业", @@ -1015,7 +1015,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "844ab4bc-7443-4b58-aca7-2221c0d2ee2b", + "id" : "90add23f-f9b9-4cd3-84d4-ee216582ca42", "type" : "UD_JAVA_CLASS", "code" : "D1731642506002", "name" : "一般企业", @@ -1025,7 +1025,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "89630c37-7aaa-4d30-8f38-9e9c5beecf1e", + "id" : "c2c21391-15c0-4425-8e11-e08f24ada9a4", "code" : "OCA001", "name" : "流动资产:", "description" : null, @@ -1039,7 +1039,7 @@ "order" : 1, "tab" : 0 }, { - "id" : "0dc2e0df-68f3-43fa-b11b-033aa440a371", + "id" : "5859f11c-3dbc-47d2-9ae0-192792338be0", "code" : "OCA001001", "name" : "货币资金", "description" : null, @@ -1053,7 +1053,7 @@ "order" : 2, "tab" : 1 }, { - "id" : "7bfa90b9-33ed-431d-9708-dac01008a3b2", + "id" : "2e42b343-f8b8-4ac1-a902-ed663c04d829", "code" : "OCA001002", "name" : "以公允价值计量且其变动计入当期损益的金融资产", "description" : null, @@ -1067,7 +1067,7 @@ "order" : 3, "tab" : 1 }, { - "id" : "127a9ed9-c97e-4de3-a758-12a26c9e27ca", + "id" : "ccba105a-eb65-49ed-abaf-978806f7de2d", "code" : "OCA001003", "name" : "衍生金融资产", "description" : null, @@ -1081,7 +1081,7 @@ "order" : 4, "tab" : 1 }, { - "id" : "9cf2b2fa-2e54-4f59-9dfe-87541e946e22", + "id" : "d8662067-88c0-447c-a50e-bf3f2747b077", "code" : "OCA001004", "name" : "应收票据", "description" : null, @@ -1095,7 +1095,7 @@ "order" : 5, "tab" : 1 }, { - "id" : "d3ea4dc2-ea44-4ee1-a0f6-7fabeb33295a", + "id" : "53ad1347-06f4-4297-b5e2-00d256c7e7d9", "code" : "OCA001005", "name" : "应收账款", "description" : null, @@ -1109,7 +1109,7 @@ "order" : 6, "tab" : 1 }, { - "id" : "3bf1e65f-2740-46fb-8de6-e8870aea8d76", + "id" : "9877363f-9b3b-45e5-8d2c-cac23f560546", "code" : "OCA001006", "name" : "预付款项", "description" : null, @@ -1123,7 +1123,7 @@ "order" : 7, "tab" : 1 }, { - "id" : "43867617-1743-4e45-940b-038d2fe440b1", + "id" : "f730d4ed-7297-419e-a47a-9dc82568a2f1", "code" : "OCA001007", "name" : "其他应收款", "description" : null, @@ -1137,7 +1137,7 @@ "order" : 8, "tab" : 1 }, { - "id" : "4bd71dd3-c0dd-4ba4-9d9d-a6355db0b3e2", + "id" : "85a0bb3f-3d04-4e73-baf5-41ae07d08c10", "code" : "OCA001008", "name" : "存货", "description" : null, @@ -1151,7 +1151,7 @@ "order" : 9, "tab" : 1 }, { - "id" : "b29eff0a-d413-4ad5-8ddc-d697c4087bc4", + "id" : "b1edb65b-24cf-40cf-a3a4-c1ab8fe356b2", "code" : "OCA001009", "name" : "持有待售资产", "description" : null, @@ -1165,7 +1165,7 @@ "order" : 10, "tab" : 1 }, { - "id" : "c2ecfe64-1237-461d-b561-00a6b501acb1", + "id" : "c600ecef-5464-4e07-92b6-f9fe905ec161", "code" : "OCA001010", "name" : "一年内到期的非流动资产", "description" : null, @@ -1179,7 +1179,7 @@ "order" : 11, "tab" : 1 }, { - "id" : "b16264b8-2b33-4f76-bced-8478b716ff7f", + "id" : "a45c9718-f27e-4250-8071-58d7e4a85946", "code" : "OCA001011", "name" : "其他流动资产", "description" : null, @@ -1193,7 +1193,7 @@ "order" : 12, "tab" : 1 }, { - "id" : "5396b11f-ca68-4b08-83bd-9c310707d7ca", + "id" : "8a555f7d-21d9-4f22-b48d-1eedf908c2af", "code" : "OCA001T", "name" : "流动资产合计", "description" : null, @@ -1207,7 +1207,7 @@ "order" : 13, "tab" : 2 }, { - "id" : "525df310-9cf5-4edf-b42d-8f7478a66af7", + "id" : "fcb4bf0e-b324-412e-8186-e8342b438eb5", "code" : "OCA002", "name" : "非流动资产:", "description" : null, @@ -1221,7 +1221,7 @@ "order" : 14, "tab" : 0 }, { - "id" : "f7ab5ae2-38dc-44a0-8a07-525e0f450303", + "id" : "f7767231-059c-4640-b83e-58cd72dc3348", "code" : "OCA002001", "name" : "可供出售金融资产", "description" : null, @@ -1235,7 +1235,7 @@ "order" : 15, "tab" : 1 }, { - "id" : "6449fd4f-a3eb-48e6-ab35-a3830a096760", + "id" : "01f99fcd-3df0-4349-b8bc-b04788a90d91", "code" : "OCA002002", "name" : "持有至到期投资", "description" : null, @@ -1249,7 +1249,7 @@ "order" : 16, "tab" : 1 }, { - "id" : "df519102-6ebc-410b-b66b-3ac52aa12415", + "id" : "af42ee9a-b19c-4322-81aa-1e0fb4bf157e", "code" : "OCA002003", "name" : "长期应收款", "description" : null, @@ -1263,7 +1263,7 @@ "order" : 17, "tab" : 1 }, { - "id" : "f70c685d-3f23-4d38-8fb3-491ff0acb6b9", + "id" : "e263b42a-99ce-4d0c-9e32-e16992bd3c07", "code" : "OCA002004", "name" : "长期股权投资", "description" : null, @@ -1277,7 +1277,7 @@ "order" : 18, "tab" : 1 }, { - "id" : "7454bf30-315e-494c-86a4-42b6be27552a", + "id" : "ad18167d-2a37-4edc-a35a-1bd64e50014f", "code" : "OCA002005", "name" : "投资性房地产", "description" : null, @@ -1291,7 +1291,7 @@ "order" : 19, "tab" : 1 }, { - "id" : "552c8846-b754-4739-8e24-6a3bdc446514", + "id" : "35d486cb-a241-483c-9d32-7a7ee98cba41", "code" : "OCA002006", "name" : "固定资产", "description" : null, @@ -1305,7 +1305,7 @@ "order" : 20, "tab" : 1 }, { - "id" : "313a8c34-2457-4e6e-b273-d8d9757aee80", + "id" : "dbaaa0bd-3824-45fd-a5a9-8e8f577ebe45", "code" : "OCA002007", "name" : "在建工程", "description" : null, @@ -1319,7 +1319,7 @@ "order" : 21, "tab" : 1 }, { - "id" : "a7239e52-beb2-41e4-98c1-64aa37297abf", + "id" : "9091c720-3d1d-4408-bd39-637427a690a3", "code" : "OCA002008", "name" : "生产性生物资产", "description" : null, @@ -1333,7 +1333,7 @@ "order" : 22, "tab" : 1 }, { - "id" : "8b034eb1-e2b5-4c40-b1db-ce81f3d7bee7", + "id" : "36ee635b-3cbe-452b-958d-ac0d77718a6e", "code" : "OCA002009", "name" : "油气资产", "description" : null, @@ -1347,7 +1347,7 @@ "order" : 23, "tab" : 1 }, { - "id" : "c346caf6-0a33-4bc3-a3a0-3451f471681e", + "id" : "1c6c7206-f3af-4c78-8f3e-46b450584996", "code" : "OCA002010", "name" : "无形资产", "description" : null, @@ -1361,7 +1361,7 @@ "order" : 24, "tab" : 1 }, { - "id" : "8a2f1bd4-57cd-48ec-98c0-34bf7a26727e", + "id" : "bf5ca832-b6f0-4e5d-830a-40b83d163ace", "code" : "OCA002011", "name" : "开发支出", "description" : null, @@ -1375,7 +1375,7 @@ "order" : 25, "tab" : 1 }, { - "id" : "23e29dc1-c6d0-44f0-a1af-52785492a62f", + "id" : "480f82af-3c1f-4ace-ac9b-378554c4537e", "code" : "OCA002012", "name" : "商誉", "description" : null, @@ -1389,7 +1389,7 @@ "order" : 26, "tab" : 1 }, { - "id" : "01d94c5f-8f94-4060-b506-f377eb03471b", + "id" : "fb52cf56-fd90-4ba9-93bd-a7a5972a19b6", "code" : "OCA002013", "name" : "长期待摊费用", "description" : null, @@ -1403,7 +1403,7 @@ "order" : 27, "tab" : 1 }, { - "id" : "21a90b47-9d78-4838-9548-732142d91c99", + "id" : "2c0ce68c-12e9-4a56-9654-e09df2cfeb1c", "code" : "OCA002014", "name" : "递延所得税资产", "description" : null, @@ -1417,7 +1417,7 @@ "order" : 28, "tab" : 1 }, { - "id" : "ceaab161-7dcd-4c84-88ee-e8ec51f4b31d", + "id" : "0a293a73-10c9-40bf-8c0e-31004ce8ecc8", "code" : "OCA002015", "name" : "其他非流动资产", "description" : null, @@ -1431,7 +1431,7 @@ "order" : 29, "tab" : 1 }, { - "id" : "500176e0-4265-4d72-8480-94f08397c9e4", + "id" : "d746ff19-28b4-4aa3-bf01-c16f170e055e", "code" : "OCA002T", "name" : "非流动资产合计", "description" : null, @@ -1445,7 +1445,7 @@ "order" : 30, "tab" : 2 }, { - "id" : "05914306-c48c-40ef-a45f-ee8736cbd735", + "id" : "ac3197c5-c1a6-482c-9473-e75af3c96da4", "code" : "OCAT", "name" : "资产总计", "description" : null, @@ -1459,7 +1459,7 @@ "order" : 31, "tab" : 3 }, { - "id" : "b716f52e-3b53-46ad-924f-8b7a4c3d3a40", + "id" : "4d29aad9-69ed-407f-9b87-085b657135a2", "code" : "OCC001", "name" : "一、经营活动产生的现金流量:", "description" : null, @@ -1473,7 +1473,7 @@ "order" : 32, "tab" : 0 }, { - "id" : "31b03d04-906c-40d8-93df-87332fd2f4c7", + "id" : "ed6e816b-a410-43fd-b4a6-bf543ec944d9", "code" : "OCC001001", "name" : "销售商品、提供劳务收到的现金", "description" : null, @@ -1487,7 +1487,7 @@ "order" : 33, "tab" : 1 }, { - "id" : "3934dbfa-ca5e-45dc-a7dc-bffd4beaf201", + "id" : "f4f9355b-47a7-4d99-b48c-9bc56da17bd0", "code" : "OCC001002", "name" : "收到的税费返还", "description" : null, @@ -1501,7 +1501,7 @@ "order" : 34, "tab" : 1 }, { - "id" : "5b3d10cb-5c42-46b0-ae58-481f3683a356", + "id" : "250f8ab7-2c1d-4874-a969-7c79400a5710", "code" : "OCC001003", "name" : "收到其他与经营活动有关的现金", "description" : null, @@ -1515,7 +1515,7 @@ "order" : 35, "tab" : 1 }, { - "id" : "ddb9c3b5-37ed-455c-ab0e-9ed9ef25960d", + "id" : "1f3cd6b9-d45e-4094-a064-4d5d250ca191", "code" : "OCC001STI", "name" : "经营活动现金流入小计", "description" : null, @@ -1529,7 +1529,7 @@ "order" : 36, "tab" : 2 }, { - "id" : "225f0fb3-a987-4668-a6fa-167f2be7ae46", + "id" : "e7fc4f96-82a0-40cd-8e68-bc7b1141b6f6", "code" : "OCC001004", "name" : "购买商品、接受劳务支付的现金", "description" : null, @@ -1543,7 +1543,7 @@ "order" : 37, "tab" : 1 }, { - "id" : "bd56421b-5746-4197-afd3-a4e5a47f2cfc", + "id" : "ff86c519-ff4f-426c-ab25-4862cf6393ba", "code" : "OCC001005", "name" : "支付给职工以及为职工支付的现金", "description" : null, @@ -1557,7 +1557,7 @@ "order" : 38, "tab" : 1 }, { - "id" : "d111c6d9-14e6-4d3a-8143-72c64eebb5ec", + "id" : "376bb481-e563-4092-8b08-cf9184a39fab", "code" : "OCC001006", "name" : "支付的各项税费", "description" : null, @@ -1571,7 +1571,7 @@ "order" : 39, "tab" : 1 }, { - "id" : "4c78eec2-b647-49f3-92eb-80394d14cd70", + "id" : "08a0ead5-2601-47c2-8041-ded0d1bc539c", "code" : "OCC001007", "name" : "支付其他与经营活动有关的现金", "description" : null, @@ -1585,7 +1585,7 @@ "order" : 40, "tab" : 1 }, { - "id" : "391c6e81-9508-4ed9-850a-cc8fa4a9225c", + "id" : "bdf70f67-0014-4087-b296-735b2453a782", "code" : "OCC001STO", "name" : "经营活动现金流出小计", "description" : null, @@ -1599,7 +1599,7 @@ "order" : 41, "tab" : 2 }, { - "id" : "6b882147-8c3f-4a43-90b2-142259ca6f82", + "id" : "6e7b81a9-14a7-407c-94d0-afa209bad6cd", "code" : "OCC001T", "name" : "经营活动产生的现金流量净额", "description" : null, @@ -1613,7 +1613,7 @@ "order" : 42, "tab" : 3 }, { - "id" : "0c8f284e-20e1-487a-a955-774cbaea8952", + "id" : "9a423842-278a-4ac2-b837-e2502d82fa3b", "code" : "OCC002", "name" : "二、投资活动产生的现金流量:", "description" : null, @@ -1627,7 +1627,7 @@ "order" : 43, "tab" : 0 }, { - "id" : "3478b416-e167-49dc-be3d-8a5f14b1f461", + "id" : "87056816-9604-4986-8dc7-11764fbb6bc4", "code" : "OCC002001", "name" : "收回投资收到的现金", "description" : null, @@ -1641,7 +1641,7 @@ "order" : 44, "tab" : 1 }, { - "id" : "7ad3a1ad-bd0c-4196-9404-eab636333eee", + "id" : "a6d0251e-0333-48bc-8c61-8eb82101d0d2", "code" : "OCC002002", "name" : "取得投资收益收到的现金", "description" : null, @@ -1655,7 +1655,7 @@ "order" : 45, "tab" : 1 }, { - "id" : "fd3ab3d8-c37c-4301-8d5e-5b712f513fb5", + "id" : "0c6e8d04-6183-44dd-af25-b35b927e4937", "code" : "OCC002003", "name" : "处置固定资产、无形资产和其他长期资产收回的现金净额", "description" : null, @@ -1669,7 +1669,7 @@ "order" : 46, "tab" : 1 }, { - "id" : "e6b55e36-a256-43e5-9baf-4d3e9c8c77b9", + "id" : "3c64856a-a369-4953-934e-4aa34d45325a", "code" : "OCC002004", "name" : "处置子公司及其他营业单位收到的现金净额", "description" : null, @@ -1683,7 +1683,7 @@ "order" : 47, "tab" : 1 }, { - "id" : "ed899d2e-4ce9-471b-95b5-2f0196545cfb", + "id" : "65ae04ad-4d16-4b94-8acf-299b6aac880d", "code" : "OCC002005", "name" : "收到其他与投资活动有关的现金", "description" : null, @@ -1697,7 +1697,7 @@ "order" : 48, "tab" : 1 }, { - "id" : "5b610c75-6a9c-45f5-9953-fa2e5211d7c2", + "id" : "87ca8e23-a194-46a6-930e-3bd66d111f2a", "code" : "OCC002STI", "name" : "投资活动现金流入小计", "description" : null, @@ -1711,7 +1711,7 @@ "order" : 49, "tab" : 2 }, { - "id" : "55b8e36a-7aba-4982-a653-7adc01ea822a", + "id" : "c060a911-bdbf-460e-acc5-70189543843e", "code" : "OCC002006", "name" : "购建固定资产、无形资产和其他长期资产支付的现金", "description" : null, @@ -1725,7 +1725,7 @@ "order" : 50, "tab" : 1 }, { - "id" : "18298452-ab53-4a6a-9835-00ec5e88adb9", + "id" : "e09db5a8-698a-47bf-87b0-d55a6b01f371", "code" : "OCC002007", "name" : "投资支付的现金", "description" : null, @@ -1739,7 +1739,7 @@ "order" : 51, "tab" : 1 }, { - "id" : "a42a4620-2e2b-4eab-ba3a-dec2ca399dfa", + "id" : "5ac6ac44-8662-4df9-83e5-812a30171bb5", "code" : "OCC002008", "name" : "取得子公司及其他营业单位支付的现金净额", "description" : null, @@ -1753,7 +1753,7 @@ "order" : 52, "tab" : 1 }, { - "id" : "79e26824-3305-436f-9002-b1e4cd4d3521", + "id" : "da8135c7-183b-47df-9d47-d79d460b9342", "code" : "OCC002009", "name" : "支付其他与投资活动有关的现金", "description" : null, @@ -1767,7 +1767,7 @@ "order" : 53, "tab" : 1 }, { - "id" : "81b028ae-ed59-4b20-bfa2-8fee31f496c6", + "id" : "9155899b-3c64-4280-84a4-94239c7c6a78", "code" : "OCC002STO", "name" : "投资活动现金流出小计", "description" : null, @@ -1781,7 +1781,7 @@ "order" : 54, "tab" : 2 }, { - "id" : "f17860e8-5a01-43b6-a0f7-a4750066f9bf", + "id" : "a7c781ee-3a1b-4c08-a84d-f69a39374037", "code" : "OCC002T", "name" : "投资活动产生的现金流量净额", "description" : null, @@ -1795,7 +1795,7 @@ "order" : 55, "tab" : 3 }, { - "id" : "91d77e7f-a94f-4f59-9870-bbae0bf3fc34", + "id" : "eee93227-fa50-4205-afc2-eab8f5622e34", "code" : "OCC003", "name" : "三、筹资活动产生的现金流量:", "description" : null, @@ -1809,7 +1809,7 @@ "order" : 56, "tab" : 0 }, { - "id" : "ac5d34b8-baf4-42ee-816d-27bcf52c8d8a", + "id" : "6d18222d-ab11-41e0-88b0-cb861fae4877", "code" : "OCC003001", "name" : "吸收投资收到的现金", "description" : null, @@ -1823,7 +1823,7 @@ "order" : 57, "tab" : 1 }, { - "id" : "6164798d-2b76-4123-9156-1ab1e83b06f2", + "id" : "9f4e9867-c193-4aac-bad2-45318d23a089", "code" : "OCC003002", "name" : "取得借款收到的现金", "description" : null, @@ -1837,7 +1837,7 @@ "order" : 58, "tab" : 1 }, { - "id" : "933af16a-20f5-4d17-9c9e-c0199c63a3dd", + "id" : "94eb491d-560a-4e33-893a-72aefaebf9f7", "code" : "OCC003003", "name" : "收到其他与筹资活动有关的现金", "description" : null, @@ -1851,7 +1851,7 @@ "order" : 59, "tab" : 1 }, { - "id" : "3cd21a07-f669-4db0-9286-fad3664441e9", + "id" : "d2f2cc87-b6e7-4130-a346-6eff6e768d51", "code" : "OCC003STI", "name" : "筹资活动现金流入小计", "description" : null, @@ -1865,7 +1865,7 @@ "order" : 60, "tab" : 2 }, { - "id" : "e57d36e7-32b7-48ea-ae65-54e3f6ac3697", + "id" : "3532a34b-d951-4a9e-bd21-76faeabe4a92", "code" : "OCC003004", "name" : "偿还债务支付的现金", "description" : null, @@ -1879,7 +1879,7 @@ "order" : 61, "tab" : 1 }, { - "id" : "2da302aa-ee82-41b9-8ab0-2b169d5209dd", + "id" : "a163cde5-704b-40a4-87d7-a65947d6faed", "code" : "OCC003005", "name" : "分配股利、利润或偿付利息支付的现金", "description" : null, @@ -1893,7 +1893,7 @@ "order" : 62, "tab" : 1 }, { - "id" : "ba6aa03f-7824-4a08-986d-3a65e74a46fe", + "id" : "45521c7a-3eb2-417f-9045-2d915ebaf8f4", "code" : "OCC003006", "name" : "支付其他与筹资活动有关的现金", "description" : null, @@ -1907,7 +1907,7 @@ "order" : 63, "tab" : 1 }, { - "id" : "3b72183b-40c5-4f9e-9cdf-04c114ff2b7b", + "id" : "1ea4f45f-d0a4-4f0c-b79e-16ddde8c3748", "code" : "OCC003STO", "name" : "筹资活动现金流出小计", "description" : null, @@ -1921,7 +1921,7 @@ "order" : 64, "tab" : 2 }, { - "id" : "4a077eeb-15d4-43f4-a4b6-7f1d09ba3e04", + "id" : "0fefe703-d1c6-4c66-95b2-b8db4b6b80e4", "code" : "OCC003T", "name" : "筹资活动产生的现金流量净额", "description" : null, @@ -1935,7 +1935,7 @@ "order" : 65, "tab" : 3 }, { - "id" : "552b1a82-3d02-45c7-9057-b7daa1441def", + "id" : "a9b3b2d5-e738-4e60-83a1-ee80054eabe9", "code" : "OCC004", "name" : "四、汇率变动对现金及现金等价物的影响", "description" : null, @@ -1949,7 +1949,7 @@ "order" : 66, "tab" : 0 }, { - "id" : "0206a6fb-cf29-4a71-aef8-18871e5eabc4", + "id" : "0eb19faa-ad9a-43f8-a4e1-d0da6a83974a", "code" : "OCC005", "name" : "五、现金及现金等价物净增加额", "description" : null, @@ -1963,7 +1963,7 @@ "order" : 67, "tab" : 0 }, { - "id" : "11f0df13-bebe-454c-88a2-dcbfcb6db710", + "id" : "ff8c3545-1feb-4969-b0e8-3a1d57c4267f", "code" : "OCC005A001", "name" : "加:期初现金及现金等价物余额", "description" : null, @@ -1977,7 +1977,7 @@ "order" : 68, "tab" : 1 }, { - "id" : "cec34dc7-fc94-45ca-8b98-747e3c0e5bdf", + "id" : "0bc69cf2-3006-4464-8343-10f13a22f024", "code" : "OCC006", "name" : "六、期末现金及现金等价物余额", "description" : null, @@ -1991,7 +1991,7 @@ "order" : 69, "tab" : 0 }, { - "id" : "3533bd14-2a61-42e2-8606-bc4c3204baf4", + "id" : "052064c8-ee08-479d-9d67-9d9f93ad51c3", "code" : "OCL001", "name" : "流动负债:", "description" : null, @@ -2005,7 +2005,7 @@ "order" : 70, "tab" : 0 }, { - "id" : "7a59c108-2f47-4360-8b7f-448332559527", + "id" : "19f47ed2-c180-4e9c-a642-8538af4c3ef8", "code" : "OCL001001", "name" : "短期借款", "description" : null, @@ -2019,7 +2019,7 @@ "order" : 71, "tab" : 1 }, { - "id" : "f1aed41c-2780-48ac-bb62-2ec031a902e3", + "id" : "8d891ea0-5bda-412e-8a46-46068760ca33", "code" : "OCL001002", "name" : "以公允价值计量且其变动计入当期损益的金融负债", "description" : null, @@ -2033,7 +2033,7 @@ "order" : 72, "tab" : 1 }, { - "id" : "6183c407-c691-473b-ac6d-c0ad2fe6b1ae", + "id" : "e2e50a78-d20b-4b96-8e36-f720b220316e", "code" : "OCL001003", "name" : "衍生金融负债", "description" : null, @@ -2047,7 +2047,7 @@ "order" : 73, "tab" : 1 }, { - "id" : "e2b0def3-df38-4fe2-937d-1a596d88a8d4", + "id" : "59e8addc-ce2d-4bac-9f27-0b73b0c5610b", "code" : "OCL001004", "name" : "应付票据", "description" : null, @@ -2061,7 +2061,7 @@ "order" : 74, "tab" : 1 }, { - "id" : "794326d7-7c0a-4044-91a0-c61702b1175d", + "id" : "b968f4ca-8179-48d7-90b2-337c18222724", "code" : "OCL001005", "name" : "应付账款", "description" : null, @@ -2075,7 +2075,7 @@ "order" : 75, "tab" : 1 }, { - "id" : "bdf6b331-6b43-4c97-90ec-3c0c046c6dbf", + "id" : "35688d16-7d2d-4571-ac25-ae8e4baec43e", "code" : "OCL001006", "name" : "预收款项", "description" : null, @@ -2089,7 +2089,7 @@ "order" : 76, "tab" : 1 }, { - "id" : "b116a2ca-218a-43ba-98c0-cd21d2d3760e", + "id" : "22dcf7b3-3d01-42bd-8dc0-5bec4aff187e", "code" : "OCL001007", "name" : "应付职工薪酬", "description" : null, @@ -2103,7 +2103,7 @@ "order" : 77, "tab" : 1 }, { - "id" : "961f3157-7670-491e-a997-c7d89224afb9", + "id" : "0b6aaf56-6687-4daf-8822-c7b3eea29694", "code" : "OCL001008", "name" : "应交税费", "description" : null, @@ -2117,7 +2117,7 @@ "order" : 78, "tab" : 1 }, { - "id" : "0039efcd-591b-4f51-9d23-c7a61ce3f2af", + "id" : "04762ca7-4767-42ce-bda2-765171decc24", "code" : "OCL001009", "name" : "其他应付款", "description" : null, @@ -2131,7 +2131,7 @@ "order" : 79, "tab" : 1 }, { - "id" : "2a4a3780-72f4-4466-8284-1b5fc695593c", + "id" : "7d45ff6c-3527-4c88-8075-686111a88f58", "code" : "OCL001010", "name" : "持有待售负债", "description" : null, @@ -2145,7 +2145,7 @@ "order" : 80, "tab" : 1 }, { - "id" : "c3879870-cb02-4c3e-9377-c590532a6230", + "id" : "81778455-5db0-4a81-8d42-83e41c164c52", "code" : "OCL001011", "name" : "一年内到期的非流动负债", "description" : null, @@ -2159,7 +2159,7 @@ "order" : 81, "tab" : 1 }, { - "id" : "dd60a6fd-ae7b-42bd-b559-116a6ee97891", + "id" : "7deb9968-a40a-4725-920e-f56ae96f9c63", "code" : "OCL001012", "name" : "其他流动负债", "description" : null, @@ -2173,7 +2173,7 @@ "order" : 82, "tab" : 1 }, { - "id" : "7a031213-ae28-4139-be20-e1ebe80982e8", + "id" : "1a95c7c6-7773-4cca-8414-e8bb93b6434b", "code" : "OCL001T", "name" : "流动负债合计", "description" : null, @@ -2187,7 +2187,7 @@ "order" : 83, "tab" : 2 }, { - "id" : "9facdbfb-fc9e-42d3-9e01-019e22faf458", + "id" : "dace0d5a-536d-40b3-a621-56391a45de30", "code" : "OCL002", "name" : "非流动负债:", "description" : null, @@ -2201,7 +2201,7 @@ "order" : 84, "tab" : 0 }, { - "id" : "718efe72-e8a3-4235-a70b-ee5df23881bc", + "id" : "6b7b2670-e21c-4541-ac01-80d1f3e83416", "code" : "OCL002001", "name" : "长期借款", "description" : null, @@ -2215,7 +2215,7 @@ "order" : 85, "tab" : 1 }, { - "id" : "d551f69b-b910-41c3-a53c-f9875cace125", + "id" : "d9551822-3cac-47fb-b7d8-6377683eaac2", "code" : "OCL002002", "name" : "应付债券", "description" : null, @@ -2229,7 +2229,7 @@ "order" : 86, "tab" : 1 }, { - "id" : "d33ccef2-a9a9-4fac-b858-76af30f8e124", + "id" : "ff127e2d-1d33-455b-9061-9f43b7542847", "code" : "OCL00200201", "name" : "应付债券(其中:优先股)", "description" : null, @@ -2243,7 +2243,7 @@ "order" : 87, "tab" : 2 }, { - "id" : "8896c765-9063-4162-bbe6-13c4834a568b", + "id" : "e2061518-f444-400d-9197-e9cf4f8a7360", "code" : "OCL00200202", "name" : "应付债券(其中:永续债)", "description" : null, @@ -2257,7 +2257,7 @@ "order" : 88, "tab" : 2 }, { - "id" : "ce64a9c2-5a8f-4abd-975d-31f3ab7b9286", + "id" : "05ae8419-b5a5-474d-954f-a405fb84004e", "code" : "OCL002003", "name" : "长期应付款", "description" : null, @@ -2271,7 +2271,7 @@ "order" : 89, "tab" : 1 }, { - "id" : "ed3bac54-dbb9-4e36-b71d-1ebb6d0727aa", + "id" : "dab6716c-47ad-4eb4-a130-fa7e3e80ccf2", "code" : "OCL002004", "name" : "预计负债", "description" : null, @@ -2285,7 +2285,7 @@ "order" : 90, "tab" : 1 }, { - "id" : "48635334-5322-40be-8d45-31be9d4e5e9f", + "id" : "2f50e293-d1ac-4d48-8402-bfa296de9af3", "code" : "OCL002005", "name" : "递延收益", "description" : null, @@ -2299,7 +2299,7 @@ "order" : 91, "tab" : 1 }, { - "id" : "dcb1cdb1-5e78-4af0-b368-188e5262ef5e", + "id" : "60900740-381d-4436-8353-d987243bb5a3", "code" : "OCL002006", "name" : "递延所得税负债", "description" : null, @@ -2313,7 +2313,7 @@ "order" : 92, "tab" : 1 }, { - "id" : "cf11394d-889f-4722-a34a-21b849005185", + "id" : "a2d28625-21b5-4470-a987-f1bc766642ee", "code" : "OCL002007", "name" : "其他非流动负债", "description" : null, @@ -2327,7 +2327,7 @@ "order" : 93, "tab" : 1 }, { - "id" : "8252926a-bb84-4366-879c-5d814cfe7ac6", + "id" : "bbc59eae-afaa-46ad-9661-dca597772576", "code" : "OCL002T", "name" : "非流动负债合计", "description" : null, @@ -2341,7 +2341,7 @@ "order" : 94, "tab" : 2 }, { - "id" : "42d9de7c-48bd-487c-999d-97f70088587e", + "id" : "36a73d82-72e0-4ceb-9681-5d9c07de37fe", "code" : "OCLT", "name" : "负债合计", "description" : null, @@ -2355,7 +2355,7 @@ "order" : 95, "tab" : 3 }, { - "id" : "30dadc40-41e4-467d-a232-399e52ee2239", + "id" : "4b7e000f-6cc5-48d3-abd1-27d114886351", "code" : "OCE", "name" : "所有者权益(或股东权益):", "description" : null, @@ -2369,7 +2369,7 @@ "order" : 96, "tab" : 0 }, { - "id" : "f2a1ebac-7231-427a-a205-2f0febd9c8f5", + "id" : "5a02bf88-984a-4a07-b38c-a11b6da34189", "code" : "OCE001", "name" : "实收资本(或股本)", "description" : null, @@ -2383,7 +2383,7 @@ "order" : 97, "tab" : 1 }, { - "id" : "1adae8f5-7685-420f-a505-8de788f19fef", + "id" : "52cdae9f-0325-44e1-9339-91950c37e47c", "code" : "OCE002", "name" : "其他权益工具", "description" : null, @@ -2397,7 +2397,7 @@ "order" : 98, "tab" : 1 }, { - "id" : "ab4b61d7-e4c0-48cd-b960-8ad1732da0e4", + "id" : "d4411d0c-3a27-4120-a773-c142b237b022", "code" : "OCE002001", "name" : "其他权益工具(其中:优先股)", "description" : null, @@ -2411,7 +2411,7 @@ "order" : 99, "tab" : 2 }, { - "id" : "ec42b4ef-c06d-4211-97e1-4a84f049aa04", + "id" : "11473139-4319-401f-8111-7af8c2f15862", "code" : "OCE002002", "name" : "其他权益工具(其中:永续债)", "description" : null, @@ -2425,7 +2425,7 @@ "order" : 100, "tab" : 2 }, { - "id" : "599ab8f6-01e2-4a8c-98a8-7499a1e8e039", + "id" : "91fa0ca5-6212-4870-92c4-6ba25f9d0014", "code" : "OCE003", "name" : "资本公积", "description" : null, @@ -2439,7 +2439,7 @@ "order" : 101, "tab" : 1 }, { - "id" : "47d3575c-0f50-4a5d-849a-08174e8013ad", + "id" : "92eda0ec-aa89-4eda-baa5-e9a79d457a09", "code" : "OCE004", "name" : "减:库存股", "description" : null, @@ -2453,7 +2453,7 @@ "order" : 102, "tab" : 1 }, { - "id" : "f9bc57ec-91e2-4bf3-93c3-65fb26adb468", + "id" : "f46ec19f-b49f-4f73-aa3d-fb7651c95c72", "code" : "OCE005", "name" : "其他综合收益", "description" : null, @@ -2467,7 +2467,7 @@ "order" : 103, "tab" : 1 }, { - "id" : "199cced6-fc76-49b4-961a-7359baaf6e93", + "id" : "d7f482bd-02fa-4ad0-9ca2-be23aa72504f", "code" : "OCE006", "name" : "专项储备", "description" : null, @@ -2481,7 +2481,7 @@ "order" : 104, "tab" : 1 }, { - "id" : "2ed7f1bd-6bbb-46f0-961e-bf4bda783090", + "id" : "e306c5ef-8d7f-4d2f-94d7-14390fe39601", "code" : "OCE007", "name" : "盈余公积", "description" : null, @@ -2495,7 +2495,7 @@ "order" : 105, "tab" : 1 }, { - "id" : "dff62761-ca38-4b80-a5da-2db67d2f562d", + "id" : "f621d38d-d77d-40d4-b22a-9d427d9520a0", "code" : "OCE008", "name" : "未分配利润", "description" : null, @@ -2509,7 +2509,7 @@ "order" : 106, "tab" : 1 }, { - "id" : "02713678-c749-469d-bbc4-dbf130626273", + "id" : "7969634f-a15e-4cb7-8fa7-474564cf42fe", "code" : "OCET", "name" : "所有者权益(或股东权益)合计", "description" : null, @@ -2523,7 +2523,7 @@ "order" : 107, "tab" : 2 }, { - "id" : "76e3103a-0138-4957-8fc8-6d3cce30fc9c", + "id" : "340cb9be-4bad-42e8-a4ab-dff5108c4845", "code" : "OCLET", "name" : "负债和所有者权益(或股东权益)总计", "description" : null, @@ -2537,7 +2537,7 @@ "order" : 108, "tab" : 3 }, { - "id" : "970fdded-8b55-4c23-bb52-12f3aaaf20ca", + "id" : "2fd22121-ad86-465a-9e1b-432ccdda6b44", "code" : "OCI001", "name" : "一、营业收入", "description" : null, @@ -2551,7 +2551,7 @@ "order" : 109, "tab" : 0 }, { - "id" : "5426513e-d502-4fcb-978a-8db7726fdaa6", + "id" : "1c170f74-68f6-4eb5-9a0e-082156057398", "code" : "OCI001L01", "name" : "减:营业成本", "description" : null, @@ -2565,7 +2565,7 @@ "order" : 110, "tab" : 1 }, { - "id" : "f0673e84-5691-42f5-8859-e6b5e94d18ae", + "id" : "7fa37b74-f747-4171-ad23-9cfc0b2f4d22", "code" : "OCI001L02", "name" : "税金及附加", "description" : null, @@ -2579,7 +2579,7 @@ "order" : 111, "tab" : 2 }, { - "id" : "1e93f5d0-7e2c-4ffe-bc64-309fabcf3ba8", + "id" : "ccca0ed8-70ad-4259-a6de-57a9ecf2c6bf", "code" : "OCI001L03", "name" : "销售费用", "description" : null, @@ -2593,7 +2593,7 @@ "order" : 112, "tab" : 2 }, { - "id" : "8de8252b-1b02-497a-bf04-19c6c53b7cdf", + "id" : "438ab4cd-a3ea-4bd7-8f43-99e5395f8247", "code" : "OCI001L04", "name" : "管理费用", "description" : null, @@ -2607,7 +2607,7 @@ "order" : 113, "tab" : 2 }, { - "id" : "f743e3c1-8f8e-470b-8898-5a9753ac53ee", + "id" : "a197ed89-905f-47cd-a014-c06ced94dd12", "code" : "OCI001L05", "name" : "研发费用", "description" : null, @@ -2621,7 +2621,7 @@ "order" : 114, "tab" : 2 }, { - "id" : "8f0aa2ca-2697-43e4-9c5e-71b9bc95191e", + "id" : "d6b395eb-6e6f-429a-b11a-6ee531199e5d", "code" : "OCI001L06", "name" : "财务费用", "description" : null, @@ -2635,7 +2635,7 @@ "order" : 115, "tab" : 2 }, { - "id" : "67d0b0f4-b1c3-41dd-8c4c-735b9a5d07b1", + "id" : "e4148798-e30c-46ee-bfa6-067dce4238d0", "code" : "OCI001L0601", "name" : "其中:利息费用", "description" : null, @@ -2649,7 +2649,7 @@ "order" : 116, "tab" : 3 }, { - "id" : "c2741d3c-2343-4975-a5a8-5ec43922ace5", + "id" : "41c9d29a-5017-4629-858e-040d4af508ab", "code" : "OCI001L0602", "name" : "利息收入", "description" : null, @@ -2663,7 +2663,7 @@ "order" : 117, "tab" : 5 }, { - "id" : "12c74880-29b4-47ff-9ae1-e1c208e5fc08", + "id" : "31c14026-679a-42bd-9e77-4bee2b4984af", "code" : "OCI001A01", "name" : "加:其他收益", "description" : null, @@ -2677,7 +2677,7 @@ "order" : 118, "tab" : 1 }, { - "id" : "a21aaaf5-df02-4686-91a5-f14e420e687e", + "id" : "50726833-b45f-4e74-a41f-bfd4a44eb129", "code" : "OCI001A02", "name" : "投资收益(损失以“-”号填列)", "description" : null, @@ -2691,7 +2691,7 @@ "order" : 119, "tab" : 2 }, { - "id" : "80d2a377-3c83-4e2e-851a-2fec5fc54f93", + "id" : "f04e58ca-f42c-4cb5-84e7-6c2fa515c6db", "code" : "OCI001A0201", "name" : "其中:对联营企业和合营企业的投资收益", "description" : null, @@ -2705,7 +2705,7 @@ "order" : 120, "tab" : 3 }, { - "id" : "383bb78d-2a21-4e7d-add5-f81df16765ae", + "id" : "06e1a987-4765-4f5d-bd2c-4ad442e68f08", "code" : "OCI001A03", "name" : "公允价值变动收益(损失以“-”号填列)", "description" : null, @@ -2719,7 +2719,7 @@ "order" : 121, "tab" : 2 }, { - "id" : "09e4e459-ac05-4a27-8183-956f59c9806e", + "id" : "a27ec01c-8143-4e43-b08e-406a8761b495", "code" : "OCI001A04", "name" : "资产减值损失(损失以“-”号填列)", "description" : null, @@ -2733,7 +2733,7 @@ "order" : 122, "tab" : 2 }, { - "id" : "375a3ca3-e509-43fc-b303-6e4fdac644a1", + "id" : "93b24613-6e4b-41d4-819c-14d3cb2520e1", "code" : "OCI001A05", "name" : "资产处置收益(损失以“-”号填列)", "description" : null, @@ -2747,7 +2747,7 @@ "order" : 123, "tab" : 2 }, { - "id" : "3498b52c-115f-41c9-9fa4-9e6c58f914ef", + "id" : "8c1348f3-c257-464e-b0d7-b7091103236c", "code" : "OCI002", "name" : "二、营业利润(亏损以“-”号填列)", "description" : null, @@ -2761,7 +2761,7 @@ "order" : 124, "tab" : 0 }, { - "id" : "2fef2fdb-7ff3-456d-a059-3c04803ea6dd", + "id" : "f71e433e-ef1e-4d7b-9fbd-b3ea900a9561", "code" : "OCI002A01", "name" : "加:营业外收入", "description" : null, @@ -2775,7 +2775,7 @@ "order" : 125, "tab" : 1 }, { - "id" : "fc23fca6-f1ad-48ab-8ac3-e5d014ffc4d4", + "id" : "fd5559d5-f8c3-40e2-9519-98dfbf5a0ac1", "code" : "OCI002L01", "name" : "减:营业外支出", "description" : null, @@ -2789,7 +2789,7 @@ "order" : 126, "tab" : 1 }, { - "id" : "8e17d515-459a-4210-8001-2b52118d3bbf", + "id" : "4bc4e7ee-77ee-4c26-baa8-931f53635855", "code" : "OCI003", "name" : "三、利润总额(亏损总额以“-”号填列)", "description" : null, @@ -2803,7 +2803,7 @@ "order" : 127, "tab" : 0 }, { - "id" : "0fea6585-de60-4382-9592-297c3419f38d", + "id" : "ef3cf917-953e-4e4e-8a93-ae470c4b3fdb", "code" : "OCI003L01", "name" : "减:所得税费用", "description" : null, @@ -2817,7 +2817,7 @@ "order" : 128, "tab" : 1 }, { - "id" : "e1d31c3a-955b-4fab-8319-89fb6859fe54", + "id" : "e9e1d126-3828-439e-a224-182f90b22143", "code" : "OCI004", "name" : "四、净利润(净亏损以“-”号填列)", "description" : null, @@ -2831,7 +2831,7 @@ "order" : 129, "tab" : 0 }, { - "id" : "52c74b37-c5b7-4343-a679-72207b924086", + "id" : "307aa70b-a1c9-4931-946f-61b34aa29447", "code" : "OCI004001", "name" : "(一)持续经营净利润(净亏损以“-”号填列)", "description" : null, @@ -2845,7 +2845,7 @@ "order" : 130, "tab" : 1 }, { - "id" : "4a73ba48-63c6-493c-af72-e2126a6f9c38", + "id" : "a93e494a-bce9-4262-997d-8866d1a57db2", "code" : "OCI004002", "name" : "(二)终止经营净利润(净亏损以“-”号填列)", "description" : null, @@ -2859,7 +2859,7 @@ "order" : 131, "tab" : 1 }, { - "id" : "b83c8c4b-06cd-4f26-bce7-168523699932", + "id" : "56bfbf54-e120-4c46-b072-bd1518231ea8", "code" : "OCI005", "name" : "五、其他综合收益的税后净额", "description" : null, @@ -2873,7 +2873,7 @@ "order" : 132, "tab" : 0 }, { - "id" : "9bd70165-7e25-4862-a163-b73ff864e555", + "id" : "6b204674-006e-4d6b-a5d5-c9ae2eb8d7ed", "code" : "OCI005001", "name" : "(一)不能重分类进损益的其他综合收益", "description" : null, @@ -2887,7 +2887,7 @@ "order" : 133, "tab" : 1 }, { - "id" : "36b7e220-880b-4840-8c40-485cb26b4d1b", + "id" : "33f623a2-3ed4-4760-a9c2-fb01ccc9b74e", "code" : "OCI00500101", "name" : "1.重新计量设定受益计划变动额", "description" : null, @@ -2901,7 +2901,7 @@ "order" : 134, "tab" : 2 }, { - "id" : "7dcec44a-9e1f-4c84-95d2-45aa611577c6", + "id" : "423821a3-f89d-4380-becd-9d59c346d3ab", "code" : "OCI00500102", "name" : "2.权益法下不能转损益的其他综合收益", "description" : null, @@ -2915,7 +2915,7 @@ "order" : 135, "tab" : 2 }, { - "id" : "3e4ec5c0-19f8-476f-a8ab-3b211c0a6c2e", + "id" : "093692e7-875a-4766-9752-8b888164ba57", "code" : "OCI005002", "name" : "(二)将重分类进损益的其他综合收益", "description" : null, @@ -2929,7 +2929,7 @@ "order" : 136, "tab" : 1 }, { - "id" : "09e9e6b9-8ae9-40b2-9efa-c3c2c7d6e7eb", + "id" : "84457ebf-ace5-4119-833e-250102078f6e", "code" : "OCI00500201", "name" : "1.权益法下可转损益的其他综合收益", "description" : null, @@ -2943,7 +2943,7 @@ "order" : 137, "tab" : 2 }, { - "id" : "dfec6353-6013-40df-85dc-1c6f507638f1", + "id" : "7a31cbfb-b5ac-49ca-909c-918d5f79b278", "code" : "OCI00500202", "name" : "2.可供出售金融资产公允价值变动损益", "description" : null, @@ -2957,7 +2957,7 @@ "order" : 138, "tab" : 2 }, { - "id" : "b4198eb5-06d6-4ef8-ac12-5c57fe100252", + "id" : "e631bb94-5906-46cf-9347-f7d6ad8a0e68", "code" : "OCI00500203", "name" : "3.持有至到期投资重分类为可供出售金融资产损益", "description" : null, @@ -2971,7 +2971,7 @@ "order" : 139, "tab" : 2 }, { - "id" : "3c62952a-c0d8-4471-b25e-2af6c5bbb0eb", + "id" : "ec698b10-830a-45d2-b205-8fb2c19e2631", "code" : "OCI00500204", "name" : "4.现金流量套期损益的有效部分", "description" : null, @@ -2985,7 +2985,7 @@ "order" : 140, "tab" : 2 }, { - "id" : "524dbe5c-e2ca-4397-bbb0-a1feebd8634f", + "id" : "65773ff0-e3aa-4656-8ab9-edf1c46f7604", "code" : "OCI00500205", "name" : "5.外币财务报表折算差额", "description" : null, @@ -2999,7 +2999,7 @@ "order" : 141, "tab" : 2 }, { - "id" : "da13a417-668d-4c96-8258-950cb1890fa9", + "id" : "1f38985a-b678-4fe2-b64d-416d5f694d98", "code" : "OCI006", "name" : "六、综合收益总额", "description" : null, @@ -3013,7 +3013,7 @@ "order" : 142, "tab" : 0 }, { - "id" : "c52553b9-f75b-4f88-8f28-194b9ea2bfdd", + "id" : "4165679a-b898-4856-8eae-4cd56e656ba0", "code" : "OCI007", "name" : "七、每股收益:", "description" : null, @@ -3027,7 +3027,7 @@ "order" : 143, "tab" : 0 }, { - "id" : "14a8cdf2-1ccf-430f-a9d5-68a2ac4e604f", + "id" : "0c0f4041-b8fe-410f-adc9-436eb3e935f2", "code" : "OCI007001", "name" : "(一)基本每股收益", "description" : null, @@ -3041,7 +3041,7 @@ "order" : 144, "tab" : 1 }, { - "id" : "6f9b647b-5bb2-4d7f-a66d-acbb66b3b3b8", + "id" : "ea55966f-ef57-4ce9-a137-c31fe225fcd6", "code" : "OCI007002", "name" : "(二)稀释每股收益", "description" : null, @@ -3059,7 +3059,7 @@ } ] }, { "type" : "FOLDER", - "id" : "4022319d-db93-438b-8170-a9cb0df4fb69", + "id" : "253a71a1-d6ad-49a1-bb2d-c72347cd5dcc", "type" : "FOLDER", "code" : "D1731633659768", "name" : "新会计准则", @@ -3069,7 +3069,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "ad6776e7-ef5f-44fa-aa00-3645ccbcea94", + "id" : "c9f97e1d-3cc9-478a-a393-1a137c34858f", "type" : "FOLDER", "code" : "D1731642600249", "name" : "事业单位", @@ -3079,7 +3079,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "3ada5ef2-26b8-442f-9df5-22bc7f091534", + "id" : "ca7f8109-00ef-40d8-9ba3-2a209adfacee", "type" : "UD_JAVA_CLASS", "code" : "D1731642635027", "name" : "事业单位", @@ -3089,7 +3089,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "2c8fa4f6-e5bc-4210-b01f-b8bba8afaa58", + "id" : "24ca697b-0e70-4d62-9113-7b1412d07b76", "code" : "NIA001", "name" : "流动资产:", "description" : null, @@ -3103,7 +3103,7 @@ "order" : 1, "tab" : 0 }, { - "id" : "f62d446c-ce09-4daa-9286-bdb13bd5e492", + "id" : "60fd5da3-4408-46c1-828e-e8f7a99aa777", "code" : "NIA001001", "name" : "货币资金", "description" : null, @@ -3117,7 +3117,7 @@ "order" : 2, "tab" : 1 }, { - "id" : "e404c6b9-bcb0-44b2-9944-960d864ed6c1", + "id" : "bf091b35-4579-4a97-a512-386eb6fcc8d7", "code" : "NIA001002", "name" : "短期投资", "description" : null, @@ -3131,7 +3131,7 @@ "order" : 3, "tab" : 1 }, { - "id" : "1ab6c06a-a74d-403d-8d4a-af2dc9ea0938", + "id" : "a01254ff-2219-4d3b-8e75-10e7fb011d55", "code" : "NIA001003", "name" : "财政应返还额度", "description" : null, @@ -3145,7 +3145,7 @@ "order" : 4, "tab" : 1 }, { - "id" : "55fd2911-dde7-49f3-a6aa-6c6cc1331bf9", + "id" : "b806ab09-998a-4bba-9b5a-e50162f5bf8c", "code" : "NIA001004", "name" : "应收票据", "description" : null, @@ -3159,7 +3159,7 @@ "order" : 5, "tab" : 1 }, { - "id" : "2c768e08-80a9-495b-af03-0785513f9e76", + "id" : "aee50138-e144-4849-8659-76c708a34c70", "code" : "NIA001005", "name" : "应收账款净额", "description" : null, @@ -3173,7 +3173,7 @@ "order" : 6, "tab" : 1 }, { - "id" : "3e7c62bf-79a8-4d5b-afd7-e7e1d3e6a488", + "id" : "fc0e8f98-060c-4226-a433-304ba785554d", "code" : "NIA001006", "name" : "预付账款", "description" : null, @@ -3187,7 +3187,7 @@ "order" : 7, "tab" : 1 }, { - "id" : "fab76f00-4f95-4609-8247-99156eb75a07", + "id" : "6478531b-ef55-4238-bdac-9f4e13aaa3a0", "code" : "NIA001007", "name" : "应收股利", "description" : null, @@ -3201,7 +3201,7 @@ "order" : 8, "tab" : 1 }, { - "id" : "516cac15-1682-4b94-bdc8-07bba3a62486", + "id" : "b1c1b678-3cc6-45de-85e7-93336aaa6918", "code" : "NIA001008", "name" : "应收利息", "description" : null, @@ -3215,7 +3215,7 @@ "order" : 9, "tab" : 1 }, { - "id" : "1a698f37-6049-42df-985c-b7e76173f420", + "id" : "ed948c43-95a0-457a-b62c-b7e346e8dce0", "code" : "NIA001009", "name" : "其他应收款净额", "description" : null, @@ -3229,7 +3229,7 @@ "order" : 10, "tab" : 1 }, { - "id" : "308f823b-901e-40b4-bed2-1359345c1557", + "id" : "ca0ff936-fc43-4deb-9e7e-79efa60197ab", "code" : "NIA001010", "name" : "存货", "description" : null, @@ -3243,7 +3243,7 @@ "order" : 11, "tab" : 1 }, { - "id" : "49137ebc-7e50-4e9c-aa71-f4a35e058dd9", + "id" : "f59aeeda-6170-44e9-901d-ec8c7b0082b6", "code" : "NIA001011", "name" : "待摊费用", "description" : null, @@ -3257,7 +3257,7 @@ "order" : 12, "tab" : 1 }, { - "id" : "9a065e80-03cc-4ce4-a60e-366e885c3e38", + "id" : "64855ac8-c33b-4288-a12d-30cf72a9ec47", "code" : "NIA001012", "name" : "一年内到期的非流动资产", "description" : null, @@ -3271,7 +3271,7 @@ "order" : 13, "tab" : 1 }, { - "id" : "284ea8a2-ce8c-4aae-b0a9-366f8aa8e6e9", + "id" : "e53d5cdf-fee9-4df3-adf6-e5b51e16360f", "code" : "NIA001013", "name" : "其他流动资产", "description" : null, @@ -3285,7 +3285,7 @@ "order" : 14, "tab" : 1 }, { - "id" : "e94e5f6e-ce12-49bb-84ef-c71f4656bd65", + "id" : "5498b63a-431d-4c8c-aa81-65dc1cb4f52f", "code" : "NIA001T", "name" : "流动资产合计", "description" : null, @@ -3299,7 +3299,7 @@ "order" : 15, "tab" : 2 }, { - "id" : "9954edf7-f37e-4546-aa9f-799cb310b7ae", + "id" : "e5df1c6c-747a-4b1b-85c2-bb34408457c6", "code" : "NIA002", "name" : "非流动资产:", "description" : null, @@ -3313,7 +3313,7 @@ "order" : 16, "tab" : 0 }, { - "id" : "b87c5654-2137-474d-a587-859342f889d0", + "id" : "f0344933-f0c6-400e-8cd6-e8ad4d8a524a", "code" : "NIA002001", "name" : "长期股权投资", "description" : null, @@ -3327,7 +3327,7 @@ "order" : 17, "tab" : 1 }, { - "id" : "78e5bca8-c7df-414e-a040-7856da62679b", + "id" : "f1320a7b-a8f4-473e-9528-494efb5779e2", "code" : "NIA002002", "name" : "长期债权投资", "description" : null, @@ -3341,7 +3341,7 @@ "order" : 18, "tab" : 1 }, { - "id" : "8039f9a1-ad70-48a1-9da8-0ee699dad271", + "id" : "377e4744-4815-4c17-8136-7ca0bb8e9c55", "code" : "NIA002003", "name" : "固定资产原值", "description" : null, @@ -3355,7 +3355,7 @@ "order" : 19, "tab" : 1 }, { - "id" : "98d6ef20-9f96-4fdd-91c6-d1602d0fd70b", + "id" : "681ae178-ca59-41d9-8933-a01ed01eb05f", "code" : "NIA00200301", "name" : "减:固定资产累计折旧", "description" : null, @@ -3369,7 +3369,7 @@ "order" : 20, "tab" : 2 }, { - "id" : "3ccd4e7c-8f32-431d-bcae-134231e95583", + "id" : "64eaf5b6-c817-41c9-8875-4963ca571696", "code" : "NIA00200302", "name" : "固定资产净值", "description" : null, @@ -3383,7 +3383,7 @@ "order" : 21, "tab" : 2 }, { - "id" : "8e6d86bd-af86-440d-9b33-ae2d3c009a72", + "id" : "3761069a-ac47-4706-8457-a86d0105921b", "code" : "NIA002004", "name" : "工程物资", "description" : null, @@ -3397,7 +3397,7 @@ "order" : 22, "tab" : 1 }, { - "id" : "a43ae413-f96a-49c8-a7ac-00a8b95dbaa5", + "id" : "3d771683-d08b-491b-95d2-5e7130e45450", "code" : "NIA002005", "name" : "在建工程", "description" : null, @@ -3411,7 +3411,7 @@ "order" : 23, "tab" : 1 }, { - "id" : "f77e7491-cbb1-4f0a-8b89-7f97a6416c7b", + "id" : "ae011daa-df09-405d-9188-34f453d474ad", "code" : "NIA002006", "name" : "无形资产原值", "description" : null, @@ -3425,7 +3425,7 @@ "order" : 24, "tab" : 1 }, { - "id" : "9da86cf3-fb7c-4a36-b52a-084c20207423", + "id" : "53e1a2c2-b226-4013-ba9e-c833e93801e7", "code" : "NIA00200601", "name" : "减:无形资产累计摊销", "description" : null, @@ -3439,7 +3439,7 @@ "order" : 25, "tab" : 2 }, { - "id" : "8101871e-c948-40d0-a9d6-bfda44f2224e", + "id" : "c9195fb9-05c0-4c90-b67e-797a3afecfda", "code" : "NIA00200602", "name" : "无形资产净值", "description" : null, @@ -3453,7 +3453,7 @@ "order" : 26, "tab" : 2 }, { - "id" : "ef7aae22-2bf2-4a7f-86c8-9223bb967695", + "id" : "0374acc0-931e-4173-904d-93b54ba5ec89", "code" : "NIA002007", "name" : "研发支出", "description" : null, @@ -3467,7 +3467,7 @@ "order" : 27, "tab" : 1 }, { - "id" : "3990a5e3-a9f5-4607-939c-fb72ebd34b39", + "id" : "4b81c35e-4433-4044-9558-858afca150b7", "code" : "NIA002008", "name" : "公共基础设施原值", "description" : null, @@ -3481,7 +3481,7 @@ "order" : 28, "tab" : 1 }, { - "id" : "1c72ce56-f178-4388-af9b-0f6613500f0f", + "id" : "d38f7e36-11d5-456f-a9d8-fa4dc2d675d0", "code" : "NIA00200801", "name" : "减:公共基础设施累计折旧(摊销)", "description" : null, @@ -3495,7 +3495,7 @@ "order" : 29, "tab" : 2 }, { - "id" : "a2fa8f88-9280-40c2-903d-8abd6687e8f9", + "id" : "7c0ab0f4-2c6b-4927-ad51-3778aca4c476", "code" : "NIA00200802", "name" : "公共基础设施净值", "description" : null, @@ -3509,7 +3509,7 @@ "order" : 30, "tab" : 2 }, { - "id" : "a68bd313-906d-483f-b8b4-3d257af0d516", + "id" : "fa9138d1-2c4d-4e13-95b8-1d2f6aaa76df", "code" : "NIA002009", "name" : "政府储备物资", "description" : null, @@ -3523,7 +3523,7 @@ "order" : 31, "tab" : 1 }, { - "id" : "0b3c1a6f-9a81-4101-ae9b-e669f0a511cc", + "id" : "f6e9f1df-269c-4d5b-af35-877bdacc55cd", "code" : "NIA002010", "name" : "文物文化资产", "description" : null, @@ -3537,7 +3537,7 @@ "order" : 32, "tab" : 1 }, { - "id" : "1a0e8516-2129-43c7-9347-f4a8c30e98b9", + "id" : "175254c5-c710-4109-8487-a09f7848c8c9", "code" : "NIA002011", "name" : "保障性住房原值", "description" : null, @@ -3551,7 +3551,7 @@ "order" : 33, "tab" : 1 }, { - "id" : "78d70342-5b35-4587-8461-238cf8cad5e9", + "id" : "70f709dc-704c-4653-b0d2-5313101a06e1", "code" : "NIA00201101", "name" : "减:保障性住房累计折旧", "description" : null, @@ -3565,7 +3565,7 @@ "order" : 34, "tab" : 2 }, { - "id" : "4daff676-b51c-43d2-9ea7-868262d46339", + "id" : "af373d70-200a-4642-a036-ee675c536425", "code" : "NIA00201102", "name" : "保障性住房净值", "description" : null, @@ -3579,7 +3579,7 @@ "order" : 35, "tab" : 2 }, { - "id" : "80bbc693-dd3f-4721-aeba-e3051a7d2218", + "id" : "bdfd5ece-4a9d-46d0-a383-f4f21298bde4", "code" : "NIA002012", "name" : "长期待摊费用", "description" : null, @@ -3593,7 +3593,7 @@ "order" : 36, "tab" : 1 }, { - "id" : "17869a54-afd0-4154-af38-a6ba14431609", + "id" : "db98ae39-faff-40b9-b5ca-f8f73e579cab", "code" : "NIA002013", "name" : "待处理财产损溢", "description" : null, @@ -3607,7 +3607,7 @@ "order" : 37, "tab" : 1 }, { - "id" : "d1cab323-a469-4e15-9b5f-20ed6b6b8ba0", + "id" : "6d3d43dd-a285-4d89-bd81-6bb4b646c9d8", "code" : "NIA002014", "name" : "其他非流动资产", "description" : null, @@ -3621,7 +3621,7 @@ "order" : 38, "tab" : 1 }, { - "id" : "3006318b-0cf2-43c8-ae95-8cca5027d8e7", + "id" : "e1eeac4e-99a1-4ce9-b8ae-ee9410b0e453", "code" : "NIA002T", "name" : "非流动资产合计", "description" : null, @@ -3635,7 +3635,7 @@ "order" : 39, "tab" : 2 }, { - "id" : "a3e4df16-f491-4da7-8165-91c07e26604b", + "id" : "8077d605-5eb4-43db-b8d6-90fb205ffb09", "code" : "NIA003", "name" : "受托代理资产", "description" : null, @@ -3649,7 +3649,7 @@ "order" : 40, "tab" : 0 }, { - "id" : "ffbbc659-5b2e-47d6-bb2b-487022e564d2", + "id" : "2d486aec-9196-40f6-a0c4-92513b6ebda4", "code" : "NIAT", "name" : "资产总计", "description" : null, @@ -3663,7 +3663,7 @@ "order" : 41, "tab" : 3 }, { - "id" : "728777a9-23f5-4af0-aa15-d3422517e3fd", + "id" : "9e960f30-7a56-4eaf-9fbe-c4c01908f390", "code" : "NIC001", "name" : "一、日常活动产生的现金流量:", "description" : null, @@ -3677,7 +3677,7 @@ "order" : 42, "tab" : 0 }, { - "id" : "2c2157c8-ddeb-4fa9-8e55-e0d0d8d9e9db", + "id" : "ba8372bc-d1ed-4e26-99a7-32747005d68c", "code" : "NIC001001", "name" : "财政基本支出拨款收到的现金", "description" : null, @@ -3691,7 +3691,7 @@ "order" : 43, "tab" : 1 }, { - "id" : "47478840-dbe9-4903-9cad-087aade21350", + "id" : "c9b7edb3-2d07-46ee-ba89-42d4ceb9fa74", "code" : "NIC001002", "name" : "财政非资本性项目拨款收到的现金", "description" : null, @@ -3705,7 +3705,7 @@ "order" : 44, "tab" : 1 }, { - "id" : "0e4657a6-3891-44e8-9038-c391afbba458", + "id" : "eb61b90a-a519-404f-b184-b2c0010acccb", "code" : "NIC001003", "name" : "事业活动收到的除财政拨款以外的现金", "description" : null, @@ -3719,7 +3719,7 @@ "order" : 45, "tab" : 1 }, { - "id" : "4def29c2-5c9f-4a18-b51f-1edf4117092b", + "id" : "9ccf12b8-088e-4f74-b762-4b0ef99af387", "code" : "NIC001004", "name" : "收到的其他与日常活动有关的现金", "description" : null, @@ -3733,7 +3733,7 @@ "order" : 46, "tab" : 1 }, { - "id" : "dbab7866-1af6-4d55-8ccd-e2bff253d1b2", + "id" : "4463c532-ff6b-4dbf-a3cb-40a7d167bf3c", "code" : "NIC001STI", "name" : "日常活动的现金流入小计", "description" : null, @@ -3747,7 +3747,7 @@ "order" : 47, "tab" : 2 }, { - "id" : "0742778d-32a9-428c-a393-6008e2cff135", + "id" : "f436a984-52ee-4b2b-9814-190397e386f4", "code" : "NIC001005", "name" : "购买商品、接受劳务支付的现金", "description" : null, @@ -3761,7 +3761,7 @@ "order" : 48, "tab" : 1 }, { - "id" : "fa9a36e2-9485-4b5b-9ddc-b15a83e03903", + "id" : "6aabf0f6-69e8-4e6a-a267-028e552210a2", "code" : "NIC001006", "name" : "支付给职工以及为职工支付的现金", "description" : null, @@ -3775,7 +3775,7 @@ "order" : 49, "tab" : 1 }, { - "id" : "027223bd-db7b-477d-9c1b-a35e4860c887", + "id" : "5c8ac8e3-2a66-4f73-9972-44ca97eb0a0f", "code" : "NIC001007", "name" : "支付的各项税费", "description" : null, @@ -3789,7 +3789,7 @@ "order" : 50, "tab" : 1 }, { - "id" : "90264de5-6a72-4ab6-aae0-438aabbd9491", + "id" : "2a21ed0c-d8b3-4a2f-b24c-21f8e75183b1", "code" : "NIC001008", "name" : "支付的其他与日常活动有关的现金", "description" : null, @@ -3803,7 +3803,7 @@ "order" : 51, "tab" : 1 }, { - "id" : "9e8108eb-6e38-4581-8cb1-943331cf7077", + "id" : "fd2e99d7-4b14-4050-b22c-5754988e1f4f", "code" : "NIC001STO", "name" : "日常活动的现金流出小计", "description" : null, @@ -3817,7 +3817,7 @@ "order" : 52, "tab" : 2 }, { - "id" : "60d13889-f27c-49b4-a24c-97689934ea6d", + "id" : "c3507730-bb75-41fd-be5f-758ab69c895b", "code" : "NIC001T", "name" : "日常活动产生的现金流量净额", "description" : null, @@ -3831,7 +3831,7 @@ "order" : 53, "tab" : 3 }, { - "id" : "e5778000-80f7-4451-a8fb-aeeb5bdfab14", + "id" : "bb484d0b-27fb-4be0-a4c0-d337cd89b954", "code" : "NIC002", "name" : "二、投资活动产生的现金流量:", "description" : null, @@ -3845,7 +3845,7 @@ "order" : 54, "tab" : 0 }, { - "id" : "08650359-575d-4dc1-908f-9ac3fabfd076", + "id" : "e2dc4146-1bf3-4d1e-9ce6-152920cd262b", "code" : "NIC002001", "name" : "收回投资收到的现金", "description" : null, @@ -3859,7 +3859,7 @@ "order" : 55, "tab" : 1 }, { - "id" : "d2e474e2-9728-4e6a-ba2a-a7ba23785234", + "id" : "a23139ea-3553-4e47-bc3f-9d1004494596", "code" : "NIC002002", "name" : "取得投资收益收到的现金", "description" : null, @@ -3873,7 +3873,7 @@ "order" : 56, "tab" : 1 }, { - "id" : "e700a592-c38c-4131-b90a-8384185c339f", + "id" : "2d19ba5d-bd61-4d25-9a63-5cabda2ba149", "code" : "NIC002003", "name" : "处置固定资产、无形资产、公共基础设施等收回的现金净额", "description" : null, @@ -3887,7 +3887,7 @@ "order" : 57, "tab" : 1 }, { - "id" : "f20b9646-98cc-45c0-94c8-edf0055d5e71", + "id" : "4b74d48f-5edc-4423-98d2-41186983c988", "code" : "NIC002004", "name" : "收到的其他与投资活动有关的现金", "description" : null, @@ -3901,7 +3901,7 @@ "order" : 58, "tab" : 1 }, { - "id" : "947985c3-701c-42ae-ae13-0e83d5ba17a3", + "id" : "f82a46ed-9997-44e3-afcb-cf0f93a9aedd", "code" : "NIC002STI", "name" : "投资活动的现金流入小计", "description" : null, @@ -3915,7 +3915,7 @@ "order" : 59, "tab" : 2 }, { - "id" : "5537e782-24d3-4363-976c-731ef98c1c53", + "id" : "24da923e-0acb-40ce-bb15-f51030097d24", "code" : "NIC002005", "name" : "购建固定资产、无形资产、公共基础设施等支付的现金", "description" : null, @@ -3929,7 +3929,7 @@ "order" : 60, "tab" : 1 }, { - "id" : "6ec39178-bb4f-4714-ae47-176a0fe21162", + "id" : "28c989c4-5a49-409d-958f-43fb749d8c6c", "code" : "NIC002006", "name" : "对外投资支付的现金", "description" : null, @@ -3943,7 +3943,7 @@ "order" : 61, "tab" : 1 }, { - "id" : "7909c2b3-ee21-499a-a51c-628fb4d68d3e", + "id" : "2debf3d9-7caa-4093-9517-92398e3282dd", "code" : "NIC002007", "name" : "上缴处置固定资产、无形资产、公共基础设施等净收入支付的现金", "description" : null, @@ -3957,7 +3957,7 @@ "order" : 62, "tab" : 1 }, { - "id" : "8d4ac2d4-4fcd-4c92-a4e0-9d05a3ebcf41", + "id" : "2e8ca14c-9ee6-432e-b02f-269c84c7c1c1", "code" : "NIC002008", "name" : "支付的其他与投资活动有关的现金", "description" : null, @@ -3971,7 +3971,7 @@ "order" : 63, "tab" : 1 }, { - "id" : "fed29bea-b8c3-4d49-8284-292560a4d26b", + "id" : "44913d8a-8d48-4e1c-a4f7-b4a82d1d3644", "code" : "NIC002STO", "name" : "投资活动的现金流出小计", "description" : null, @@ -3985,7 +3985,7 @@ "order" : 64, "tab" : 2 }, { - "id" : "be311bd6-e4f6-4b62-81c1-18ecaa9228a1", + "id" : "7b99d5dd-31f9-47b0-9f0a-41a344ec8230", "code" : "NIC002T", "name" : "投资活动产生的现金流量净额", "description" : null, @@ -3999,7 +3999,7 @@ "order" : 65, "tab" : 3 }, { - "id" : "523e6a57-d44f-41d5-82f5-ebd40b9dd7c5", + "id" : "fff93426-5510-4b33-ac52-30236044748a", "code" : "NIC003", "name" : "三、筹资活动产生的现金流量:", "description" : null, @@ -4013,7 +4013,7 @@ "order" : 66, "tab" : 0 }, { - "id" : "f4ec9b9e-bf6f-405a-971b-4d19b31b309b", + "id" : "ed4d5dd0-8131-4139-b13b-8fa6609ec35f", "code" : "NIC003001", "name" : "财政资本性项目拨款收到的现金", "description" : null, @@ -4027,7 +4027,7 @@ "order" : 67, "tab" : 1 }, { - "id" : "cf51b663-5619-405d-be5b-bdde27a9fa38", + "id" : "21a867ae-1287-4c7a-8f72-78b6a8845148", "code" : "NIC003002", "name" : "取得借款收到的现金", "description" : null, @@ -4041,7 +4041,7 @@ "order" : 68, "tab" : 1 }, { - "id" : "66546f8d-2fea-4aa1-b7d2-42e85c9adc82", + "id" : "c0e61dd6-679c-46f1-aa4a-70a940a6a06c", "code" : "NIC003003", "name" : "收到的其他与筹资活动有关的现金", "description" : null, @@ -4055,7 +4055,7 @@ "order" : 69, "tab" : 1 }, { - "id" : "8b5755ae-b66e-467a-bb05-e36d2d1b01ab", + "id" : "747fa0aa-20d8-4823-b1d3-eaef9ca70e1d", "code" : "NIC003STI", "name" : "筹资活动的现金流入小计", "description" : null, @@ -4069,7 +4069,7 @@ "order" : 70, "tab" : 2 }, { - "id" : "f385ee1e-ad4c-4172-b306-2d856e9f1bc3", + "id" : "b3d749a3-f558-4c63-a516-c5f2e6af5a76", "code" : "NIC003004", "name" : "偿还借款支付的现金", "description" : null, @@ -4083,7 +4083,7 @@ "order" : 71, "tab" : 1 }, { - "id" : "f6bf5c13-da01-4b96-bf69-1f4b36fc4716", + "id" : "076cc181-668f-4c53-9119-2ad34322872d", "code" : "NIC003005", "name" : "偿还利息支付的现金", "description" : null, @@ -4097,7 +4097,7 @@ "order" : 72, "tab" : 1 }, { - "id" : "f306d91d-0af8-401c-8b2a-6601b888a0c0", + "id" : "68d4c605-da54-4bd0-93da-46ec89f6fabf", "code" : "NIC003006", "name" : "支付的其他与筹资活动有关的现金", "description" : null, @@ -4111,7 +4111,7 @@ "order" : 73, "tab" : 1 }, { - "id" : "588e92a0-146a-45f4-99e5-69397f698dda", + "id" : "c118cc83-e4df-4c17-8581-cdf801a41f76", "code" : "NIC003STO", "name" : "筹资活动的现金流出小计", "description" : null, @@ -4125,7 +4125,7 @@ "order" : 74, "tab" : 2 }, { - "id" : "5a45e9a3-75e0-4e84-93ec-4f495d7ddd96", + "id" : "4f067aad-6e84-4f89-a938-75f3e2b6723f", "code" : "NIC003T", "name" : "筹资活动产生的现金流量净额", "description" : null, @@ -4139,7 +4139,7 @@ "order" : 75, "tab" : 3 }, { - "id" : "b12f6b10-7f30-4f45-91bc-228e760d19c2", + "id" : "0a4fd655-db11-4d55-8227-da3ba74387fe", "code" : "NIC004", "name" : "四、汇率变动对现金的影响额", "description" : null, @@ -4153,7 +4153,7 @@ "order" : 76, "tab" : 0 }, { - "id" : "65e7aa77-b3f2-4309-83f7-b5da44ddf034", + "id" : "b6cff980-5536-414c-8ad9-7c8e6fcc4190", "code" : "NIC005", "name" : "五、现金净增加额", "description" : null, @@ -4167,7 +4167,7 @@ "order" : 77, "tab" : 0 }, { - "id" : "84d515f4-d45a-4899-be3f-ed35b1afa68d", + "id" : "16b938d5-bacd-42dc-94e4-55043bebd5b9", "code" : "NII001", "name" : "一、本期收入", "description" : null, @@ -4181,7 +4181,7 @@ "order" : 78, "tab" : 0 }, { - "id" : "8084224e-1f98-4d33-a83a-c7c324308b10", + "id" : "1337f5d0-0e68-46dd-8ef3-b24a3101c902", "code" : "NII001001", "name" : "(一)财政拨款收入", "description" : null, @@ -4195,7 +4195,7 @@ "order" : 79, "tab" : 1 }, { - "id" : "9777c17f-faf5-4356-b5b7-05afa621c4ca", + "id" : "dbb29fab-deb0-4d5b-80ee-ecd1bdeb009d", "code" : "NII00100101", "name" : "其中:政府性基金收入", "description" : null, @@ -4209,7 +4209,7 @@ "order" : 80, "tab" : 2 }, { - "id" : "5bcdda82-b019-4b2a-b02f-ba207468a838", + "id" : "8624f116-6c01-4ef9-973a-48df3aef45cf", "code" : "NII001002", "name" : "(二)事业收入", "description" : null, @@ -4223,7 +4223,7 @@ "order" : 81, "tab" : 1 }, { - "id" : "056cfc29-478d-4c32-9bec-679e715272c3", + "id" : "69a8774c-3045-479b-a81e-e73226c221e1", "code" : "NII001003", "name" : "(三)上级补助收入", "description" : null, @@ -4237,7 +4237,7 @@ "order" : 82, "tab" : 1 }, { - "id" : "3b565c92-9272-41f1-a5ef-ea379bcc760e", + "id" : "61a8488d-f32d-43a5-9a15-e24e6eac9578", "code" : "NII001004", "name" : "(四)附属单位上缴收入", "description" : null, @@ -4251,7 +4251,7 @@ "order" : 83, "tab" : 1 }, { - "id" : "464aae64-4f51-4771-ab97-0bc47ea34e87", + "id" : "616783c6-f46a-4033-abc2-a8905083e500", "code" : "NII001005", "name" : "(五)经营收入", "description" : null, @@ -4265,7 +4265,7 @@ "order" : 84, "tab" : 1 }, { - "id" : "b3a6b790-5fc1-4aed-b5da-95f0959c35ad", + "id" : "53685a77-63da-4485-ad10-52be18f1e4af", "code" : "NII001006", "name" : "(六)非同级财政拨款收入", "description" : null, @@ -4279,7 +4279,7 @@ "order" : 85, "tab" : 1 }, { - "id" : "919dbeef-b0c1-4103-8d38-6745b0875270", + "id" : "d933b2d3-39a0-456d-ad5f-befe66536e94", "code" : "NII001007", "name" : "(七)投资收益", "description" : null, @@ -4293,7 +4293,7 @@ "order" : 86, "tab" : 1 }, { - "id" : "5bcd090a-d346-4393-a36d-41d4dc0ec04c", + "id" : "d501243a-e958-4b0d-b4e7-75c0d718a110", "code" : "NII001008", "name" : "(八)捐赠收入", "description" : null, @@ -4307,7 +4307,7 @@ "order" : 87, "tab" : 1 }, { - "id" : "b6bc2875-898b-4504-bd9f-ea12c2458620", + "id" : "83f7a19c-52ab-4651-b409-e143a983c99d", "code" : "NII001009", "name" : "(九)利息收入", "description" : null, @@ -4321,7 +4321,7 @@ "order" : 88, "tab" : 1 }, { - "id" : "dea5cbc9-c2a3-4c17-a568-ebecc3d9c8ac", + "id" : "05930660-6896-47c8-81c1-10fe689ab2b4", "code" : "NII001010", "name" : "(十)租金收入", "description" : null, @@ -4335,7 +4335,7 @@ "order" : 89, "tab" : 1 }, { - "id" : "88d5ded8-5eca-4715-99e5-b5ea725e998c", + "id" : "c80e9173-7695-46dc-9227-9e7d830f5485", "code" : "NII001011", "name" : "(十一)其他收入", "description" : null, @@ -4349,7 +4349,7 @@ "order" : 90, "tab" : 1 }, { - "id" : "21343259-08aa-4e60-bd58-2688a688fc52", + "id" : "8e789a9f-35af-424a-8f07-9d12fd321ad2", "code" : "NIE001", "name" : "二、本期费用", "description" : null, @@ -4363,7 +4363,7 @@ "order" : 91, "tab" : 0 }, { - "id" : "9792d348-c5ac-4959-9dcf-6c537ef542a0", + "id" : "6a2cc3f4-e059-42c3-b674-a9b758244dcc", "code" : "NIE001001", "name" : "(一)业务活动费用", "description" : null, @@ -4377,7 +4377,7 @@ "order" : 92, "tab" : 1 }, { - "id" : "fcaacb68-55d5-4233-a9d1-56b8a730cf9d", + "id" : "c9ddffe4-f328-4d55-9136-427414a4d699", "code" : "NIE001002", "name" : "(二)单位管理费用", "description" : null, @@ -4391,7 +4391,7 @@ "order" : 93, "tab" : 1 }, { - "id" : "41447198-69fe-4b7d-b9bd-da3605148827", + "id" : "f176855e-9a09-4f37-a224-b875ed27ea62", "code" : "NIE001003", "name" : "(三)经营费用", "description" : null, @@ -4405,7 +4405,7 @@ "order" : 94, "tab" : 1 }, { - "id" : "1dba3735-7e88-4a46-9bad-9c76ea550da2", + "id" : "3c232907-3b06-4a33-b6fe-882d57962bb1", "code" : "NIE001004", "name" : "(四)资产处置费用", "description" : null, @@ -4419,7 +4419,7 @@ "order" : 95, "tab" : 1 }, { - "id" : "a417f257-ed82-4fd9-a64a-a7c174807efa", + "id" : "14f49a8f-c2d4-407c-b6cf-53cd064f2959", "code" : "NIE001005", "name" : "(五)上缴上级费用", "description" : null, @@ -4433,7 +4433,7 @@ "order" : 96, "tab" : 1 }, { - "id" : "8c8b8660-2b44-4370-a529-698dc6689310", + "id" : "bfba234a-62f8-4df9-be39-542ff92714cf", "code" : "NIE001006", "name" : "(六)对附属单位补助费用", "description" : null, @@ -4447,7 +4447,7 @@ "order" : 97, "tab" : 1 }, { - "id" : "6392ec68-a0bf-4e81-a776-aaecb26f4caa", + "id" : "875edd3e-aec4-418a-bb9c-9fd43fc9ef77", "code" : "NIE001007", "name" : "(七)所得税费用", "description" : null, @@ -4461,7 +4461,7 @@ "order" : 98, "tab" : 1 }, { - "id" : "8e728228-6656-412f-bba7-82d6c555f532", + "id" : "3b26d028-bdc5-4a01-97aa-3e17c3003f68", "code" : "NIE001008", "name" : "(八)其他费用", "description" : null, @@ -4475,7 +4475,7 @@ "order" : 99, "tab" : 1 }, { - "id" : "936b973c-2214-41d3-926b-4284b488fc89", + "id" : "b940b230-eeab-43a3-86cf-b886bd01d2da", "code" : "NIIET", "name" : "三、本期盈余", "description" : null, @@ -4489,7 +4489,7 @@ "order" : 100, "tab" : 0 }, { - "id" : "9908efa1-5653-451e-aae0-f31d33bf3ca5", + "id" : "f391c693-3dd1-48e7-b929-a715d994e13d", "code" : "NIL001", "name" : "流动负债:", "description" : null, @@ -4503,7 +4503,7 @@ "order" : 101, "tab" : 0 }, { - "id" : "8a429729-3774-4e73-8546-f04ac2d4764e", + "id" : "199e3715-5f27-44e7-b226-1011de594c39", "code" : "NIL001001", "name" : "短期借款", "description" : null, @@ -4517,7 +4517,7 @@ "order" : 102, "tab" : 1 }, { - "id" : "d2e4c9d6-4664-4580-9c76-7ae1a9cc80c2", + "id" : "cfbd4ba1-23b7-4313-8b16-e8dee7ebb596", "code" : "NIL001002", "name" : "应交增值税", "description" : null, @@ -4531,7 +4531,7 @@ "order" : 103, "tab" : 1 }, { - "id" : "a8dfd290-6f76-4604-bc55-128f25e7a4b8", + "id" : "c2ed5a89-349b-4659-b203-9f5df1ffed0a", "code" : "NIL001003", "name" : "其他应交税费", "description" : null, @@ -4545,7 +4545,7 @@ "order" : 104, "tab" : 1 }, { - "id" : "321f725c-db59-4241-81ea-24fda2341447", + "id" : "94abe49a-2eec-4d6d-bee6-5febc354b186", "code" : "NIL001004", "name" : "应缴财政款", "description" : null, @@ -4559,7 +4559,7 @@ "order" : 105, "tab" : 1 }, { - "id" : "37f50453-c232-4f3c-a13f-a07218ec26b2", + "id" : "cdc3fbf1-6d40-44ee-8a17-ed15de967d40", "code" : "NIL001005", "name" : "应付职工薪酬", "description" : null, @@ -4573,7 +4573,7 @@ "order" : 106, "tab" : 1 }, { - "id" : "c66f05f0-976a-430c-8c3f-0f3ba18a7e9a", + "id" : "4df16967-5e53-4bf4-ac70-0c3c19b6ea51", "code" : "NIL001006", "name" : "应付票据", "description" : null, @@ -4587,7 +4587,7 @@ "order" : 107, "tab" : 1 }, { - "id" : "0f9279e7-3b60-4e41-9cde-fcd130bd0b6d", + "id" : "9155c51d-fe83-469b-a1ef-758ca6e274ac", "code" : "NIL001007", "name" : "应付账款", "description" : null, @@ -4601,7 +4601,7 @@ "order" : 108, "tab" : 1 }, { - "id" : "0164eda4-0cdb-43bc-8559-2e67381fee17", + "id" : "54355733-ee80-49ca-bbab-1b10520ec335", "code" : "NIL001008", "name" : "应付政府补贴款", "description" : null, @@ -4615,7 +4615,7 @@ "order" : 109, "tab" : 1 }, { - "id" : "7cc036a1-2363-4072-9405-3e9680092bd4", + "id" : "5b97463a-667d-4062-88b6-31a29f266600", "code" : "NIL001009", "name" : "应付利息", "description" : null, @@ -4629,7 +4629,7 @@ "order" : 110, "tab" : 1 }, { - "id" : "eab650ff-eeb7-4d91-92dd-531ede386b7a", + "id" : "c49f6a36-40c6-4b79-8715-e2692b801cc6", "code" : "NIL001010", "name" : "预收账款", "description" : null, @@ -4643,7 +4643,7 @@ "order" : 111, "tab" : 1 }, { - "id" : "8799e62a-0c08-4564-a928-a6eb39db1d8f", + "id" : "aecbd97d-6490-4778-bb8d-7842afc248f8", "code" : "NIL001011", "name" : "其他应付款", "description" : null, @@ -4657,7 +4657,7 @@ "order" : 112, "tab" : 1 }, { - "id" : "678390bb-3c18-456c-9a0a-0174f6fd141c", + "id" : "3a4ddabd-d0a7-409e-b4e9-99fc57a21987", "code" : "NIL001012", "name" : "预提费用", "description" : null, @@ -4671,7 +4671,7 @@ "order" : 113, "tab" : 1 }, { - "id" : "53553360-02f8-4bf6-a0c5-4904947336b2", + "id" : "e5f3f3c5-13ed-4c1b-af32-9ad186a3c29c", "code" : "NIL001013", "name" : "一年内到期的非流动负债", "description" : null, @@ -4685,7 +4685,7 @@ "order" : 114, "tab" : 1 }, { - "id" : "cd9e5ea2-ca94-40a2-8e29-fbfd5f1a0fdc", + "id" : "9a28dc5b-9e2c-44ef-8142-9dca9dbc025c", "code" : "NIL001014", "name" : "其他流动负债", "description" : null, @@ -4699,7 +4699,7 @@ "order" : 115, "tab" : 1 }, { - "id" : "a400d1ed-b806-466b-9a6d-29d94844e87b", + "id" : "e3cacea1-219c-46ad-a2e6-8dc143b5f06f", "code" : "NIL001T", "name" : "流动负债合计", "description" : null, @@ -4713,7 +4713,7 @@ "order" : 116, "tab" : 2 }, { - "id" : "b0c24bd3-fa71-43f3-9569-5ed095975718", + "id" : "3762b5cd-0bb7-412b-a8bc-a347b5172c97", "code" : "NIL002", "name" : "非流动负债:", "description" : null, @@ -4727,7 +4727,7 @@ "order" : 117, "tab" : 0 }, { - "id" : "4b730046-4b1e-4850-8f81-8c9915ed8186", + "id" : "c624065a-7ce2-4729-b92d-7ce5b92acca2", "code" : "NIL002001", "name" : "长期借款", "description" : null, @@ -4741,7 +4741,7 @@ "order" : 118, "tab" : 1 }, { - "id" : "b94c81db-bfd8-484d-acf9-d8b246321ac6", + "id" : "88cd3da5-4503-4a30-bd62-95d6203651be", "code" : "NIL002002", "name" : "长期应付款", "description" : null, @@ -4755,7 +4755,7 @@ "order" : 119, "tab" : 1 }, { - "id" : "ec6e6b8b-52ff-4b21-b4bd-a6385d9bbc47", + "id" : "3373c169-8f19-4366-a716-a0103ce96b3e", "code" : "NIL002003", "name" : "预计负债", "description" : null, @@ -4769,7 +4769,7 @@ "order" : 120, "tab" : 1 }, { - "id" : "79bd0d65-f5ca-45ec-b985-0ff65d8cde28", + "id" : "053005e2-4dfc-4eb3-8344-aea7f19b0455", "code" : "NIL002004", "name" : "其他非流动负债", "description" : null, @@ -4783,7 +4783,7 @@ "order" : 121, "tab" : 1 }, { - "id" : "fdfce430-5a11-46e2-8a54-8a114242d060", + "id" : "ef007d64-16c2-4779-b61d-d20ba50c49b8", "code" : "NIL002T", "name" : "非流动负债合计", "description" : null, @@ -4797,7 +4797,7 @@ "order" : 122, "tab" : 2 }, { - "id" : "ac6319fd-8d01-41fa-a9ec-c8a9284ae966", + "id" : "e526b38d-743a-4ccd-8c4d-9cde4f4f1b1a", "code" : "NIL003", "name" : "受托代理负债", "description" : null, @@ -4811,7 +4811,7 @@ "order" : 123, "tab" : 0 }, { - "id" : "a3d49c38-9559-43ef-b468-65abe7b895d6", + "id" : "a750c5e6-5157-40db-b631-794c4348c05f", "code" : "NILT", "name" : "负债合计", "description" : null, @@ -4825,7 +4825,7 @@ "order" : 124, "tab" : 3 }, { - "id" : "9902b78c-65c0-4d79-86f7-0b5577e58ab0", + "id" : "af56b6ee-1469-42d9-9dee-d2636cd18eb1", "code" : "NIN", "name" : "净资产:", "description" : null, @@ -4839,7 +4839,7 @@ "order" : 125, "tab" : 0 }, { - "id" : "51e1f4e4-c13f-4ebf-a135-f6ecc9f34854", + "id" : "91cf59c5-d27f-4dcc-8dbc-b8d82fdb42d8", "code" : "NIN001", "name" : "累计盈余", "description" : null, @@ -4853,7 +4853,7 @@ "order" : 126, "tab" : 1 }, { - "id" : "c2f51098-a528-47a7-ba5e-24446b7b7a99", + "id" : "5256a81d-5e5e-4665-93c6-89432e01a5c9", "code" : "NIN002", "name" : "专用基金", "description" : null, @@ -4867,7 +4867,7 @@ "order" : 127, "tab" : 1 }, { - "id" : "76fbdea2-63d6-4269-a1e0-a6cc25f51c73", + "id" : "a25884ed-e10c-46ee-8ea5-b45fd2a3ff78", "code" : "NIN003", "name" : "权益法调整", "description" : null, @@ -4881,7 +4881,7 @@ "order" : 128, "tab" : 1 }, { - "id" : "4a5bbf7d-3d25-4dd8-97ee-4be31194829b", + "id" : "267dee8b-313e-4b2e-9298-42fdc1f9a7c6", "code" : "NIN004", "name" : "无偿调拨净资产*", "description" : null, @@ -4895,7 +4895,7 @@ "order" : 129, "tab" : 1 }, { - "id" : "b9c44def-2109-4909-b12e-3f774afbbd2f", + "id" : "b1ef8caf-79bc-431f-86a2-be549fa2b2eb", "code" : "NIN005", "name" : "本期盈余*", "description" : null, @@ -4909,7 +4909,7 @@ "order" : 130, "tab" : 1 }, { - "id" : "70c4b236-c31a-42f0-aa7b-7cf1a2054de3", + "id" : "778c0f81-19aa-4ece-8e39-40bdc902f757", "code" : "NINT", "name" : "净资产合计", "description" : null, @@ -4923,7 +4923,7 @@ "order" : 131, "tab" : 2 }, { - "id" : "a15fec5e-fb24-4074-8da8-06019ffbd55a", + "id" : "4e32cd45-d17c-4c32-8ddc-55a1b3aec77c", "code" : "NILNT", "name" : "负债和净资产总计", "description" : null, @@ -4940,7 +4940,7 @@ } ] }, { "type" : "FOLDER", - "id" : "59bac09c-f26e-42b2-9c6b-5ff4591a3ece", + "id" : "cc2eb3d6-fffd-45aa-8c9a-12c7fcaaef54", "type" : "FOLDER", "code" : "D1731642592731", "name" : "一般企业", @@ -4950,7 +4950,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "935e226e-2890-4650-8a1e-d4458fcbe255", + "id" : "76098f32-ec20-4516-a9b7-8918e1b864d5", "type" : "UD_JAVA_CLASS", "code" : "D1731642643607", "name" : "一般企业", @@ -4960,7 +4960,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "7b7cbb80-830d-4861-9113-e3689264937e", + "id" : "7b1bd2ce-710a-429f-a36b-78fa7e2be3fb", "code" : "NCA001", "name" : "流动资产:", "description" : null, @@ -4974,7 +4974,7 @@ "order" : 1, "tab" : 0 }, { - "id" : "87e35328-7560-4d9f-9a39-ceb893cda7a5", + "id" : "541adf3d-58c8-45e2-8ca4-f3765325ccdf", "code" : "NCA001001", "name" : "货币资金", "description" : null, @@ -4988,7 +4988,7 @@ "order" : 2, "tab" : 1 }, { - "id" : "c6fd0068-8137-4a53-a0a8-3ff1000b2291", + "id" : "e502278b-02ac-4eb3-8394-2e1f1f39a77f", "code" : "NCA001002", "name" : "交易性金融资产", "description" : null, @@ -5002,7 +5002,7 @@ "order" : 3, "tab" : 1 }, { - "id" : "8702a8f7-b69d-40a1-b1b0-bd618000eabb", + "id" : "5dd49a24-469b-4bab-b86b-85fffd2fd352", "code" : "NCA001003", "name" : "衍生金融资产", "description" : null, @@ -5016,7 +5016,7 @@ "order" : 4, "tab" : 1 }, { - "id" : "c6264f80-ebbd-4dbc-a29e-d3da8ab1dd9e", + "id" : "062cb627-f477-409c-b5dd-82d97774a5e9", "code" : "NCA001004", "name" : "应收票据", "description" : null, @@ -5030,7 +5030,7 @@ "order" : 5, "tab" : 1 }, { - "id" : "790c18e6-4e40-4661-86c1-83240a3057bc", + "id" : "9f65ae95-e15a-48fc-a55a-7ac7c3e0c38c", "code" : "NCA001005", "name" : "应收账款", "description" : null, @@ -5044,7 +5044,7 @@ "order" : 6, "tab" : 1 }, { - "id" : "6580beab-fb11-4e1e-b095-dca61c7b4933", + "id" : "cf369370-ffda-4f0c-a154-fe94c331320e", "code" : "NCA001006", "name" : "应收款项融资", "description" : null, @@ -5058,7 +5058,7 @@ "order" : 7, "tab" : 1 }, { - "id" : "c67c7974-e759-434e-823b-140cf920bd15", + "id" : "4dcd3978-24dd-4cb6-a887-746ca3cacd15", "code" : "NCA001007", "name" : "预付款项", "description" : null, @@ -5072,7 +5072,7 @@ "order" : 8, "tab" : 1 }, { - "id" : "79cb4a1a-9d2c-4317-bf38-ea11cdabfa9f", + "id" : "f9ccec39-bae0-4293-9ee6-bf1265c92ced", "code" : "NCA001008", "name" : "其他应收款", "description" : null, @@ -5086,7 +5086,7 @@ "order" : 9, "tab" : 1 }, { - "id" : "95d40fdd-9050-40ee-affe-88c03454c631", + "id" : "565c4d14-552a-447d-8243-9615029c56e6", "code" : "NCA001009", "name" : "存货", "description" : null, @@ -5100,7 +5100,7 @@ "order" : 10, "tab" : 1 }, { - "id" : "45833a86-8fba-4e89-9014-dc4b8b561339", + "id" : "c687d2d6-a9d3-4060-8a7b-4f7512840a5f", "code" : "NCA001010", "name" : "合同资产", "description" : null, @@ -5114,7 +5114,7 @@ "order" : 11, "tab" : 1 }, { - "id" : "695a940a-2d9c-4f89-950b-8166b72abe41", + "id" : "3336c3b1-e974-47b5-9a58-7ed233873f07", "code" : "NCA001011", "name" : "持有待售资产", "description" : null, @@ -5128,7 +5128,7 @@ "order" : 12, "tab" : 1 }, { - "id" : "94bc06c5-d270-4af2-ab76-18677606a346", + "id" : "6e8f51be-2fa2-46e5-8b93-7eaf6948d03e", "code" : "NCA001012", "name" : "一年内到期的非流动资产", "description" : null, @@ -5142,7 +5142,7 @@ "order" : 13, "tab" : 1 }, { - "id" : "e90d1762-de16-4377-92ba-41974c73da86", + "id" : "428f45d3-24fa-4b8c-bd0c-46f1502f3e33", "code" : "NCA001013", "name" : "其他流动资产", "description" : null, @@ -5156,7 +5156,7 @@ "order" : 14, "tab" : 1 }, { - "id" : "5d9c786a-6b0f-4bea-8dbe-fed3f192c319", + "id" : "c0068953-8321-4bc7-95e8-38dc9b4b9dfc", "code" : "NCA001T", "name" : "流动资产合计", "description" : null, @@ -5170,7 +5170,7 @@ "order" : 15, "tab" : 2 }, { - "id" : "d5f4f6fa-a6c9-4760-9b77-301fb7e4e7a3", + "id" : "1e0b3e2a-a528-43d4-b1ca-c67491eee9e9", "code" : "NCA002", "name" : "非流动资产:", "description" : null, @@ -5184,7 +5184,7 @@ "order" : 16, "tab" : 0 }, { - "id" : "e5ea0eca-d6f3-47fd-98a7-a6e9cd0660ca", + "id" : "a18a3207-ae37-44e9-ab23-c59512598103", "code" : "NCA002001", "name" : "债权投资", "description" : null, @@ -5198,7 +5198,7 @@ "order" : 17, "tab" : 1 }, { - "id" : "cd521145-8774-4615-bcd1-f0e7d658ae21", + "id" : "2e18f149-1999-4192-b29a-9037ea587ab9", "code" : "NCA002002", "name" : "其他债权投资", "description" : null, @@ -5212,7 +5212,7 @@ "order" : 18, "tab" : 1 }, { - "id" : "ecf0572c-2c52-4fb8-b7de-2e3c723b26a0", + "id" : "bd71ab0d-a023-48ee-90e2-b1818adba2c3", "code" : "NCA002003", "name" : "长期应收款", "description" : null, @@ -5226,7 +5226,7 @@ "order" : 19, "tab" : 1 }, { - "id" : "7bbd4029-12c0-4811-8f36-e4f283e9ee64", + "id" : "15a1d152-5371-4604-b847-24de90209da3", "code" : "NCA002004", "name" : "长期股权投资", "description" : null, @@ -5240,7 +5240,7 @@ "order" : 20, "tab" : 1 }, { - "id" : "237f8974-cb75-46aa-9fc2-b41c2aaaf73f", + "id" : "75f7dc33-71ce-4dd8-a5e2-45013cefc724", "code" : "NCA002005", "name" : "其他权益工具投资", "description" : null, @@ -5254,7 +5254,7 @@ "order" : 21, "tab" : 1 }, { - "id" : "5ed482cb-55df-478d-a551-549299c39597", + "id" : "5edcd2a8-5dc5-4a8b-85a1-346d65027711", "code" : "NCA002006", "name" : "其他非流动金融资产", "description" : null, @@ -5268,7 +5268,7 @@ "order" : 22, "tab" : 1 }, { - "id" : "9ada7bf1-eea0-45bb-87b6-8ff5bce2cf18", + "id" : "41737bf1-6249-4d6f-9fe5-85213524f449", "code" : "NCA002007", "name" : "投资性房地产", "description" : null, @@ -5282,7 +5282,7 @@ "order" : 23, "tab" : 1 }, { - "id" : "d717142c-844b-4f13-b626-a5eb02ccdf41", + "id" : "8a86ae08-2bd5-47e0-a0cb-d14554aa3845", "code" : "NCA002008", "name" : "固定资产", "description" : null, @@ -5296,7 +5296,7 @@ "order" : 24, "tab" : 1 }, { - "id" : "74a663a6-59f6-4738-b7b4-745777b40e81", + "id" : "56213dca-cb9e-486b-a4f3-d5b8cac856c3", "code" : "NCA002009", "name" : "在建工程", "description" : null, @@ -5310,7 +5310,7 @@ "order" : 25, "tab" : 1 }, { - "id" : "33d86250-a729-421c-bcd7-be6a3a691bf7", + "id" : "76071257-96c3-4c72-9635-c2684af9df66", "code" : "NCA002010", "name" : "生产性生物资产", "description" : null, @@ -5324,7 +5324,7 @@ "order" : 26, "tab" : 1 }, { - "id" : "035b8df7-201b-4653-91c6-0cf3764228e8", + "id" : "bce4990c-85c9-4d05-b7b0-e99402661281", "code" : "NCA002011", "name" : "油气资产", "description" : null, @@ -5338,7 +5338,7 @@ "order" : 27, "tab" : 1 }, { - "id" : "aecb33ac-ecf2-4632-ad7d-bdb5f6220c58", + "id" : "684242fb-be1b-4bf0-b378-9a72eecc453b", "code" : "NCA002012", "name" : "使用权资产", "description" : null, @@ -5352,7 +5352,7 @@ "order" : 28, "tab" : 1 }, { - "id" : "b40d04b3-7ea6-427d-bb17-0c23c150b905", + "id" : "32a03149-4f2d-4934-83f0-482c5fedcc67", "code" : "NCA002013", "name" : "无形资产", "description" : null, @@ -5366,7 +5366,7 @@ "order" : 29, "tab" : 1 }, { - "id" : "a3815777-920f-41d4-b399-a541dbc4f0fd", + "id" : "6dd9d0e3-fca1-4c37-8d01-37a93382eba2", "code" : "NCA002014", "name" : "开发支出", "description" : null, @@ -5380,7 +5380,7 @@ "order" : 30, "tab" : 1 }, { - "id" : "fb72bd5b-387e-4231-82be-c5fc8fa33525", + "id" : "35f402e1-9bc1-46bd-bacf-dba8cdafc82e", "code" : "NCA002015", "name" : "商誉", "description" : null, @@ -5394,7 +5394,7 @@ "order" : 31, "tab" : 1 }, { - "id" : "2df66c7f-1d30-428d-8d27-b7e07ee7615c", + "id" : "75638b3a-22d1-44f9-bbbc-1aa8c41e5925", "code" : "NCA002016", "name" : "长期待摊费用", "description" : null, @@ -5408,7 +5408,7 @@ "order" : 32, "tab" : 1 }, { - "id" : "b615a8f8-f150-4a11-b23b-fe7e9d629855", + "id" : "ad395685-fe9b-4e86-8d50-4f8ae03143a9", "code" : "NCA002017", "name" : "递延所得税资产", "description" : null, @@ -5422,7 +5422,7 @@ "order" : 33, "tab" : 1 }, { - "id" : "81fcfe43-7cfd-46bd-a48e-5735803f04f7", + "id" : "190ec728-a3f0-4ecb-a470-0f21aeee1322", "code" : "NCA002018", "name" : "其他非流动资产", "description" : null, @@ -5436,7 +5436,7 @@ "order" : 34, "tab" : 1 }, { - "id" : "fa6fccea-5a76-4907-aed4-ad4ebec62674", + "id" : "5e6dcb95-8fa1-4413-9f02-8bd171d20c3e", "code" : "NCA002T", "name" : "非流动资产合计", "description" : null, @@ -5450,7 +5450,7 @@ "order" : 35, "tab" : 2 }, { - "id" : "1afd121a-f90a-4e2d-9feb-8987bbf074e6", + "id" : "6a0db3d2-e08e-4805-894b-4baf3e390f7a", "code" : "NCAT", "name" : "资产总计", "description" : null, @@ -5464,7 +5464,7 @@ "order" : 36, "tab" : 3 }, { - "id" : "92e3cfd7-a287-4d2e-a8b7-1099eaf126d6", + "id" : "2cab6f32-afec-4f8a-a006-408425b6f29b", "code" : "NCC001", "name" : "一、经营活动产生的现金流量:", "description" : null, @@ -5478,7 +5478,7 @@ "order" : 37, "tab" : 0 }, { - "id" : "51bfc5c0-b2d6-433f-a780-95b2d2c80772", + "id" : "11571d1d-95df-427b-affb-42a0e09e87d2", "code" : "NCC001001", "name" : "销售商品、提供劳务收到的现金", "description" : null, @@ -5492,7 +5492,7 @@ "order" : 38, "tab" : 1 }, { - "id" : "45c513cc-6a99-414f-b672-49f962a6fc68", + "id" : "8cc1e7af-6bf6-4250-b431-9c1200368611", "code" : "NCC001002", "name" : "收到的税费返还", "description" : null, @@ -5506,7 +5506,7 @@ "order" : 39, "tab" : 1 }, { - "id" : "f2c8e8b4-ae07-4a0a-a9af-e5225e31e9a9", + "id" : "7a22bb7e-9c07-4435-96bf-c70704a43a2d", "code" : "NCC001003", "name" : "收到其他与经营活动有关的现金", "description" : null, @@ -5520,7 +5520,7 @@ "order" : 40, "tab" : 1 }, { - "id" : "a99824d4-9562-47ad-923b-e569ae018918", + "id" : "0f90d93b-4e72-4735-a3c9-7a32adde92ca", "code" : "NCC001STI", "name" : "经营活动现金流入小计", "description" : null, @@ -5534,7 +5534,7 @@ "order" : 41, "tab" : 2 }, { - "id" : "80fa0191-f7cf-4a12-aeaa-839eefd67d50", + "id" : "1b966592-6707-4e6f-82c5-49242cca2309", "code" : "NCC001004", "name" : "购买商品、接受劳务支付的现金", "description" : null, @@ -5548,7 +5548,7 @@ "order" : 42, "tab" : 1 }, { - "id" : "55704631-c293-4095-8ed9-c55dcb8472b7", + "id" : "d90d455b-34f1-4319-9262-61230b2e4360", "code" : "NCC001005", "name" : "支付给职工以及为职工支付的现金", "description" : null, @@ -5562,7 +5562,7 @@ "order" : 43, "tab" : 1 }, { - "id" : "370259dc-430f-4f3d-b8b1-ae2caeae9fe5", + "id" : "13ea88c7-d8f0-4e55-afff-1ded548be7c6", "code" : "NCC001006", "name" : "支付的各项税费", "description" : null, @@ -5576,7 +5576,7 @@ "order" : 44, "tab" : 1 }, { - "id" : "e9000baa-82d9-4670-9aba-70ce7a45a77e", + "id" : "20279760-eaef-43fc-8174-a5ff4d47eb3c", "code" : "NCC001007", "name" : "支付其他与经营活动有关的现金", "description" : null, @@ -5590,7 +5590,7 @@ "order" : 45, "tab" : 1 }, { - "id" : "2cbb64cc-c71f-4a92-8194-b2c7460825a0", + "id" : "9f1ecf1d-c710-40ae-ac69-9095b019ae70", "code" : "NCC001STO", "name" : "经营活动现金流出小计", "description" : null, @@ -5604,7 +5604,7 @@ "order" : 46, "tab" : 2 }, { - "id" : "a92cc565-f788-4799-8b9f-f26c27a84f24", + "id" : "e17d8b5a-9f41-4de9-af59-cea7fbdcafd2", "code" : "NCC001T", "name" : "经营活动产生的现金流量净额", "description" : null, @@ -5618,7 +5618,7 @@ "order" : 47, "tab" : 3 }, { - "id" : "cf9b6afd-168b-40d4-bf82-aded9c972066", + "id" : "a4adc168-6c71-4c2c-8f1f-57db9276741a", "code" : "NCC002", "name" : "二、投资活动产生的现金流量:", "description" : null, @@ -5632,7 +5632,7 @@ "order" : 48, "tab" : 0 }, { - "id" : "be855eba-5001-4928-be70-c676ec7a9f8b", + "id" : "e7a4b827-feda-4346-adba-aba264bf1943", "code" : "NCC002001", "name" : "收回投资收到的现金", "description" : null, @@ -5646,7 +5646,7 @@ "order" : 49, "tab" : 1 }, { - "id" : "87b42b8b-713b-4ff6-ad89-d7683e37366d", + "id" : "e3edb3dc-e695-46d8-8203-d6dd8ca538f4", "code" : "NCC002002", "name" : "取得投资收益收到的现金", "description" : null, @@ -5660,7 +5660,7 @@ "order" : 50, "tab" : 1 }, { - "id" : "8fac82bf-3e77-4a00-8dcc-ac7d6375ab08", + "id" : "9e33d98e-f013-49ea-83d1-acef9b5be28e", "code" : "NCC002003", "name" : "处置固定资产、无形资产和其他长期资产收回的现金净额", "description" : null, @@ -5674,7 +5674,7 @@ "order" : 51, "tab" : 1 }, { - "id" : "d3ca9e52-ea93-4fc8-aa67-d103722a48fd", + "id" : "00d04850-dc92-4958-8901-fea336f25b5a", "code" : "NCC002004", "name" : "处置子公司及其他营业单位收到的现金净额", "description" : null, @@ -5688,7 +5688,7 @@ "order" : 52, "tab" : 1 }, { - "id" : "8eb09798-620f-4ba6-ab5a-44d361e30534", + "id" : "0546fcc0-c46c-4cbd-93c8-49f6d04daad6", "code" : "NCC002005", "name" : "收到其他与投资活动有关的现金", "description" : null, @@ -5702,7 +5702,7 @@ "order" : 53, "tab" : 1 }, { - "id" : "3d501e06-2113-47b3-9cae-85215008abaf", + "id" : "802c72d2-493f-4b74-95a7-87129094a30e", "code" : "NCC002STI", "name" : "投资活动现金流入小计", "description" : null, @@ -5716,7 +5716,7 @@ "order" : 54, "tab" : 2 }, { - "id" : "b9ed288f-62fd-4c1d-9159-1535a60b48ba", + "id" : "074b04ac-e496-4ec7-a06a-a1fbef099f3f", "code" : "NCC002006", "name" : "购建固定资产、无形资产和其他长期资产支付的现金", "description" : null, @@ -5730,7 +5730,7 @@ "order" : 55, "tab" : 1 }, { - "id" : "a476f6d1-b7d6-4fc5-ad54-7723dca9bced", + "id" : "e37eb0b8-8c62-4709-a74e-7991d2dfc5be", "code" : "NCC002007", "name" : "投资支付的现金", "description" : null, @@ -5744,7 +5744,7 @@ "order" : 56, "tab" : 1 }, { - "id" : "95c2b257-5837-4b4e-8039-c22f60d27d21", + "id" : "16fb0f90-9291-445c-8822-1dbd55edf8cb", "code" : "NCC002008", "name" : "取得子公司及其他营业单位支付的现金净额", "description" : null, @@ -5758,7 +5758,7 @@ "order" : 57, "tab" : 1 }, { - "id" : "b9ff4778-6867-4250-9c4b-b575e429c722", + "id" : "ed9a085b-0a4d-49ef-a700-0095a6222198", "code" : "NCC002009", "name" : "支付其他与投资活动有关的现金", "description" : null, @@ -5772,7 +5772,7 @@ "order" : 58, "tab" : 1 }, { - "id" : "1bf60035-6f9e-4ed4-9435-cc99e829c3fc", + "id" : "6b63394f-d027-42a0-8024-fc309f9b64d1", "code" : "NCC002STO", "name" : "投资活动现金流出小计", "description" : null, @@ -5786,7 +5786,7 @@ "order" : 59, "tab" : 2 }, { - "id" : "24b16d2e-8743-42fa-abe6-d066acedae6f", + "id" : "3cedda56-fa14-4d7f-ad6a-3695cb338681", "code" : "NCC002T", "name" : "投资活动产生的现金流量净额", "description" : null, @@ -5800,7 +5800,7 @@ "order" : 60, "tab" : 3 }, { - "id" : "962e5581-527c-4074-a244-eae63a0fba22", + "id" : "e10760ec-6852-40b7-a9c0-fadda33d0907", "code" : "NCC003", "name" : "三、筹资活动产生的现金流量:", "description" : null, @@ -5814,7 +5814,7 @@ "order" : 61, "tab" : 0 }, { - "id" : "6a4785a8-0fda-417b-b624-5ff835961f39", + "id" : "255d13cd-f617-4125-a5d1-d07d36b17d5b", "code" : "NCC003001", "name" : "吸收投资收到的现金", "description" : null, @@ -5828,7 +5828,7 @@ "order" : 62, "tab" : 1 }, { - "id" : "f44aad1f-4044-4f08-bed1-38e759a60175", + "id" : "3da380d6-ab28-4ced-83e4-ff13b7e43330", "code" : "NCC003002", "name" : "取得借款收到的现金", "description" : null, @@ -5842,7 +5842,7 @@ "order" : 63, "tab" : 1 }, { - "id" : "21becb12-715c-4f1a-b531-e4724fc11444", + "id" : "df38cc57-fdeb-4785-b3d1-deccc781060b", "code" : "NCC003003", "name" : "收到其他与筹资活动有关的现金", "description" : null, @@ -5856,7 +5856,7 @@ "order" : 64, "tab" : 1 }, { - "id" : "9b857b74-e23e-4bf8-86df-e81a73eb2ddf", + "id" : "cc275d80-253b-48fe-960e-3c8db47e58c9", "code" : "NCC003STI", "name" : "筹资活动现金流入小计", "description" : null, @@ -5870,7 +5870,7 @@ "order" : 65, "tab" : 2 }, { - "id" : "b72c2bab-3497-4016-9b62-e810925f011b", + "id" : "024f700a-1901-4594-9a31-de9bb86499a1", "code" : "NCC003004", "name" : "偿还债务支付的现金", "description" : null, @@ -5884,7 +5884,7 @@ "order" : 66, "tab" : 1 }, { - "id" : "8585f39b-8b17-4884-9f94-1980671559ec", + "id" : "6f0e6abd-cbc8-45d1-9cc5-90f8fc17eafa", "code" : "NCC003005", "name" : "分配股利、利润或偿付利息支付的现金", "description" : null, @@ -5898,7 +5898,7 @@ "order" : 67, "tab" : 1 }, { - "id" : "cfa03121-8ef3-4546-b7af-21694a737a11", + "id" : "79100415-000b-4c29-ba97-ffa63d3f0a4c", "code" : "NCC003006", "name" : "支付其他与筹资活动有关的现金", "description" : null, @@ -5912,7 +5912,7 @@ "order" : 68, "tab" : 1 }, { - "id" : "e03528ce-cfb2-43e7-a0fc-1b78670fc626", + "id" : "28c3328c-dd02-402f-a8f3-55052bea319f", "code" : "NCC003STO", "name" : "筹资活动现金流出小计", "description" : null, @@ -5926,7 +5926,7 @@ "order" : 69, "tab" : 2 }, { - "id" : "522ffd15-2d2d-4c1e-bec4-3113e8738776", + "id" : "11b3e604-f22c-40a9-b7f1-57de348c9709", "code" : "NCC003T", "name" : "筹资活动产生的现金流量净额", "description" : null, @@ -5940,7 +5940,7 @@ "order" : 70, "tab" : 3 }, { - "id" : "2094d9d5-c770-46da-939e-1d09e8e6f684", + "id" : "02759566-f731-45c2-bb59-9ec4956c0495", "code" : "NCC004", "name" : "四、汇率变动对现金及现金等价物的影响", "description" : null, @@ -5954,7 +5954,7 @@ "order" : 71, "tab" : 0 }, { - "id" : "c602deab-9f6c-4079-8127-49db42cd8025", + "id" : "5049a158-7685-4638-bdde-6c05ac27b7db", "code" : "NCC005", "name" : "五、现金及现金等价物净增加额", "description" : null, @@ -5968,7 +5968,7 @@ "order" : 72, "tab" : 0 }, { - "id" : "48372839-de95-4abd-888a-66c3425f2454", + "id" : "442f3bd8-0210-4be7-b7eb-e7ca26596c77", "code" : "NCC005001", "name" : "加:期初现金及现金等价物余额", "description" : null, @@ -5982,7 +5982,7 @@ "order" : 73, "tab" : 1 }, { - "id" : "268cd4da-87f6-4748-9256-6f346db4fd8d", + "id" : "bb3e4eb6-f74c-4cf5-ac32-4f8942097bb3", "code" : "NCC006", "name" : "六、期末现金及现金等价物余额", "description" : null, @@ -5996,7 +5996,7 @@ "order" : 74, "tab" : 0 }, { - "id" : "3e42295e-83e4-4399-8084-232e744652d1", + "id" : "3332851c-8adc-4200-a37f-4a5dfafe4306", "code" : "NCL001", "name" : "流动负债:", "description" : null, @@ -6010,7 +6010,7 @@ "order" : 75, "tab" : 0 }, { - "id" : "df4a5e19-7693-4c63-bf0f-74f0863ba720", + "id" : "a857aff0-b688-4bfe-a1be-4954f2fc5906", "code" : "NCL001001", "name" : "短期借款", "description" : null, @@ -6024,7 +6024,7 @@ "order" : 76, "tab" : 1 }, { - "id" : "1c488106-c76b-4493-8fda-2527b9adb0b3", + "id" : "90e66a47-b6ef-4a95-ad0a-bc7c7115b7b2", "code" : "NCL001002", "name" : "交易性金融负债", "description" : null, @@ -6038,7 +6038,7 @@ "order" : 77, "tab" : 1 }, { - "id" : "f3c3e563-09d9-43f0-8b26-f114cb44d6d6", + "id" : "69b8b071-be4f-4b54-b2ad-11fe00904921", "code" : "NCL001003", "name" : "衍生金融负债", "description" : null, @@ -6052,7 +6052,7 @@ "order" : 78, "tab" : 1 }, { - "id" : "9cf32eb8-c4ad-4bea-a8e8-734d7b160959", + "id" : "d8d51db5-bc0b-4c25-b7fb-993a9996dabc", "code" : "NCL001004", "name" : "应付票据", "description" : null, @@ -6066,7 +6066,7 @@ "order" : 79, "tab" : 1 }, { - "id" : "87baa6e0-0b0f-474f-9341-59169753b462", + "id" : "9fed949a-24fa-40bf-8b46-4107426dfac5", "code" : "NCL001005", "name" : "应付账款", "description" : null, @@ -6080,7 +6080,7 @@ "order" : 80, "tab" : 1 }, { - "id" : "44678d74-ba33-4e62-8fd3-79c1fd822357", + "id" : "d683d6f2-787c-4462-90ff-39e4d99500b5", "code" : "NCL001006", "name" : "预收款项", "description" : null, @@ -6094,7 +6094,7 @@ "order" : 81, "tab" : 1 }, { - "id" : "c6719c09-fd73-4b54-b11d-6159b5377871", + "id" : "316fc34f-6ab4-4d00-8873-e73eae9fcb5f", "code" : "NCL001007", "name" : "合同负债", "description" : null, @@ -6108,7 +6108,7 @@ "order" : 82, "tab" : 1 }, { - "id" : "e0a7df27-92e2-49e7-a171-c217fe2cded1", + "id" : "8c739792-3647-4224-943c-d034e37a1478", "code" : "NCL001008", "name" : "应付职工薪酬", "description" : null, @@ -6122,7 +6122,7 @@ "order" : 83, "tab" : 1 }, { - "id" : "4b56a673-6139-4ee7-b4c0-f0a3d5d0f120", + "id" : "e8aa0230-ce58-4e37-ba3a-3e6836038b18", "code" : "NCL001009", "name" : "应交税费", "description" : null, @@ -6136,7 +6136,7 @@ "order" : 84, "tab" : 1 }, { - "id" : "1315316d-412a-4ed9-a77b-ac4c3f26a482", + "id" : "bda6bfbc-2f41-48f0-b8fc-85ef1a1c6d7a", "code" : "NCL001010", "name" : "其他应付款", "description" : null, @@ -6150,7 +6150,7 @@ "order" : 85, "tab" : 1 }, { - "id" : "335a743e-7826-45ea-af36-fdb066e56a8b", + "id" : "024bf902-fa9b-4e93-abb1-e2527a7a2f72", "code" : "NCL001011", "name" : "持有待售负债", "description" : null, @@ -6164,7 +6164,7 @@ "order" : 86, "tab" : 1 }, { - "id" : "da06f4e7-ebb8-4b69-834e-31c567fa16a3", + "id" : "cca5bf75-2bc7-4f0e-b4e5-8b6f759e8430", "code" : "NCL001012", "name" : "一年内到期的非流动负债", "description" : null, @@ -6178,7 +6178,7 @@ "order" : 87, "tab" : 1 }, { - "id" : "c11f58f8-dec7-4325-a228-c073fd2ba2c1", + "id" : "cee48dec-19a6-4d32-94c4-f95ef755c5d1", "code" : "NCL001013", "name" : "其他流动负债", "description" : null, @@ -6192,7 +6192,7 @@ "order" : 88, "tab" : 1 }, { - "id" : "30e8aa44-7cc9-45e1-b5d3-0ade6fb44656", + "id" : "79c72bbb-5e9c-4727-a0d0-08d378ea9df6", "code" : "NCL001T", "name" : "流动负债合计", "description" : null, @@ -6206,7 +6206,7 @@ "order" : 89, "tab" : 2 }, { - "id" : "53f74acc-e80b-4112-a03b-10b3c7b0dbab", + "id" : "fa38622a-b63c-4e0e-8669-67852c2f0d8f", "code" : "NCL002", "name" : "非流动负债:", "description" : null, @@ -6220,7 +6220,7 @@ "order" : 90, "tab" : 0 }, { - "id" : "c3f9d731-3179-4d55-8fd0-7934d3abb042", + "id" : "38114c30-6dfb-4266-9a3c-6b2c9f88d35f", "code" : "NCL002001", "name" : "长期借款", "description" : null, @@ -6234,7 +6234,7 @@ "order" : 91, "tab" : 1 }, { - "id" : "097d9a07-2c3b-4abf-864b-04d712602710", + "id" : "e55021e4-b71b-4b04-881d-13a9e6494130", "code" : "NCL002002", "name" : "应付债券", "description" : null, @@ -6248,7 +6248,7 @@ "order" : 92, "tab" : 1 }, { - "id" : "6a11c01d-b917-4fc0-aa91-e0e72d8d4561", + "id" : "5882dabe-1a87-4ef4-a2b6-bee905394d66", "code" : "NCL00200201", "name" : "应付债券(其中:优先股)", "description" : null, @@ -6262,7 +6262,7 @@ "order" : 93, "tab" : 2 }, { - "id" : "9f68fd35-e94f-4fa3-98b2-3ae8fc22dbce", + "id" : "470c285d-eefb-4b12-9114-e9f2d07af868", "code" : "NCL00200202", "name" : "应付债券(其中:永续债)", "description" : null, @@ -6276,7 +6276,7 @@ "order" : 94, "tab" : 2 }, { - "id" : "9b7b1e1a-5f31-474e-b76d-8b55be6468cf", + "id" : "09e6bc8b-7554-4cc5-befb-fe2771a95b4a", "code" : "NCL002003", "name" : "租赁负债", "description" : null, @@ -6290,7 +6290,7 @@ "order" : 95, "tab" : 1 }, { - "id" : "d2147dbc-42f2-4e0e-a526-9ff1fc96cfbb", + "id" : "aaab0812-423b-4f3a-b29b-1966adfc0182", "code" : "NCL002004", "name" : "长期应付款", "description" : null, @@ -6304,7 +6304,7 @@ "order" : 96, "tab" : 1 }, { - "id" : "6a6834c5-8469-4707-bbae-847d73441b32", + "id" : "9d6fa8a9-0bd2-4b61-b209-8a781d308fd6", "code" : "NCL002005", "name" : "预计负债", "description" : null, @@ -6318,7 +6318,7 @@ "order" : 97, "tab" : 1 }, { - "id" : "ccbd76df-f4dc-44dc-9031-df937cd009a9", + "id" : "767ae7fc-91e5-4472-a068-ec99f1ef3aa1", "code" : "NCL002006", "name" : "递延收益", "description" : null, @@ -6332,7 +6332,7 @@ "order" : 98, "tab" : 1 }, { - "id" : "ead6e204-6f69-4c02-a778-4beece01ed5f", + "id" : "aa7881d9-53ab-48a4-998d-236ee7f6ac79", "code" : "NCL002007", "name" : "递延所得税负债", "description" : null, @@ -6346,7 +6346,7 @@ "order" : 99, "tab" : 1 }, { - "id" : "932cf956-44af-47de-a271-b028d4f17db0", + "id" : "a4cbaf7f-5db5-4d6a-8e71-62b9b54b2d5c", "code" : "NCL002008", "name" : "其他非流动负债", "description" : null, @@ -6360,7 +6360,7 @@ "order" : 100, "tab" : 1 }, { - "id" : "d0f919f0-bd92-4b4d-b159-ae0fe5245712", + "id" : "0344df18-e06a-4149-84ed-f31242b88c44", "code" : "NCL002T", "name" : "非流动负债合计", "description" : null, @@ -6374,7 +6374,7 @@ "order" : 101, "tab" : 2 }, { - "id" : "ef858329-9f4e-46b6-b65b-93a7e166e3f2", + "id" : "1fadc552-b87c-44a1-8634-734f06d9c653", "code" : "NCL0020080101", "name" : "负债合计", "description" : null, @@ -6388,7 +6388,7 @@ "order" : 102, "tab" : 3 }, { - "id" : "903dbbd4-ac3a-449b-b317-549c07959c7d", + "id" : "922b660f-2391-4144-9a00-daa5771eb154", "code" : "NCE001", "name" : "所有者权益(或股东权益):", "description" : null, @@ -6402,7 +6402,7 @@ "order" : 103, "tab" : 0 }, { - "id" : "d5d5a357-a00c-4a64-85d3-00cc6e79d1ba", + "id" : "62994d10-db16-434d-a4aa-8192ae008fee", "code" : "NCE001001", "name" : "实收资本(或股本)", "description" : null, @@ -6416,7 +6416,7 @@ "order" : 104, "tab" : 1 }, { - "id" : "5b1741af-aee8-49af-97e2-f7d06ee0e3a4", + "id" : "e6ddc998-1c0d-4dcf-ad98-4ea3079d4f35", "code" : "NCE001002", "name" : "其他权益工具", "description" : null, @@ -6430,7 +6430,7 @@ "order" : 105, "tab" : 1 }, { - "id" : "7ce3b368-9d8b-4790-9a18-92edf981c830", + "id" : "e67ed870-3625-42a6-9d61-31a7f71962f2", "code" : "NCE00100201", "name" : "其他权益工具(其中:优先股)", "description" : null, @@ -6444,7 +6444,7 @@ "order" : 106, "tab" : 2 }, { - "id" : "dc0d6e61-2123-4591-8aec-84cfb656d8ff", + "id" : "f2dfb1fd-f68f-417e-9b79-ca02654c2602", "code" : "NCE00100202", "name" : "其他权益工具(其中:永续债)", "description" : null, @@ -6458,7 +6458,7 @@ "order" : 107, "tab" : 2 }, { - "id" : "e9dcc134-4b7f-477e-8a87-31e00a703cb6", + "id" : "1136b9f2-b463-4532-b4de-fb29eb29cfea", "code" : "NCE001003", "name" : "资本公积", "description" : null, @@ -6472,7 +6472,7 @@ "order" : 108, "tab" : 1 }, { - "id" : "3e7cd4f5-502b-4e23-874b-65652eef9daa", + "id" : "bfeb5f8c-84f4-4297-9968-6970faccf2a1", "code" : "NCE001004", "name" : "减:库存股", "description" : null, @@ -6486,7 +6486,7 @@ "order" : 109, "tab" : 1 }, { - "id" : "129c2af9-a25e-46c5-8a8d-878692034ffe", + "id" : "ecf4d390-c762-4e92-a261-e620a1b30b27", "code" : "NCE001005", "name" : "其他综合收益", "description" : null, @@ -6500,7 +6500,7 @@ "order" : 110, "tab" : 1 }, { - "id" : "7beebfd7-8d73-4b5d-8050-9c4e92d460c7", + "id" : "ecbe3d01-9043-4211-adbd-27bb316d9f78", "code" : "NCE001006", "name" : "专项储备", "description" : null, @@ -6514,7 +6514,7 @@ "order" : 111, "tab" : 1 }, { - "id" : "7e5d10f2-3e9e-45ee-ad7f-cd7190353568", + "id" : "321debde-6fcb-4b76-9af2-c5e4beef00d4", "code" : "NCE001007", "name" : "盈余公积", "description" : null, @@ -6528,7 +6528,7 @@ "order" : 112, "tab" : 1 }, { - "id" : "8fc41eff-5ab1-41ee-b900-91dd1fa8b25a", + "id" : "59a64b75-713d-47cc-b9e3-7707f49ea6e7", "code" : "NCE001008", "name" : "未分配利润", "description" : null, @@ -6542,7 +6542,7 @@ "order" : 113, "tab" : 1 }, { - "id" : "b323f86c-b62e-4cdb-940e-0369ab7449c2", + "id" : "c86270ef-a50c-4f88-bd48-8801e692109e", "code" : "NCE001T", "name" : "所有者权益(或股东权益)合计", "description" : null, @@ -6556,7 +6556,7 @@ "order" : 114, "tab" : 2 }, { - "id" : "2721039f-de06-4539-bdc1-fba79a71fa1f", + "id" : "d886d6e4-cef6-4c7c-b9b1-c59cb1f37dea", "code" : "NCLET", "name" : "负债和所有者权益(或股东权益)总计", "description" : null, @@ -6570,7 +6570,7 @@ "order" : 115, "tab" : 3 }, { - "id" : "ec3d9999-76be-4f5a-9d5e-a3840a821751", + "id" : "a40897cb-9b6e-40cb-9b49-88b91edc09ae", "code" : "NCI001", "name" : "一、营业收入", "description" : null, @@ -6584,7 +6584,7 @@ "order" : 116, "tab" : 0 }, { - "id" : "3baa34ad-6185-403d-b582-9681fb218b78", + "id" : "e3cbb265-cd31-44fc-99dc-653ee1c06930", "code" : "NCI001001", "name" : "减:营业成本", "description" : null, @@ -6598,7 +6598,7 @@ "order" : 117, "tab" : 1 }, { - "id" : "5df0540c-c47f-410f-b2fa-ff0ca84b7566", + "id" : "561214f8-720b-4fb6-aabe-0c4df7d4ddac", "code" : "NCI00100101", "name" : "税金及附加", "description" : null, @@ -6612,7 +6612,7 @@ "order" : 118, "tab" : 2 }, { - "id" : "6f2dd5ed-e8cd-471c-abaf-3ef875394749", + "id" : "a8bad824-d1cf-4582-92f8-12390614d5ec", "code" : "NCI00100102", "name" : "销售费用", "description" : null, @@ -6626,7 +6626,7 @@ "order" : 119, "tab" : 2 }, { - "id" : "a542fe2e-3432-4186-9c60-0eca8ed44edf", + "id" : "6ef15472-6981-4cc2-94c3-45714a36429e", "code" : "NCI00100103", "name" : "管理费用", "description" : null, @@ -6640,7 +6640,7 @@ "order" : 120, "tab" : 2 }, { - "id" : "62ad3daa-14b1-4b82-b8f7-a530562b20fe", + "id" : "a4dfc7a4-2566-45de-8265-e768ef1432f3", "code" : "NCI00100104", "name" : "研发费用", "description" : null, @@ -6654,7 +6654,7 @@ "order" : 121, "tab" : 2 }, { - "id" : "24e034b6-6255-49d0-8ffe-c5db7890aa84", + "id" : "1a556b46-e9c7-4add-92e9-18ad896817d7", "code" : "NCI00100105", "name" : "财务费用", "description" : null, @@ -6668,7 +6668,7 @@ "order" : 122, "tab" : 2 }, { - "id" : "182f0ed0-054c-4509-a7e2-39ce746d0cbb", + "id" : "720485c5-76e2-4322-8637-fef065586eed", "code" : "NCI0010010501", "name" : "其中:利息费用", "description" : null, @@ -6682,7 +6682,7 @@ "order" : 123, "tab" : 3 }, { - "id" : "79192f2b-2a83-46f7-bd90-e0d4cab76cb6", + "id" : "1dd8df90-6eac-4547-a5ad-9a7ec218961d", "code" : "NCI0010010502", "name" : "利息收入", "description" : null, @@ -6696,7 +6696,7 @@ "order" : 124, "tab" : 5 }, { - "id" : "ecdc3ae9-a8d2-4d76-a569-623d497e9ccd", + "id" : "8c322ab3-450e-4460-af0f-3b0806a1daf2", "code" : "NCI001002", "name" : "加:其他收益", "description" : null, @@ -6710,7 +6710,7 @@ "order" : 125, "tab" : 1 }, { - "id" : "0452dbaf-cd22-42a8-b571-f8b8f15a07b6", + "id" : "a8bed149-7132-4cad-b583-17d2217e9af9", "code" : "NCI00100201", "name" : "投资收益(损失以“-”号填列)", "description" : null, @@ -6724,7 +6724,7 @@ "order" : 126, "tab" : 2 }, { - "id" : "19d8840e-5e85-48ae-bea4-22e8163f6104", + "id" : "79c34c13-e1f8-4cf2-8560-664abde3c725", "code" : "NCI0010020101", "name" : "其中:对联营企业和合营企业的投资收益", "description" : null, @@ -6738,7 +6738,7 @@ "order" : 127, "tab" : 3 }, { - "id" : "62b28d6d-4885-46b9-b079-aa5eeeeab389", + "id" : "020f79f9-d09f-4bbe-afd0-0aa3b2e63d87", "code" : "NCI0010020102", "name" : "以摊余成本计量的金融资产终止确认收益(损失以“-”号填列)", "description" : null, @@ -6752,7 +6752,7 @@ "order" : 128, "tab" : 5 }, { - "id" : "5378ee0e-e022-4077-8de6-15b0f78eaee3", + "id" : "b23f47e1-5528-4b64-8da3-91d10435491c", "code" : "NCI00100202", "name" : "净敞口套期收益(损失以“-”号填列)", "description" : null, @@ -6766,7 +6766,7 @@ "order" : 129, "tab" : 2 }, { - "id" : "50e2337e-478d-4e41-a4a9-05f3f71ae154", + "id" : "0c8eec10-b31a-4527-b189-d31fca92a22e", "code" : "NCI00100203", "name" : "公允价值变动收益(损失以“-”号填列)", "description" : null, @@ -6780,7 +6780,7 @@ "order" : 130, "tab" : 2 }, { - "id" : "7baf409d-1f06-483d-82be-1c9cd29a20aa", + "id" : "3d1ff9eb-5db1-4f02-9531-29d7226752a8", "code" : "NCI00100204", "name" : "信用减值损失(损失以“-”号填列)", "description" : null, @@ -6794,7 +6794,7 @@ "order" : 131, "tab" : 2 }, { - "id" : "f541adb6-23e9-49d1-8a94-e31011dada8c", + "id" : "17048b33-ed65-4125-8979-cdb5f82e35e8", "code" : "NCI00100205", "name" : "资产减值损失(损失以“-”号填列)", "description" : null, @@ -6808,7 +6808,7 @@ "order" : 132, "tab" : 2 }, { - "id" : "5ba4ac4e-fcf3-4d16-8723-3bcdd8e33b03", + "id" : "e655f1df-9b3f-4ac7-b5ff-daf3f0569713", "code" : "NCI00100206", "name" : "资产处置收益(损失以“-”号填列)", "description" : null, @@ -6822,7 +6822,7 @@ "order" : 133, "tab" : 2 }, { - "id" : "8816f602-e654-4688-ba3a-ce0c10ae3f6a", + "id" : "896cde34-86eb-415b-9a5f-934b20f95208", "code" : "NCI002", "name" : "二、营业利润(亏损以“-”号填列)", "description" : null, @@ -6836,7 +6836,7 @@ "order" : 134, "tab" : 0 }, { - "id" : "73250616-231d-43ca-8943-f50c436cb98e", + "id" : "5b9643e6-7953-4823-89b7-0ae19dc23870", "code" : "NCI002001", "name" : "加:营业外收入", "description" : null, @@ -6850,7 +6850,7 @@ "order" : 135, "tab" : 1 }, { - "id" : "bd0e75a7-2938-4a35-9dd5-4125534ed032", + "id" : "35de4109-8a1a-4895-bd10-91ff9017390a", "code" : "NCI002002", "name" : "减:营业外支出", "description" : null, @@ -6864,7 +6864,7 @@ "order" : 136, "tab" : 1 }, { - "id" : "13da6792-711b-447c-b351-cfa865140061", + "id" : "7153a486-a815-43cd-84f4-b0a34e6ecaf9", "code" : "NCI003", "name" : "三、利润总额(亏损总额以“-”号填列)", "description" : null, @@ -6878,7 +6878,7 @@ "order" : 137, "tab" : 0 }, { - "id" : "8d2161fe-1582-4585-a83a-ed689225bd06", + "id" : "f97a8d30-904e-4348-b077-f3ba9fccc5e8", "code" : "NCI003001", "name" : "减:所得税费用", "description" : null, @@ -6892,7 +6892,7 @@ "order" : 138, "tab" : 1 }, { - "id" : "0f9816f3-6fb1-45fb-bc92-43949897e033", + "id" : "35b59dea-666f-42ad-aeb9-466db487a2e3", "code" : "NCI004", "name" : "四、净利润(净亏损以“-”号填列)", "description" : null, @@ -6906,7 +6906,7 @@ "order" : 139, "tab" : 0 }, { - "id" : "94f4a12a-f0cc-4ca3-ab4e-b0d97bad1efb", + "id" : "810ebd8f-2f41-4f51-9daa-4af3135d9b4b", "code" : "NCI004001", "name" : "(一)持续经营净利润(净亏损以“-”号填列)", "description" : null, @@ -6920,7 +6920,7 @@ "order" : 140, "tab" : 1 }, { - "id" : "8d8649ee-8c4e-44c7-b4e8-2e94fc9553bc", + "id" : "ddce6f84-251d-4fb8-8235-c7fbaba6e6be", "code" : "NCI004002", "name" : "(二)终止经营净利润(净亏损以“-”号填列)", "description" : null, @@ -6934,7 +6934,7 @@ "order" : 141, "tab" : 1 }, { - "id" : "cb35d6a7-1c8c-4dd6-965d-1ead92467ff6", + "id" : "b4fe0bbc-c21a-436c-97b3-0fea6dea36f4", "code" : "NCI005", "name" : "五、其他综合收益的税后净额", "description" : null, @@ -6948,7 +6948,7 @@ "order" : 142, "tab" : 0 }, { - "id" : "8c3c9f6f-73e2-4eee-9ca1-3e9542291c4f", + "id" : "6fc0a08e-19c0-4d24-bf28-204406b4cb0c", "code" : "NCI005001", "name" : "(一)不能重分类进损益的其他综合收益", "description" : null, @@ -6962,7 +6962,7 @@ "order" : 143, "tab" : 1 }, { - "id" : "90fa73ab-f091-4eb0-add5-ee9d46410462", + "id" : "fd8649aa-17b5-450b-b10d-0cf6d473e81f", "code" : "NCI00500101", "name" : "1.重新计量设定受益计划变动额", "description" : null, @@ -6976,7 +6976,7 @@ "order" : 144, "tab" : 2 }, { - "id" : "d8fe86bf-eef9-4190-916d-1408a0b28662", + "id" : "1d9e6f5b-c110-4400-9ed6-8077f88efe63", "code" : "NCI00500102", "name" : "2.权益法下不能转损益的其他综合收益", "description" : null, @@ -6990,7 +6990,7 @@ "order" : 145, "tab" : 2 }, { - "id" : "7031472f-5ac5-4fcb-a119-b857a8983d2f", + "id" : "4ac2dd8c-7f0f-4c31-bddb-294accb9e798", "code" : "NCI00500103", "name" : "3.其他权益工具投资公允价值变动", "description" : null, @@ -7004,7 +7004,7 @@ "order" : 146, "tab" : 2 }, { - "id" : "9c72ede2-d9f2-45c3-97b9-981400bd76a5", + "id" : "74821f83-a1df-45b0-9bc5-a0f88deaf963", "code" : "NCI00500104", "name" : "4.企业自身信用风险公允价值变动", "description" : null, @@ -7018,7 +7018,7 @@ "order" : 147, "tab" : 2 }, { - "id" : "e7b18351-29b9-4837-b270-7b4a469efb4a", + "id" : "1bb9bad2-03ae-416e-84c4-46ed26eff9bc", "code" : "NCI005002", "name" : "(二)将重分类进损益的其他综合收益", "description" : null, @@ -7032,7 +7032,7 @@ "order" : 148, "tab" : 1 }, { - "id" : "93879a8d-6d97-4a50-8065-8b9e721aac92", + "id" : "88786c2e-31e9-4779-8277-87ba08040206", "code" : "NCI00500201", "name" : "1.权益法下可转损益的其他综合收益", "description" : null, @@ -7046,7 +7046,7 @@ "order" : 149, "tab" : 2 }, { - "id" : "fd962f66-8add-4764-bc58-f33b0bde58c7", + "id" : "068d6804-23b1-4657-9894-25978079ce1a", "code" : "NCI00500202", "name" : "2.其他债权投资公允价值变动", "description" : null, @@ -7060,7 +7060,7 @@ "order" : 150, "tab" : 2 }, { - "id" : "d6c06046-9f06-40c6-b8a0-b4c42e460abe", + "id" : "664c7a8d-8889-4238-9428-9bbbf746961b", "code" : "NCI00500203", "name" : "3.金融资产重分类计入其他综合收益的金额", "description" : null, @@ -7074,7 +7074,7 @@ "order" : 151, "tab" : 2 }, { - "id" : "5adecdf4-c01e-493f-8b24-8b3d570ffbfa", + "id" : "4c07db57-6299-4c74-aceb-62f7380cefae", "code" : "NCI00500204", "name" : "4.其他债权投资信用减值准备", "description" : null, @@ -7088,7 +7088,7 @@ "order" : 152, "tab" : 2 }, { - "id" : "d1ad7874-548a-46e8-8581-2f2efaa6d76a", + "id" : "50fb6b58-b6a9-4b32-8038-18d76593dbd1", "code" : "NCI00500205", "name" : "5.现金流量套期储备", "description" : null, @@ -7102,7 +7102,7 @@ "order" : 153, "tab" : 2 }, { - "id" : "e028ce7a-7cc9-45fb-a632-815103fdfe5c", + "id" : "606fd3da-2ab6-473b-9d2d-e546bdf16b18", "code" : "NCI00500206", "name" : "6.外币财务报表折算差额", "description" : null, @@ -7116,7 +7116,7 @@ "order" : 154, "tab" : 2 }, { - "id" : "a9ae705b-82f8-4293-84d4-1191df269092", + "id" : "fbaddff8-c27a-48ab-b616-599b5b1cb27b", "code" : "NCI006", "name" : "六、综合收益总额", "description" : null, @@ -7130,7 +7130,7 @@ "order" : 155, "tab" : 0 }, { - "id" : "2699a348-80d4-47e3-9a5e-7a02ca48cfa1", + "id" : "c1b435bf-7238-46c7-97a3-5db4406417f6", "code" : "NCI007", "name" : "七、每股收益:", "description" : null, @@ -7144,7 +7144,7 @@ "order" : 156, "tab" : 0 }, { - "id" : "f0ef3ffe-2cdd-4665-acab-e36106a08123", + "id" : "0b2678a4-d9ba-4e29-9bf5-c83d5ce96aed", "code" : "NCI007001", "name" : "(一)基本每股收益", "description" : null, @@ -7158,7 +7158,7 @@ "order" : 157, "tab" : 1 }, { - "id" : "cc937988-cb6c-4aa4-867f-6805c6347dc1", + "id" : "919e178c-af83-4a21-a144-f90f924dd8ee", "code" : "NCI007002", "name" : "(二)稀释每股收益", "description" : null, @@ -7177,7 +7177,7 @@ } ] }, { "type" : "FOLDER", - "id" : "314dddde-333f-492d-896d-7e9a1717142a", + "id" : "b439a837-e439-45c1-9d49-d7ba356f4878", "type" : "FOLDER", "code" : "D1731650473102", "name" : "客户信息", @@ -7187,7 +7187,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "af13b6be-4b13-444f-abb8-edef45d7383a", + "id" : "311484f5-5028-47fd-9d5f-5abbad22d1c4", "type" : "FOLDER", "code" : "D1731650325625", "name" : "个人客户信息", @@ -7197,7 +7197,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "b8331f10-c018-4ae5-a91a-871177f68977", + "id" : "f1ab20bd-56dd-4621-a452-406af0bbadf9", "type" : "UD_JAVA_CLASS", "code" : "D1731650356238", "name" : "个人客户基本信息", @@ -7207,9 +7207,9 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "a5e29b14-151b-417b-b19d-b524e35b4b30", - "code" : "OCCD", - "name" : "职业代码", + "id" : "9fa9b63e-6c96-495c-8604-8e03fc567c14", + "code" : "HLTH_SITU_CD", + "name" : "健康状况代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7221,9 +7221,9 @@ "order" : null, "tab" : null }, { - "id" : "bcd20e86-e948-44f0-8361-8fc65d9459b0", - "code" : "LGPSNCD", - "name" : "法人代码", + "id" : "c2c9ab97-0a46-4494-8f53-e71a843854dc", + "code" : "CUST_ID", + "name" : "客户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7235,9 +7235,9 @@ "order" : null, "tab" : null }, { - "id" : "ba23ccc2-ff9d-4e62-b605-bd28834f21eb", - "code" : "OCCD_TYPE_CD", - "name" : "职业类型代码", + "id" : "c1ff36ed-2b0a-4886-9551-97a66e0018ae", + "code" : "CERTNO", + "name" : "证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7249,9 +7249,9 @@ "order" : null, "tab" : null }, { - "id" : "b85b73fa-906e-4f5b-8fa3-12f26a271ceb", - "code" : "UNT_BELG_INDS_CD", - "name" : "单位所属行业代码", + "id" : "c1178eae-5c01-4cb0-bcaf-0146e03acb4e", + "code" : "CUST_MGT_STAFNO", + "name" : "管户员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7263,23 +7263,9 @@ "order" : null, "tab" : null }, { - "id" : "b767ee5b-ce68-464d-8a3d-8d7766a206ef", - "code" : "PSN_ANUINC", - "name" : "个人年收入", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : null, - "valueTypeIsList" : false, - "defaultValue" : null, - "valueCalculation" : "", - "order" : null, - "tab" : null - }, { - "id" : "b6049337-ebf4-4d0e-bef7-b36b644cfb26", - "code" : "RGST_ORG_ID", - "name" : "登记机构编号", + "id" : "c07e5838-cd85-436b-ae36-1996a45f4fb3", + "code" : "RSDC_ADMIN_DIV_CD", + "name" : "居住地行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7291,9 +7277,9 @@ "order" : null, "tab" : null }, { - "id" : "b43ef690-1b2a-48b4-b810-692918100dde", - "code" : "CUST_STAT_CD", - "name" : "客户状态代码", + "id" : "affe56b6-1608-46e8-b955-79c996f8dc9c", + "code" : "CLOS_ACCT_DT", + "name" : "销户日期", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7305,9 +7291,9 @@ "order" : null, "tab" : null }, { - "id" : "b07ad9ef-9230-4d12-8671-274564e66e68", - "code" : "GENDER_CD", - "name" : "性别代码", + "id" : "afd8e127-988a-4e69-9983-d2799315cf8d", + "code" : "FINAL_UPD_ORG_ID", + "name" : "最后更新机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7319,9 +7305,9 @@ "order" : null, "tab" : null }, { - "id" : "ae51217a-d86c-4cb5-a20d-83423af9ce55", - "code" : "ETHNIC_CD", - "name" : "民族代码", + "id" : "af1220e7-7129-4c92-830d-eb3c78509b54", + "code" : "CUST_EN_NM", + "name" : "客户英文名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7333,9 +7319,9 @@ "order" : null, "tab" : null }, { - "id" : "ab8f63bd-5344-4ade-a4ac-46a88aa379d0", - "code" : "SCSCTPYR_NM", - "name" : "社保缴纳单位名称", + "id" : "acd8e08b-1d7c-4663-9bd9-18139c44b4c5", + "code" : "CUST_HOME_ABROD_IND", + "name" : "境内外标识", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7347,7 +7333,7 @@ "order" : null, "tab" : null }, { - "id" : "aa0309c4-fb34-47a7-b447-e557b366ffc5", + "id" : "aaf6ff85-9922-4231-835c-859fccdb565d", "code" : "MBANK_SHRHD_FLG", "name" : "本行股东标志", "description" : null, @@ -7361,23 +7347,23 @@ "order" : null, "tab" : null }, { - "id" : "bdce1f2b-1422-4c67-84a0-4594f8da08b1", - "code" : "TTLE_CD", - "name" : "职称代码", + "id" : "aa0f3215-d3cd-49ef-8e58-cbb4d26d70c4", + "code" : "PSN_ANUINC", + "name" : "个人年收入", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, - "valueScale" : null, + "valueScale" : 2, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "a4162918-6716-495f-811f-2d4624670d29", - "code" : "CUST_MGT_STAFNO", - "name" : "管户员工编号", + "id" : "c495cc95-3ec0-45ba-b697-427713b03dcf", + "code" : "ETPSN_STAFNO", + "name" : "录入人员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7389,23 +7375,23 @@ "order" : null, "tab" : null }, { - "id" : "a2b10980-55ca-4281-bfd3-7e6a892c693f", - "code" : "TSUNT_WORK_ORIG_DT", - "name" : "本单位工作起始日期", + "id" : "9e569f81-c598-4a3a-99eb-3061c4217179", + "code" : "RGST_ORG_ID", + "name" : "登记机构编号", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "973ab9d4-9d72-4e22-b529-f4f29b101d7b", - "code" : "RSDC_ADMIN_DIV_CD", - "name" : "居住地行政区划代码", + "id" : "9bc686fa-10af-481d-b952-17383d450a40", + "code" : "DTY_CD", + "name" : "职务代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7417,9 +7403,9 @@ "order" : null, "tab" : null }, { - "id" : "916409c4-7651-437c-b029-50b03a113fb7", - "code" : "CRDLN_CUST_FLG", - "name" : "信贷客户标志", + "id" : "9937aa15-94ec-4301-9cf6-e2d7dfb13053", + "code" : "MULTP_HOUSE_FLG", + "name" : "多套房产标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7431,9 +7417,9 @@ "order" : null, "tab" : null }, { - "id" : "8f1facec-db73-4969-b1ca-61a5c5a695a2", - "code" : "EMAIL", - "name" : "电子邮箱", + "id" : "94e3ea62-ed59-423f-bb00-34cf3fe7c1d9", + "code" : "OCCD", + "name" : "职业代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7445,9 +7431,9 @@ "order" : null, "tab" : null }, { - "id" : "8e6090c8-2219-450c-88d1-45a42813c5e4", - "code" : "MPNO", - "name" : "手机号码", + "id" : "8fcbfa0f-ec24-4160-9bf5-077918241e17", + "code" : "WORK_YRS", + "name" : "工作年限", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7459,23 +7445,23 @@ "order" : null, "tab" : null }, { - "id" : "8c8cc885-6092-44a6-baa1-62db165c95a9", - "code" : "UNT_LCTIN_ZIP_CD", - "name" : "单位所在地邮政编码", + "id" : "8e320fb2-082e-481a-8eac-4ee133903d12", + "code" : "RCNT_UPD_DT", + "name" : "最近更新日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "89c9cc22-6167-4ed1-8825-ed5e095ede5d", - "code" : "CUST_ELSE_CERT_TYPE_CD", - "name" : "客户其他证件类型", + "id" : "8b9ca906-d757-4b00-92f1-82cbdc04dfdf", + "code" : "CHILD_FLG", + "name" : "子女标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7487,9 +7473,9 @@ "order" : null, "tab" : null }, { - "id" : "7b3ae688-ca2a-4573-a0b7-13f4d12574ac", - "code" : "GRAD_ACDMY", - "name" : "毕业院校", + "id" : "8b86c38b-20a8-488e-87d0-827723db82e9", + "code" : "CERT_TYPE_CD", + "name" : "证件类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7501,9 +7487,9 @@ "order" : null, "tab" : null }, { - "id" : "7a81dfda-49c7-4736-a75d-1f47306efffc", - "code" : "ETPSN_STAFNO", - "name" : "录入人员工编号", + "id" : "8aaa357f-106f-46c5-aaf6-dd38d3a9486b", + "code" : "UNT_CHARC_CD", + "name" : "单位性质代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7515,9 +7501,9 @@ "order" : null, "tab" : null }, { - "id" : "e276e140-54dd-4005-8b15-7fe27e6e7666", - "code" : "CUST_SYN_ESTIM_LVL_CD", - "name" : "客户综合评估级别代码", + "id" : "823b7ed1-b712-4e92-853e-8c2221296982", + "code" : "CRDLN_CUST_FLG", + "name" : "信贷客户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7529,23 +7515,23 @@ "order" : null, "tab" : null }, { - "id" : "fe83917b-8f4e-40f2-b11d-9c0172501066", - "code" : "DTY_CD", - "name" : "职务代码", + "id" : "d2dd969e-e3c6-4904-9d6d-5cea8fa28bc7", + "code" : "RGST_DT", + "name" : "登记日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "fd57dc29-7600-4473-a425-ce3d955d580f", - "code" : "CUST_MGT_ORG_ID", - "name" : "管户机构编号", + "id" : "ffe408de-7ede-467c-87ff-418399edaa9a", + "code" : "BELG_INDS_SUBTYPE_CD", + "name" : "所属行业子类代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7557,9 +7543,9 @@ "order" : null, "tab" : null }, { - "id" : "f83b1c42-4113-4ef7-87f8-952c0dd016b7", - "code" : "CERT_ISUINST_NM", - "name" : "证件签发机关名称", + "id" : "f8916a95-5beb-462b-9587-63b0e73df2e0", + "code" : "EMAIL", + "name" : "电子邮箱", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7571,23 +7557,23 @@ "order" : null, "tab" : null }, { - "id" : "f63035e1-e7a3-4019-802d-6847c26c6830", - "code" : "MULTP_HOUSE_FLG", - "name" : "多套房产标志", + "id" : "f8249339-ea99-484a-96fd-d5c1bf115a25", + "code" : "FEED_PSNQTY", + "name" : "供养人数", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.lang.Long", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "f574ebc7-0da0-4908-9f3e-2314be0fff9e", - "code" : "MARRG_SITU_CD", - "name" : "婚姻状况代码", + "id" : "ef6d5c5d-2ba8-442d-ad4b-da5d49888bd7", + "code" : "TTLE_CD", + "name" : "职称代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7599,9 +7585,9 @@ "order" : null, "tab" : null }, { - "id" : "f194d5bb-dce8-400f-a60a-2e88824cbe79", - "code" : "OPEN_ACCT_DT", - "name" : "开户日期", + "id" : "eac815df-f606-4a08-9a41-5ed5163d61c5", + "code" : "HNDIN_SCL_SCIT_FLG", + "name" : "缴纳社保标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7613,7 +7599,7 @@ "order" : null, "tab" : null }, { - "id" : "ee5c6e40-b470-4633-bf36-981f7bf2558f", + "id" : "dca5d8da-a525-48a2-b59b-8e26b348e982", "code" : "ONBEHF_SALRY_FLG", "name" : "代发工资客户标志", "description" : null, @@ -7627,9 +7613,9 @@ "order" : null, "tab" : null }, { - "id" : "ecd3c44c-0309-47de-83a7-446432718af2", - "code" : "CUST_ID", - "name" : "客户编号", + "id" : "dc801603-c247-400e-b223-982eb6166403", + "code" : "FARM_NWTP_AGRIC_MGMBD_FLG", + "name" : "农户/新型农业经营主体标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7641,9 +7627,9 @@ "order" : null, "tab" : null }, { - "id" : "e6ec86ec-a88b-427d-83de-8166e09cd25c", - "code" : "NATV_PLC", - "name" : "籍贯", + "id" : "d70fb4a8-78c3-4854-b78c-81a72465febf", + "code" : "GRAD_ACDMY", + "name" : "毕业院校", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7655,9 +7641,9 @@ "order" : null, "tab" : null }, { - "id" : "e454ee47-b8de-4b6c-84f2-2e9a66224e5a", - "code" : "CERT_MATR_DT", - "name" : "证件到期日期", + "id" : "d5c00b65-9ea0-4230-af51-bf184b478df3", + "code" : "TSUNT_WORK_ORIG_DT", + "name" : "本单位工作起始日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -7669,9 +7655,9 @@ "order" : null, "tab" : null }, { - "id" : "7209e5b5-a4b8-4b31-bc09-f3a85c44d3a1", - "code" : "CERT_TYPE_CD", - "name" : "证件类型代码", + "id" : "d3e027ff-ac82-422b-a70d-32b9e5242d5a", + "code" : "SMALL_MICRO_FIRMR_FLG", + "name" : "小微企业主标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7683,9 +7669,9 @@ "order" : null, "tab" : null }, { - "id" : "e06bb5f4-786b-4e2a-ab03-1340d22be3a5", - "code" : "OPEN_ACCT_ORG_ID", - "name" : "开户机构编号", + "id" : "81036567-b6b8-42ae-88cf-28e77b8a0607", + "code" : "OCCD_TYPE_CD", + "name" : "职业类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7697,9 +7683,9 @@ "order" : null, "tab" : null }, { - "id" : "dd7babf9-59d4-4b33-94f0-c74c1ecdb505", - "code" : "CUST_ELSE_CERTNO", - "name" : "客户其他证件号码", + "id" : "d2d3b13d-fa93-4843-b66d-7e3badb4018f", + "code" : "HOUSD_RGST_LCTIN_ADMIN_DIV_CD", + "name" : "户籍所在地行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7711,9 +7697,9 @@ "order" : null, "tab" : null }, { - "id" : "da07fab5-2227-4a91-9cd3-99bf844a7121", - "code" : "RSD_SITU_CD", - "name" : "居住状况代码", + "id" : "d2206d07-45a7-4ef9-aa34-1e189153d2f6", + "code" : "ETHNIC_CD", + "name" : "民族代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7725,9 +7711,9 @@ "order" : null, "tab" : null }, { - "id" : "d5ee426e-c424-41e2-840c-69522a901afb", - "code" : "PROVFUND_DPSTD_RGNM", - "name" : "公积金缴存地区名称", + "id" : "d055faae-6795-475e-b542-a5d5084f3cda", + "code" : "PVFDCTB_UNTNM", + "name" : "公积金缴纳单位名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7739,9 +7725,9 @@ "order" : null, "tab" : null }, { - "id" : "cebd5014-5a6d-4dcb-9fae-98ca19cc9051", - "code" : "LOCAL_HOUSE_FLG", - "name" : "本地房产标志", + "id" : "c9961aed-5492-4a6a-aac8-49e3a0bcfd04", + "code" : "MARRG_SITU_CD", + "name" : "婚姻状况代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7753,13 +7739,13 @@ "order" : null, "tab" : null }, { - "id" : "c810c59c-28ee-4076-a533-19aaa6aa61b6", - "code" : "FSTETB_CRLNREL_TIME", - "name" : "首次建立信贷关系时间", + "id" : "c7b2019d-9d4b-4fde-b600-81fd4a956102", + "code" : "MOINC", + "name" : "月收入", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, - "valueScale" : null, + "valueScale" : 2, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, @@ -7767,9 +7753,9 @@ "order" : null, "tab" : null }, { - "id" : "c372db4a-f524-4fb7-a35a-dc53fb6a8c66", - "code" : "UNT_CHARC_CD", - "name" : "单位性质代码", + "id" : "c7acc330-01b8-4d9f-be13-60fc13038afd", + "code" : "OPEN_ACCT_STAFNO", + "name" : "开户人编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7781,9 +7767,9 @@ "order" : null, "tab" : null }, { - "id" : "c276c20e-3a28-49be-9fd8-39467651251b", - "code" : "UNT_LCTIN_ADMIN_DIV_CD", - "name" : "单位所在地行政区划代码", + "id" : "c75306c0-be38-4d86-bee1-323a900b25db", + "code" : "FAM_INFO_NO", + "name" : "家庭信息编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7795,9 +7781,9 @@ "order" : null, "tab" : null }, { - "id" : "c0b0b1a1-1e7e-4885-9261-3199f2088eb0", - "code" : "FAM_INFO_NO", - "name" : "家庭信息编号", + "id" : "c62d73bd-48cd-4de7-a720-254af125b7c7", + "code" : "CUST_SYN_ESTIM_LVL_CD", + "name" : "客户综合评估级别代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7809,9 +7795,9 @@ "order" : null, "tab" : null }, { - "id" : "20e419cd-376e-4a39-bdfe-2f50ebcde4bc", - "code" : "LOCL_RPR_FLG", - "name" : "本地户口标志", + "id" : "c50421c4-592e-4ce6-bbd4-0d25a385ff5e", + "code" : "MBANK_EMP_FLG", + "name" : "本行员工标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7823,9 +7809,9 @@ "order" : null, "tab" : null }, { - "id" : "3ddab327-f660-4789-bcf4-f535c54588c8", - "code" : "PSN_CUST_TYPE_CD", - "name" : "个人客户类型代码", + "id" : "1a087ac0-b411-4d0e-bbbd-5de6f6c834dc", + "code" : "NATION_CD", + "name" : "国籍代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7837,9 +7823,9 @@ "order" : null, "tab" : null }, { - "id" : "3b194d1b-cdc9-43c7-81c8-1437a90dc763", - "code" : "HOUSD_RGST_LCTIN_ADMIN_DIV_CD", - "name" : "户籍所在地行政区划代码", + "id" : "467e5511-aba9-497c-b5fa-e3be53dc786d", + "code" : "EMPYMT_TYPE_CD", + "name" : "雇佣类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7851,9 +7837,9 @@ "order" : null, "tab" : null }, { - "id" : "3ac7acbe-5d0c-44db-bad1-c19a5740da2b", - "code" : "UNT_TEL", - "name" : "单位电话", + "id" : "353d20b3-3c57-4d9e-9215-962c561e0a58", + "code" : "FARM_FLG", + "name" : "农户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7865,9 +7851,9 @@ "order" : null, "tab" : null }, { - "id" : "3522321d-e358-4bfc-b9cf-d169b244eaee", - "code" : "HLTH_SITU_CD", - "name" : "健康状况代码", + "id" : "3148bf15-16d7-43ee-90e7-bda2a9137990", + "code" : "UNT_ADDR", + "name" : "单位地址", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7879,9 +7865,9 @@ "order" : null, "tab" : null }, { - "id" : "32d49f81-a572-4fc1-9373-f48615320146", - "code" : "JON_WORK_DT", - "name" : "参加工作日期", + "id" : "30d6e5a7-5d02-42a5-b2f9-040159b23e8b", + "code" : "CERT_MATR_DT", + "name" : "证件到期日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -7893,9 +7879,9 @@ "order" : null, "tab" : null }, { - "id" : "31378791-b2f3-424b-b7f0-049874e75526", - "code" : "MBANK_EMP_FLG", - "name" : "本行员工标志", + "id" : "29fbf3cc-f623-4033-b864-f780bcdd8d2c", + "code" : "UNT_LCTIN_ADMIN_DIV_CD", + "name" : "单位所在地行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7907,9 +7893,9 @@ "order" : null, "tab" : null }, { - "id" : "2d3696f0-493c-40fe-9052-23d45820d9ff", - "code" : "HNDIN_SCL_SCIT_FLG", - "name" : "缴纳社保标志", + "id" : "26f75144-ea5d-49de-9a2b-ca6187a12010", + "code" : "UNTNM", + "name" : "单位名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7921,9 +7907,9 @@ "order" : null, "tab" : null }, { - "id" : "2cf7ec1b-9c72-422d-8463-9daf0150f809", - "code" : "NATION_CD", - "name" : "国籍代码", + "id" : "2123eee1-f2d3-4378-a30c-a661982ea5e8", + "code" : "UNT_LCTIN_ZIP_CD", + "name" : "单位所在地邮政编码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7935,9 +7921,9 @@ "order" : null, "tab" : null }, { - "id" : "29d53d9a-e9b5-48ee-b2fe-a2f9872c4123", - "code" : "NTWRKN_CHK_REST_CD", - "name" : "联网核查结果代码", + "id" : "2065162d-eb9c-491b-8710-5e81b21debf1", + "code" : "LOCAL_HOUSE_FLG", + "name" : "本地房产标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7949,9 +7935,9 @@ "order" : null, "tab" : null }, { - "id" : "25ec5f4c-8e2c-4d42-9533-a0414160fb31", - "code" : "CHILD_FLG", - "name" : "子女标志", + "id" : "1ed677cc-1014-4ad6-b8ed-a616cc92dd84", + "code" : "NATV_PLC", + "name" : "籍贯", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7963,9 +7949,9 @@ "order" : null, "tab" : null }, { - "id" : "42b77fac-e328-4b3e-b705-37242d0c83f0", - "code" : "WORK_YRS", - "name" : "工作年限", + "id" : "1ae39fb2-cc92-4296-b70f-fd13c1c48ba5", + "code" : "EXTCDT_CUST_FLG", + "name" : "授信客户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7977,9 +7963,9 @@ "order" : null, "tab" : null }, { - "id" : "1de1bdc6-3387-4c97-a463-5cd6b5605a99", - "code" : "BELG_INDS_SUBTYPE_CD", - "name" : "所属行业子类代码", + "id" : "47ad8bb8-68bd-46df-b265-8d88a53b3fda", + "code" : "INDVD_BIZHD_FLG", + "name" : "个体工商户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -7991,9 +7977,9 @@ "order" : null, "tab" : null }, { - "id" : "1cd7c0df-157b-4a14-9a75-db088a06d48e", - "code" : "CUST_HOME_ABROD_IND", - "name" : "境内外标识", + "id" : "195725b5-2af5-4db1-bdae-958ef84c984c", + "code" : "CSTMNM", + "name" : "客户名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8005,9 +7991,9 @@ "order" : null, "tab" : null }, { - "id" : "19b5f56e-e508-4f73-a87a-d54cc9d250e5", - "code" : "PVFDCTB_UNTNM", - "name" : "公积金缴纳单位名称", + "id" : "13d5c69d-e41c-4ff3-be21-8d81dd2861d1", + "code" : "PSN_CUST_TYPE_CD", + "name" : "个人客户类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8019,9 +8005,9 @@ "order" : null, "tab" : null }, { - "id" : "148c8d55-3c9b-4b86-9ce2-e6bec40448ed", - "code" : "RSVD_MPNO", - "name" : "预留手机号码", + "id" : "121d46a4-3058-43de-972a-d83d0e766820", + "code" : "FINAL_UPD_USR_ID", + "name" : "最后更新用户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8033,9 +8019,9 @@ "order" : null, "tab" : null }, { - "id" : "0d1c9ff1-171e-4a8a-b3e3-57ea5dad9200", - "code" : "CLOS_ACCT_DT", - "name" : "销户日期", + "id" : "110f4024-ce26-4f7c-bb90-1c63959fa6b1", + "code" : "LGPSNCD", + "name" : "法人代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8047,23 +8033,23 @@ "order" : null, "tab" : null }, { - "id" : "0cb69c19-9999-4732-a495-fe87f8589a64", - "code" : "RCNT_UPD_DT", - "name" : "最近更新日期", + "id" : "1052e4d9-0a76-455d-aca1-ccac4f9355dc", + "code" : "UNT_BELG_INDS_CD", + "name" : "单位所属行业代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "0c4633d3-b838-4f30-a46e-fe5f8528d036", - "code" : "RGST_DT", - "name" : "登记日期", + "id" : "0fff96d5-f03e-462c-9df1-bb710b01dfa6", + "code" : "BIRTH_DT", + "name" : "出生日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -8075,9 +8061,9 @@ "order" : null, "tab" : null }, { - "id" : "0b000829-c9f1-431e-841f-0008cdbb0e56", - "code" : "FARM_FLG", - "name" : "农户标志", + "id" : "0f7304f3-3246-40a7-b349-b46830f41b79", + "code" : "CUST_STAT_CD", + "name" : "客户状态代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8089,9 +8075,9 @@ "order" : null, "tab" : null }, { - "id" : "0ab8434e-7bfc-459a-86ab-2a2c328a194a", - "code" : "OPEN_ACCT_STAFNO", - "name" : "开户人编号", + "id" : "0b343b7b-2ad7-4945-a7ae-7b1d0b0b7112", + "code" : "RSVD_MPNO", + "name" : "预留手机号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8103,9 +8089,9 @@ "order" : null, "tab" : null }, { - "id" : "058e8661-0ba2-4f3c-b84b-8f61f817be73", - "code" : "FARM_NWTP_AGRIC_MGMBD_FLG", - "name" : "农户/新型农业经营主体标志", + "id" : "0af9b8f2-785d-4e2f-96d1-545fab24d209", + "code" : "CUST_ELSE_CERT_TYPE_CD", + "name" : "客户其他证件类型", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8117,23 +8103,23 @@ "order" : null, "tab" : null }, { - "id" : "569fd932-41cc-4604-b7e3-de88490f88e2", - "code" : "AGE", - "name" : "年龄", + "id" : "0a5e4c39-8743-43ac-9988-336c4af50db7", + "code" : "INN_JGDRSLT_CD", + "name" : "内部评级结果代码", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "6fdd3813-e039-4dc0-9e94-6887696a42ff", - "code" : "UNT_ADDR", - "name" : "单位地址", + "id" : "6925f8f2-ebee-44e8-81e4-b6f554949a48", + "code" : "CUST_ELSE_CERTNO", + "name" : "客户其他证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8145,23 +8131,23 @@ "order" : null, "tab" : null }, { - "id" : "6a354622-a01f-4649-8dec-f7675def9829", - "code" : "FEED_PSNQTY", - "name" : "供养人数", + "id" : "80920d81-f6f2-4ade-b795-d2ff8a079384", + "code" : "UNT_TEL", + "name" : "单位电话", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "69723cf5-9028-45d5-a121-f1f07372cd4d", - "code" : "SCL_SCIT_DPSTD_RGNM", - "name" : "社保缴存地区名称", + "id" : "7f7e4488-3b01-4021-b921-6c7c0093035f", + "code" : "LOCL_RPR_FLG", + "name" : "本地户口标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8173,23 +8159,23 @@ "order" : null, "tab" : null }, { - "id" : "686aeba2-bcb2-4381-8f37-15985c7d5fd4", - "code" : "BIRTH_DT", - "name" : "出生日期", + "id" : "7d9a19e0-7353-4839-a2b1-9c1dd4d2b5ec", + "code" : "OPEN_ACCT_ORG_ID", + "name" : "开户机构编号", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "67a21937-2841-4fae-b41d-82a51ffbe4ad", - "code" : "HGST_EDU_DEGR_CD", - "name" : "最高学历代码", + "id" : "7d1557e1-dcbf-41f0-95e0-ad64f97b0e15", + "code" : "OPEN_ACCT_DT", + "name" : "开户日期", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8201,37 +8187,37 @@ "order" : null, "tab" : null }, { - "id" : "62edebc6-9c1d-41fa-9241-4fa11526b3e6", - "code" : "UNTNM", - "name" : "单位名称", + "id" : "7c1468da-bb6b-4c55-a0e0-5f947cb35523", + "code" : "AGE", + "name" : "年龄", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.lang.Long", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "612a81ca-4317-4c1f-af28-74029162bfdd", - "code" : "EXTCDT_CUST_FLG", - "name" : "授信客户标志", + "id" : "7229e147-3dfd-4cf5-9545-921b87ce723e", + "code" : "JON_WORK_DT", + "name" : "参加工作日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "5c5dd6fa-37dd-4cd6-9bfb-dec5bade7431", - "code" : "CERTNO", - "name" : "证件号码", + "id" : "715e40b2-49a5-4f08-8233-7df4808fa12b", + "code" : "NTWRKN_CHK_REST_CD", + "name" : "联网核查结果代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8243,9 +8229,9 @@ "order" : null, "tab" : null }, { - "id" : "5a9f5553-50fa-499b-933c-ee35149c6eb7", - "code" : "EMPYMT_TYPE_CD", - "name" : "雇佣类型代码", + "id" : "6dcd2d7a-ed41-4a01-a5e0-b51f5863bef3", + "code" : "HGST_DEGR_CD", + "name" : "最高学位代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8257,9 +8243,9 @@ "order" : null, "tab" : null }, { - "id" : "585809f5-042d-4583-a983-fbd199830524", - "code" : "SMALL_MICRO_FIRMR_FLG", - "name" : "小微企业主标志", + "id" : "6b53ca37-789d-41fc-b6c8-cf16701efad7", + "code" : "SCSCTPYR_NM", + "name" : "社保缴纳单位名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8271,9 +8257,9 @@ "order" : null, "tab" : null }, { - "id" : "032b8521-b7cb-42f8-8a2e-a12d37a233cf", - "code" : "HGST_DEGR_CD", - "name" : "最高学位代码", + "id" : "6b0161cf-7f9e-4d38-be4b-7c45bcd7f2e3", + "code" : "RSD_SITU_CD", + "name" : "居住状况代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8285,9 +8271,9 @@ "order" : null, "tab" : null }, { - "id" : "568a429b-b388-457d-b668-a34639786f30", - "code" : "CSTMNM", - "name" : "客户名称", + "id" : "0922c8d0-66a6-4012-9f2e-40f86d69c6ae", + "code" : "GVMT_OFCLS_FLG", + "name" : "公务员标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8299,9 +8285,9 @@ "order" : null, "tab" : null }, { - "id" : "53b96cf4-872c-4052-b257-26e2c65a144e", - "code" : "FINAL_UPD_ORG_ID", - "name" : "最后更新机构编号", + "id" : "68122c49-9118-492e-b353-0d5d9ceb8029", + "code" : "HGST_EDU_DEGR_CD", + "name" : "最高学历代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8313,23 +8299,23 @@ "order" : null, "tab" : null }, { - "id" : "52675eb9-c6a8-40ae-a7d0-c969313f9007", - "code" : "INDVD_BIZHD_FLG", - "name" : "个体工商户标志", + "id" : "630f9d89-9c56-43df-8008-e675ac683284", + "code" : "FSTETB_CRLNREL_TIME", + "name" : "首次建立信贷关系时间", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "4e1d4739-7368-4f3d-b834-cf42a2628dd6", - "code" : "INN_JGDRSLT_CD", - "name" : "内部评级结果代码", + "id" : "5e7a8b7b-fee1-42e2-b65e-d1cc0f87b799", + "code" : "MPNO", + "name" : "手机号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8341,7 +8327,7 @@ "order" : null, "tab" : null }, { - "id" : "4d6f838d-7120-4d46-9644-a611b867ec5f", + "id" : "58cb72cd-17e9-471e-b099-17ace86ef758", "code" : "PLTC_ASPT_CD", "name" : "政治面貌代码", "description" : null, @@ -8355,23 +8341,23 @@ "order" : null, "tab" : null }, { - "id" : "4ce0b525-cbd9-42f7-b8f4-5ec6f8a9f470", - "code" : "MOINC", - "name" : "月收入", + "id" : "531714cc-456f-4bcb-a797-7394dd7073cc", + "code" : "GENDER_CD", + "name" : "性别代码", "description" : null, - "valueType" : "java.math.BigDecimal", + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : 2, + "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "49b76896-319a-4d7a-ad23-2ef4b26f1429", - "code" : "GVMT_OFCLS_FLG", - "name" : "公务员标志", + "id" : "516b16a4-0354-4104-af3d-c2aa006cc35b", + "code" : "CUST_MGT_ORG_ID", + "name" : "管户机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8383,9 +8369,9 @@ "order" : null, "tab" : null }, { - "id" : "46712198-2900-409f-8133-102439a7fb61", - "code" : "CUST_EN_NM", - "name" : "客户英文名称", + "id" : "4fd3d0f3-fec3-4c45-934b-ec6c4d92a40a", + "code" : "CERT_ISUINST_NM", + "name" : "证件签发机关名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8397,9 +8383,23 @@ "order" : null, "tab" : null }, { - "id" : "455b863f-85b1-4f55-a0ce-392f2b10162c", - "code" : "FINAL_UPD_USR_ID", - "name" : "最后更新用户编号", + "id" : "4f208d68-5433-41f5-9e2c-0ab2c14f1094", + "code" : "PROVFUND_DPSTD_RGNM", + "name" : "公积金缴存地区名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : null, + "order" : null, + "tab" : null + }, { + "id" : "486c0ee0-03bf-4b13-85e0-f871170d5eea", + "code" : "SCL_SCIT_DPSTD_RGNM", + "name" : "社保缴存地区名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8414,7 +8414,7 @@ } ] }, { "type" : "FOLDER", - "id" : "203e144e-1ab9-4d27-9542-4aea736ba320", + "id" : "5980f183-fc25-464e-ba29-5ed77a145cd5", "type" : "FOLDER", "code" : "D1731650619828", "name" : "集团客户信息", @@ -8424,7 +8424,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "6ef98447-1e49-44c8-bbe8-fa3eada6c373", + "id" : "6c0cdfdf-7aa7-4e28-a4d3-816a5525041c", "type" : "UD_JAVA_CLASS", "code" : "D1731650627823", "name" : "集团客户信息", @@ -8434,9 +8434,9 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "bffa44bb-acf5-4526-8442-b0061bdb3a69", - "code" : "FINAL_UPD_USR_ID", - "name" : "最后更新用户编号", + "id" : "c9c21352-85a6-43fe-8430-f52fc189da34", + "code" : "GRP_CUST_ID", + "name" : "集团客户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8448,9 +8448,9 @@ "order" : null, "tab" : null }, { - "id" : "79483292-cd28-4581-9ed8-41843c4f2feb", - "code" : "LGPSNCD", - "name" : "法人代码", + "id" : "81658900-d3ea-48c2-bf52-55aee63a596e", + "code" : "LOAN_CARD_NO", + "name" : "贷款卡号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8462,9 +8462,9 @@ "order" : null, "tab" : null }, { - "id" : "7b5156a0-7a5e-486e-97de-49bd0f3d1c1f", - "code" : "RGST_ORG_ID", - "name" : "登记机构编号", + "id" : "9f7bb419-73d6-4721-ac87-a4421d9b3499", + "code" : "FINAL_UPD_ORG_ID", + "name" : "最后更新机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8476,9 +8476,9 @@ "order" : null, "tab" : null }, { - "id" : "7b7bfe50-c0e2-47ef-ab97-db03ec5dcafd", - "code" : "CPGPSRNO", - "name" : "集团编号", + "id" : "9fcf4b4b-7675-497a-bfa2-b72e737a5be7", + "code" : "ACTCNL_NM", + "name" : "实际控制人名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8490,9 +8490,9 @@ "order" : null, "tab" : null }, { - "id" : "83ad2442-13d4-41cb-b6de-0db2be805c1d", - "code" : "PRNT_CORP_CERT_TYPE_CD", - "name" : "集团母公司证件类型代码", + "id" : "b9036b98-c400-4b59-8caf-be3959760c8a", + "code" : "CUST_MGT_ORG_ID", + "name" : "管户机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8504,9 +8504,9 @@ "order" : null, "tab" : null }, { - "id" : "86c848d9-e44d-420a-9da9-b35b9374d132", - "code" : "EXTCDT_TYPE_CD", - "name" : "授信类型代码", + "id" : "b9d99eae-a06c-4b81-b329-4207b6f847f4", + "code" : "BIZ_STAT_CD", + "name" : "业务状态代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8518,37 +8518,37 @@ "order" : null, "tab" : null }, { - "id" : "9ffda83f-2c8e-4980-8f7e-915607a17474", - "code" : "GRP_USED_LMT", - "name" : "集团已用额度", + "id" : "bbfee1f5-3ad5-4d5f-9f6c-d22d94af19de", + "code" : "ACTCNL_CUST_ID", + "name" : "实际控制人客户编号", "description" : null, - "valueType" : "java.math.BigDecimal", + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : 2, + "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "a883ee24-d089-4d9c-93c4-ca474e6f379a", - "code" : "OPR_ORG_ID", - "name" : "经办机构编号", + "id" : "be5ae80b-37c8-448b-9bc5-4d47f2c1fc5b", + "code" : "RGST_DT", + "name" : "登记日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "b4401908-1314-4654-bb3f-65f774352418", - "code" : "REGPLC_ADMIN_DIV_CD", - "name" : "登记地行政区划代码", + "id" : "beaf57d8-969c-4d3a-8852-cb4142d44367", + "code" : "CORE_ENTPRS_NM", + "name" : "核心企业名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8560,23 +8560,23 @@ "order" : null, "tab" : null }, { - "id" : "ba82a6f5-cd47-4a77-96f5-a1b59ae44ee7", - "code" : "PRNT_CORP_CUST_ID", - "name" : "母公司客户编号", + "id" : "c1170953-3c68-4067-827e-d5d4ebce1063", + "code" : "GRP_MBR_QTY", + "name" : "集团成员数量", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.lang.Long", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "790071f0-64ce-4eec-ad3b-f31ee97d566e", - "code" : "FINAL_UPD_ORG_ID", - "name" : "最后更新机构编号", + "id" : "7bd9c123-df8d-4e73-8035-f827b20baab1", + "code" : "OPR_ORG_ID", + "name" : "经办机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8588,9 +8588,9 @@ "order" : null, "tab" : null }, { - "id" : "c324bb20-ba94-488a-aca6-a1c32e60de6a", - "code" : "ETPSN_STAFNO", - "name" : "录入人员工编号", + "id" : "ca27a318-f1d2-458e-bc02-74e07948fd33", + "code" : "CUST_SHT_NM", + "name" : "客户简称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8602,23 +8602,23 @@ "order" : null, "tab" : null }, { - "id" : "c4ef0b9c-e8d4-4ca7-add1-e6faef6a7716", - "code" : "GRP_MBR_QTY", - "name" : "集团成员数量", + "id" : "ce64ed6e-5a76-4ae3-9b3c-20f17f8e45b3", + "code" : "RGST_ORG_ID", + "name" : "登记机构编号", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "c7d59e48-00e6-4938-b6ea-70aa4b4483b7", - "code" : "CORE_ENTPRS_CERT_TYPE_CD", - "name" : "核心企业证件类型代码", + "id" : "d3b80ed8-3637-4884-a323-7fe499b47ad1", + "code" : "ACTCNL_CERT_TYPE_CD", + "name" : "实际控制人证件类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8630,23 +8630,23 @@ "order" : null, "tab" : null }, { - "id" : "d103948d-a825-4ef6-a67b-7158e3fb8b45", - "code" : "ACTCNL_CERTNO", - "name" : "实际控制人证件号码", + "id" : "d79f0f5e-c0b3-4027-9be6-b3055e51d01b", + "code" : "RCNT_UPD_DT", + "name" : "最近更新日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "d2ac07d4-a416-4d74-a282-9c0da831522d", - "code" : "ACTCNL_CUST_ID", - "name" : "实际控制人客户编号", + "id" : "d7aab143-7e23-4439-9dcf-97c607c190e9", + "code" : "EXTCDT_TYPE_CD", + "name" : "授信类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8658,23 +8658,23 @@ "order" : null, "tab" : null }, { - "id" : "d7efc87e-304c-4c23-be3c-1e28aaf79963", - "code" : "ENTPRS_HOLD_FNDS_TYPE_CD", - "name" : "企业控股资金类型代码", + "id" : "dc21b434-65ee-4233-b56c-837c38d47876", + "code" : "GRP_EXTCDT_LMT", + "name" : "集团授信额度", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, - "valueScale" : null, + "valueScale" : 2, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "e091c2c7-b63c-4c2a-99c8-8c7b080e32c8", - "code" : "PRNT_CORP_CERTNO", - "name" : "母公司证件号码", + "id" : "e0b895cb-6cae-48cf-a2e5-52a5b872a614", + "code" : "CORE_ENTPRS_CERTNO", + "name" : "核心企业证件编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8686,9 +8686,9 @@ "order" : null, "tab" : null }, { - "id" : "ed8d6d37-c986-4960-86ce-c64037818ced", - "code" : "GRP_NM", - "name" : "集团名称", + "id" : "f86f189b-ecf6-43dd-a2f0-94ca9b8b7e7b", + "code" : "CUST_MGT_STAFNO", + "name" : "管户员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8700,7 +8700,7 @@ "order" : null, "tab" : null }, { - "id" : "fb3b5552-84d2-4a9a-8978-0264e0f3a92c", + "id" : "fad1c9d2-60d0-403b-8cf2-7163e99adab9", "code" : "INN_JGDRSLT_CD", "name" : "内部评级结果代码", "description" : null, @@ -8714,9 +8714,9 @@ "order" : null, "tab" : null }, { - "id" : "3fef413f-f409-4686-937b-d196d9a43ec8", - "code" : "GRP_CUST_ID", - "name" : "集团客户编号", + "id" : "4d2805bb-79a8-487d-8c36-fd99257351ca", + "code" : "ENTPRS_ECON_TYPE_CD", + "name" : "企业经济类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8728,23 +8728,23 @@ "order" : null, "tab" : null }, { - "id" : "08c72fae-bb75-4996-bcff-ef6861c96cd3", - "code" : "RCNT_UPD_DT", - "name" : "最近更新日期", + "id" : "1c680acb-51b1-4668-9061-70c9a79544fc", + "code" : "CUST_STAT_CD", + "name" : "客户状态代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "1359defe-2d29-411a-8a83-83fb30c8af7f", - "code" : "CUST_MGT_STAFNO", - "name" : "管户员工编号", + "id" : "25c1f17f-82b4-4e0a-b3d9-71883dd3517e", + "code" : "LGPSNCD", + "name" : "法人代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8756,9 +8756,9 @@ "order" : null, "tab" : null }, { - "id" : "1a4634f3-6d21-4c4b-a648-b838c867b68d", - "code" : "CUST_STAT_CD", - "name" : "客户状态代码", + "id" : "2bca1773-5ea6-4df8-b8e3-2e603847f55c", + "code" : "ENTPRS_HOLD_FNDS_TYPE_CD", + "name" : "企业控股资金类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8770,9 +8770,9 @@ "order" : null, "tab" : null }, { - "id" : "207fd27a-ea46-41d7-9411-8cba5c2c7fbd", - "code" : "CUST_SHT_NM", - "name" : "客户简称", + "id" : "2f3ed17d-772e-4999-88f2-c0c4afe279c8", + "code" : "OPR_STAFNO", + "name" : "经办员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8784,9 +8784,9 @@ "order" : null, "tab" : null }, { - "id" : "2292f415-f936-43e3-af05-ab4c60e84baa", - "code" : "BIZ_STAT_CD", - "name" : "业务状态代码", + "id" : "391115a4-9755-434a-a552-adca14ae003f", + "code" : "FINAL_UPD_USR_ID", + "name" : "最后更新用户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8798,9 +8798,9 @@ "order" : null, "tab" : null }, { - "id" : "280f40ca-7029-46e5-88c8-4d8e6d50896a", - "code" : "ACTCNL_NM", - "name" : "实际控制人名称", + "id" : "39346411-bb5a-4155-9eee-281dc1cc1aad", + "code" : "PRNT_CORP_NM", + "name" : "母公司名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8812,9 +8812,9 @@ "order" : null, "tab" : null }, { - "id" : "300e3ccc-1fe5-4bfa-bb04-c4bc430bec06", - "code" : "PRNT_CORP_NM", - "name" : "母公司名称", + "id" : "39368829-f974-45cb-b94c-736e1ee31ae9", + "code" : "CORE_ENTPRS_CUST_ID", + "name" : "核心企业客户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8826,9 +8826,9 @@ "order" : null, "tab" : null }, { - "id" : "32f4077d-64e6-4cae-8cd4-e612f6a26477", - "code" : "CORE_ENTPRS_CUST_ID", - "name" : "核心企业客户编号", + "id" : "41d14db8-24e6-4eda-a4b2-38af474973c1", + "code" : "ETPSN_STAFNO", + "name" : "录入人员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8840,9 +8840,9 @@ "order" : null, "tab" : null }, { - "id" : "3b37b5ee-ed71-4d6f-85f7-985595374d37", - "code" : "OPR_STAFNO", - "name" : "经办员工编号", + "id" : "4c102940-15da-4cd3-9154-aa862e51c5e9", + "code" : "PRNT_CORP_CERTNO", + "name" : "母公司证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8854,9 +8854,9 @@ "order" : null, "tab" : null }, { - "id" : "007ba95f-bb65-4304-8358-34fbda0c9758", - "code" : "GRP_EXTCDT_LMT", - "name" : "集团授信额度", + "id" : "0e31ca89-0c3d-470a-9e07-688752964744", + "code" : "GRP_USED_LMT", + "name" : "集团已用额度", "description" : null, "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, @@ -8868,9 +8868,9 @@ "order" : null, "tab" : null }, { - "id" : "4a7ade0d-ba4c-4ac0-adae-8b9daed6cc61", - "code" : "CORE_ENTPRS_CERTNO", - "name" : "核心企业证件编号", + "id" : "4d6f7b9c-788d-4f44-802a-78f96e8a0dc8", + "code" : "REGSTR_CUTY_ZONE_CD", + "name" : "注册国家地区代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8882,23 +8882,23 @@ "order" : null, "tab" : null }, { - "id" : "4b273150-2dba-43aa-811f-6d0f6c392cb8", - "code" : "RGST_DT", - "name" : "登记日期", + "id" : "5562fe1b-62cd-47a5-ac32-a76a32b54a2c", + "code" : "GRP_NM", + "name" : "集团名称", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "4bdec413-3d8c-42ed-a996-63392b312e08", - "code" : "ENTPRS_ECON_TYPE_CD", - "name" : "企业经济类型代码", + "id" : "57d8c54c-2d40-4af4-bbef-068426865a2e", + "code" : "CPGPSRNO", + "name" : "集团编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8910,9 +8910,9 @@ "order" : null, "tab" : null }, { - "id" : "4e7de9d4-6d41-4784-87bc-5f475b4332c5", - "code" : "LOAN_CARD_NO", - "name" : "贷款卡号", + "id" : "60255ebe-b1aa-44c0-886f-ac42ee1b4a28", + "code" : "REGPLC_ADMIN_DIV_CD", + "name" : "登记地行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8924,9 +8924,9 @@ "order" : null, "tab" : null }, { - "id" : "5c53cbfd-e117-45d6-be43-e548e84be188", - "code" : "REGSTR_CUTY_ZONE_CD", - "name" : "注册国家地区代码", + "id" : "60b81b65-9a69-4ef7-a4fd-8c7500f70e29", + "code" : "CORE_ENTPRS_CERT_TYPE_CD", + "name" : "核心企业证件类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8938,9 +8938,9 @@ "order" : null, "tab" : null }, { - "id" : "5ef3ad31-7377-4ea1-b234-9046887d7dda", - "code" : "CORE_ENTPRS_NM", - "name" : "核心企业名称", + "id" : "67a0aced-f535-4279-bc8b-add908a76d7a", + "code" : "ACTCNL_CERTNO", + "name" : "实际控制人证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8952,9 +8952,9 @@ "order" : null, "tab" : null }, { - "id" : "5f728302-c441-4f03-91b9-f7517b1b100d", - "code" : "ACTCNL_CERT_TYPE_CD", - "name" : "实际控制人证件类型代码", + "id" : "733a1687-e36c-4941-a3e3-741fa72fb4e7", + "code" : "PRNT_CORP_CUST_ID", + "name" : "母公司客户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8966,9 +8966,9 @@ "order" : null, "tab" : null }, { - "id" : "65275077-1491-4f58-a3af-b67c20706202", - "code" : "CUST_MGT_ORG_ID", - "name" : "管户机构编号", + "id" : "74361ac3-3248-4067-a61e-b7ef1fd9cdf9", + "code" : "PRNT_CORP_CERT_TYPE_CD", + "name" : "集团母公司证件类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -8983,7 +8983,7 @@ } ] }, { "type" : "FOLDER", - "id" : "de5d3105-312e-49ce-b349-67ef126d168f", + "id" : "075a566d-d4a2-4570-9110-c932d0850765", "type" : "FOLDER", "code" : "D1731650311754", "name" : "企业客户信息", @@ -8993,7 +8993,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "32426bed-932b-4479-9dca-58c803bbe90f", + "id" : "c678df58-aed6-4694-b0e6-7121e6436633", "type" : "UD_JAVA_CLASS", "code" : "D1731650340369", "name" : "企业客户信息", @@ -9003,9 +9003,9 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "9d265739-ae74-4a44-af0d-171388cfaefd", - "code" : "CUST_EN_NM", - "name" : "客户英文名称", + "id" : "ac7ea13a-60d5-4723-adfc-c77d4b8c45e2", + "code" : "LGRPST_PRINC_SPNM", + "name" : "法定代表人(负责人)姓名", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9017,23 +9017,23 @@ "order" : null, "tab" : null }, { - "id" : "b52ec0d1-f3eb-4388-a79f-fd3df7151de4", - "code" : "LOAN_CARD_ANNL_CHK_DT", - "name" : "贷款卡最新年审日期", + "id" : "c8d09bb1-07d1-455e-b0d8-724143ac20d4", + "code" : "LGRPST_PRINC_CERT_TYPE_CD", + "name" : "法定代表人(负责人)证件类型代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "b52581d3-966c-4286-91e0-1706874fe6b7", - "code" : "ORGTN_ORGCDCTF_NBR", - "name" : "组织机构代码证号码", + "id" : "c7f224e5-b877-4c9a-bb51-7123f2b6afce", + "code" : "CERTNO", + "name" : "证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9045,23 +9045,23 @@ "order" : null, "tab" : null }, { - "id" : "b45d0206-acc9-4b20-8be5-b0705720d031", - "code" : "LGRPST_PRINC_CERT_VALPRD_MATR_DT", - "name" : "法定代表人(负责人)证件有效期到期日期", + "id" : "c5a1c1f8-dfbf-4f69-b1ad-99d0f7438c17", + "code" : "CORP_CUST_TYPE_CD", + "name" : "对公客户类型代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "b3ade87c-60fd-4879-b55e-58fb039ea6dc", - "code" : "LGRPST_CNTCPH", - "name" : "法定代表人联系电话", + "id" : "c37a5ac9-1b07-47ec-83ad-af0ba15054c8", + "code" : "SMETP_FLG", + "name" : "小企业标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9073,9 +9073,9 @@ "order" : null, "tab" : null }, { - "id" : "b08769aa-977e-4fef-bc65-174a651a30b8", - "code" : "CUST_CTGY_CD", - "name" : "客户类别代码", + "id" : "be8e52f7-1bf0-4c80-9ad2-1d8c581d8c68", + "code" : "CIMKT_COM_FLG", + "name" : "上市公司标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9087,23 +9087,23 @@ "order" : null, "tab" : null }, { - "id" : "ad0199c7-a2b2-469a-ac4c-ac45a31e9ada", - "code" : "ENTPRS_HOLD_FNDS_TYPE_CD", - "name" : "企业控股资金类型代码", + "id" : "bc5273fd-bca0-450e-979b-d8b0fd91256a", + "code" : "LOAN_CARD_ANNL_CHK_DT", + "name" : "贷款卡最新年审日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "ac0f4253-21cb-4adb-ac82-fb5764a05439", - "code" : "UNIF_SCTY_CRCD", - "name" : "统一社会信用代码", + "id" : "b7ab0706-42b6-4484-8449-12d92f3396f2", + "code" : "BIZ_LICS_NO", + "name" : "营业执照号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9115,23 +9115,23 @@ "order" : null, "tab" : null }, { - "id" : "a7f7d6d6-e0ec-43e9-b535-466f11878e6e", - "code" : "BELG_CPGPSRNO", - "name" : "所属集团编号", + "id" : "b5367027-36ac-4e7c-adf1-03792ab50724", + "code" : "RCNT_UPD_DT", + "name" : "最近更新日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "a5dcb024-73c8-41ae-9a3c-d1b670819cc7", - "code" : "FSTETB_CRLNREL_TIME", - "name" : "首次建立信贷关系时间", + "id" : "b428e52c-e674-4dc5-bddd-73dba0e03350", + "code" : "GRCST_FLG", + "name" : "集团客户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9143,9 +9143,9 @@ "order" : null, "tab" : null }, { - "id" : "a21970c6-c479-4881-9d54-05b6596c78a9", - "code" : "SMETP_FLG", - "name" : "小企业标志", + "id" : "aebe5140-331e-4fec-a5d5-5d5b358b5443", + "code" : "REGSTR_DSTCY_CD", + "name" : "注册区县代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9157,9 +9157,9 @@ "order" : null, "tab" : null }, { - "id" : "b5a353ba-8a9a-40bf-88e0-5c963a56cfda", - "code" : "BELG_INDS_SUBTYPE_CD", - "name" : "所属行业子类代码", + "id" : "ca886b04-926a-4cbb-afc0-bde71276b0dc", + "code" : "ENTPRS_HOLD_FNDS_TYPE_CD", + "name" : "企业控股资金类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9171,9 +9171,9 @@ "order" : null, "tab" : null }, { - "id" : "9d007d5e-6d95-41c2-b9ec-04128a03508d", - "code" : "LOAN_CERT_NO", - "name" : "贷款证号", + "id" : "ac360540-0fd2-4f67-8886-8d027c74c78d", + "code" : "TX_CNT_PTY_FLG", + "name" : "交易对手标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9185,9 +9185,9 @@ "order" : null, "tab" : null }, { - "id" : "999c5fb8-c585-4a27-91fb-4d094c9fcceb", - "code" : "LGRPST_PRINC_SPNM", - "name" : "法定代表人(负责人)姓名", + "id" : "aa324172-61c2-491f-b662-4a863730e57d", + "code" : "H2L1_FLG", + "name" : "两高一剩标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9199,23 +9199,23 @@ "order" : null, "tab" : null }, { - "id" : "9804f14f-0632-4f63-8132-c0d46004753e", - "code" : "BIZ_LICS_MATR_DT", - "name" : "营业执照号码到期日", + "id" : "a6ddb47a-f25b-47f1-98cd-aba71c267bda", + "code" : "RGST_ORG_ID", + "name" : "登记机构编号", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "956b36e2-ce25-4046-b8ba-8163917ea77f", - "code" : "CUST_MGT_ORG_ID", - "name" : "管户机构编号", + "id" : "9fe56a0f-0e6c-40a4-9f67-e06722d5de19", + "code" : "FIN_LICSNBR", + "name" : "金融许可证号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9227,37 +9227,23 @@ "order" : null, "tab" : null }, { - "id" : "95016131-cd22-46b4-a0f8-0f74ff2610ff", - "code" : "RECV_CAP", - "name" : "实收资本", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : null, - "valueTypeIsList" : false, - "defaultValue" : null, - "valueCalculation" : "", - "order" : null, - "tab" : null - }, { - "id" : "9115905a-90eb-4c5c-a148-c2fe04aa28d3", - "code" : "REGSTR_DT", - "name" : "注册日期", + "id" : "9f71dc77-7921-484b-8176-4a21a3b4d9c7", + "code" : "INN_JGDRSLT_CD", + "name" : "内部评级结果代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "90a2a7eb-3207-49b7-8fb1-844cca8ac069", - "code" : "CUST_SHT_NM", - "name" : "客户简称", + "id" : "9ec0db3e-875c-4978-aa51-f2cbe2b07697", + "code" : "BELG_INDS_SUBTYPE_CD", + "name" : "所属行业子类代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9269,9 +9255,9 @@ "order" : null, "tab" : null }, { - "id" : "7cd7bbeb-29e0-4a5c-b434-1df223d48f5a", - "code" : "OPEN_ACCT_ORG_ID", - "name" : "开户机构编号", + "id" : "9ce33399-6aec-4969-8d78-b3fe2e3f85ba", + "code" : "EXT_JGDRSLT_ORGNM", + "name" : "外部评级机构名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9283,9 +9269,9 @@ "order" : null, "tab" : null }, { - "id" : "7b7b02a6-5154-4092-b5c6-4f85787be5be", - "code" : "EXT_JGDRSLT_ORGNM", - "name" : "外部评级机构名称", + "id" : "9b9abccc-eca9-4215-b7d2-7fd9f6f0d816", + "code" : "EMAIL", + "name" : "电子邮箱", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9297,9 +9283,9 @@ "order" : null, "tab" : null }, { - "id" : "cef8e502-68b4-4c33-86f6-f9c421eaf60e", - "code" : "MBR_TYPE_CD", - "name" : "成员类型代码", + "id" : "91f89dfa-4970-441b-a24d-af8407bd0f18", + "code" : "OPEN_ACCT_CERTNO", + "name" : "开户证号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9311,9 +9297,9 @@ "order" : null, "tab" : null }, { - "id" : "f812ef69-97fb-40ba-99f3-d9e805491f34", - "code" : "CUST_ID", - "name" : "客户编号", + "id" : "e19ba4c7-5ad8-4bd5-8060-dd74681570a2", + "code" : "CSTMNM", + "name" : "客户名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9325,13 +9311,13 @@ "order" : null, "tab" : null }, { - "id" : "f3bd26d0-432d-41b3-985b-5f4d676d94e9", - "code" : "BIZ_LICS_ANNL_CHK_DT", - "name" : "营业执照最新年检日期", + "id" : "fd4c0262-afbc-457a-818a-a3b8b839a8ed", + "code" : "REGSTR_FNDS", + "name" : "注册资金", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, - "valueScale" : null, + "valueScale" : 2, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, @@ -9339,9 +9325,9 @@ "order" : null, "tab" : null }, { - "id" : "ede75a02-8562-4c1a-8390-181c1e62187b", - "code" : "UNT_ADDR", - "name" : "单位地址", + "id" : "fbb62fe6-e100-4237-824f-c22bde15f54c", + "code" : "LOCL_GOV_CPTN_PLTF_FLG", + "name" : "地方政府融资平台标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9353,9 +9339,9 @@ "order" : null, "tab" : null }, { - "id" : "ea6bf426-3f79-4f6e-8788-625561f5e272", - "code" : "INN_JGDRSLT_CD", - "name" : "内部评级结果代码", + "id" : "f6b8419c-a3ef-473a-92e7-558fa6846ce2", + "code" : "FSTETB_CRLNREL_TIME", + "name" : "首次建立信贷关系时间", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9367,9 +9353,9 @@ "order" : null, "tab" : null }, { - "id" : "e59329b5-23ce-4ca1-9a50-65a45c9d7581", - "code" : "REGSTR_FNDS_CUR_CD", - "name" : "注册资金币种代码", + "id" : "f3f32c82-2f7d-483e-aa7b-33f793bea831", + "code" : "ENTPRS_SIZE_CD", + "name" : "企业规模代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9381,23 +9367,23 @@ "order" : null, "tab" : null }, { - "id" : "e568912a-2763-40f4-81f7-6a22188b119f", - "code" : "NEXT_CHK_DT", - "name" : "下一重检日期", + "id" : "f366a541-82b7-4092-841e-f32468aebae2", + "code" : "MBR_TYPE_CD", + "name" : "成员类型代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "dfedc153-a2b6-416f-91d0-e45e461e60a3", - "code" : "PBC_FNORG_ECD", - "name" : "人行金融机构编码", + "id" : "edddf238-e8b7-49fd-95fb-b569e5c20b2f", + "code" : "LGPSNCD", + "name" : "法人代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9409,23 +9395,23 @@ "order" : null, "tab" : null }, { - "id" : "d77feaff-f044-4cda-bcb7-13acc9d5717a", - "code" : "RGST_DT", - "name" : "登记日期", + "id" : "e555edc7-1ca4-4ff1-826d-c8355dad067a", + "code" : "GREEN_LOAN_FLG", + "name" : "绿色贷款标志", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "d72b7c59-f3be-49a2-a47e-38799eb3b3c4", - "code" : "LOCL_GOV_CPTN_PLTF_FLG", - "name" : "地方政府融资平台标志", + "id" : "e3a54594-a9e0-40fd-b53b-6f2e1fb40298", + "code" : "CRDLN_CUST_FLG", + "name" : "信贷客户标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9437,9 +9423,9 @@ "order" : null, "tab" : null }, { - "id" : "d3d7b9d1-24d1-4dcd-bdde-3f29a516d1cd", - "code" : "EXT_JGDRSLT_CD", - "name" : "外部评级结果代码", + "id" : "e1fca9cb-25f2-4ce2-b4d4-5a630bfd6c8c", + "code" : "BELG_CPGPSRNO", + "name" : "所属集团编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9451,9 +9437,9 @@ "order" : null, "tab" : null }, { - "id" : "75c49b65-4ede-4a2c-b3ca-5ddb9856c736", - "code" : "REGSTR_CUTY_ZONE_CD", - "name" : "注册国家地区代码", + "id" : "e1cc1340-c142-49b2-8bde-ded4c3ac2c21", + "code" : "ENTPRS_ECON_TYPE_CD", + "name" : "企业经济类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9465,9 +9451,9 @@ "order" : null, "tab" : null }, { - "id" : "cd554e0c-5983-46e4-aa9d-b4584d4a339e", - "code" : "OPEN_ACCT_CERTNO", - "name" : "开户证号", + "id" : "9176c43f-1eef-4209-b112-80069d646b95", + "code" : "LGRPST_PRINC_CERTNO", + "name" : "法定代表人(负责人)证件号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9479,23 +9465,23 @@ "order" : null, "tab" : null }, { - "id" : "cbd1ee49-c5ac-4dd5-bea1-717066890150", - "code" : "UNT_TEL", - "name" : "单位电话", + "id" : "ded5d5a8-2a27-4d69-8ca5-deee028b2baa", + "code" : "CLOS_ACCT_DT", + "name" : "销户日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "ca2e1b42-c154-4e70-a126-8ca6b4c6790c", - "code" : "EMAIL", - "name" : "电子邮箱", + "id" : "de9e9f69-d732-4bbc-a69d-02dcd998d5f3", + "code" : "MBANK_SHRHD_FLG", + "name" : "本行股东标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9507,9 +9493,9 @@ "order" : null, "tab" : null }, { - "id" : "c933b896-230c-4258-9d57-68165f77b54b", - "code" : "TAXADM_REGIST", - "name" : "税务登记证", + "id" : "dbc42cf9-e673-4689-b3cf-2df8e45abb2a", + "code" : "UNT_TEL", + "name" : "单位电话", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9521,9 +9507,9 @@ "order" : null, "tab" : null }, { - "id" : "c8ad71d1-a091-4146-809d-8a321b03c472", - "code" : "LAST_CHK_DT", - "name" : "上一重检日期", + "id" : "d88212c6-9905-49ce-82b3-fc821ce45972", + "code" : "REGSTR_VALD_DT", + "name" : "注册有效日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -9535,9 +9521,9 @@ "order" : null, "tab" : null }, { - "id" : "c45f389d-9a1c-4755-8a2a-f8a5fc2e67e1", - "code" : "OPEN_ACCT_DT", - "name" : "开户日期", + "id" : "d64d81c5-cba0-474a-8d1b-d691f90ea069", + "code" : "RGST_DT", + "name" : "登记日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -9549,37 +9535,37 @@ "order" : null, "tab" : null }, { - "id" : "bb4ae348-289f-461d-9114-42cdf42cf016", - "code" : "RCNT_UPD_DT", - "name" : "最近更新日期", + "id" : "d2cbc658-d2ec-4c89-966c-58cb47b51639", + "code" : "TAXADM_REGIST", + "name" : "税务登记证", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "b75ff46e-04c4-4f9b-9e03-177be82c83bb", - "code" : "ORGCDCF_MATR_DT", - "name" : "组织机构代码证到期日", + "id" : "d0b86593-ae95-4ca5-8b67-e745c75e215f", + "code" : "IBANK_ORG_TYPE_CD", + "name" : "同业机构类型代码", "description" : null, - "valueType" : "java.util.Date", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "b73c64d7-f836-416b-a744-6637764a9857", - "code" : "REGSTR_VALD_DT", - "name" : "注册有效日期", + "id" : "cdd58bda-110e-4f36-b178-ed4bcba3b00b", + "code" : "ESTBL_DT", + "name" : "成立日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -9591,9 +9577,9 @@ "order" : null, "tab" : null }, { - "id" : "1706d7d7-535c-4bd0-a471-8b4a900055f8", - "code" : "RECV_CAP_CUR_CD", - "name" : "实收资本币种代码", + "id" : "cb81ca09-e1b4-4fb4-a786-e65b791c37e5", + "code" : "BELG_INDS_CD", + "name" : "所属行业代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9605,9 +9591,9 @@ "order" : null, "tab" : null }, { - "id" : "3a28103e-8383-41f2-955c-caf6abb3db25", - "code" : "CUST_STAT_CD", - "name" : "客户状态代码", + "id" : "1c536adb-26ae-4f03-833c-1e09e15ad4c5", + "code" : "FIN_IBANK_EXLS_FLG", + "name" : "金融同业专属标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9619,9 +9605,9 @@ "order" : null, "tab" : null }, { - "id" : "35806913-f347-4e71-9aff-936cf898476a", - "code" : "CLOS_ACCT_DT", - "name" : "销户日期", + "id" : "3a8c98f2-e6aa-48a9-9e32-b01487ce2fa0", + "code" : "LAST_CHK_DT", + "name" : "上一重检日期", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -9633,9 +9619,9 @@ "order" : null, "tab" : null }, { - "id" : "305f5bdc-34c6-40af-bc9e-68ab2052a3ac", - "code" : "GREEN_LOAN_FLG", - "name" : "绿色贷款标志", + "id" : "378ef729-1410-4bbd-914e-71495a5579c8", + "code" : "UNT_LCTIN_ADMIN_DIV_CD", + "name" : "单位所在地行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9647,9 +9633,23 @@ "order" : null, "tab" : null }, { - "id" : "2fab689f-1068-4ad9-a711-63236134989d", - "code" : "BIZ_LICS_NO", - "name" : "营业执照号码", + "id" : "355331a2-5265-4c5f-ab03-d820fd7bfea8", + "code" : "BIZ_LICS_MATR_DT", + "name" : "营业执照号码到期日", + "description" : null, + "valueType" : "java.util.Date", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : null, + "tab" : null + }, { + "id" : "344cf9cf-61dc-41a7-85b1-2e6b800576b0", + "code" : "CUST_MGT_ORG_ID", + "name" : "管户机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9661,9 +9661,9 @@ "order" : null, "tab" : null }, { - "id" : "2ea41ea1-7667-4742-8ba3-8854fc5f3968", - "code" : "REGSTR_DSTCY_CD", - "name" : "注册区县代码", + "id" : "2e30560e-1586-4e6f-b3e6-9724aa8737cb", + "code" : "CUST_MGT_STAFNO", + "name" : "管户员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9675,9 +9675,9 @@ "order" : null, "tab" : null }, { - "id" : "2de16e2d-9f73-4391-9cbb-49be6df0ddc3", - "code" : "LGRPST_PRINC_CERT_TYPE_CD", - "name" : "法定代表人(负责人)证件类型代码", + "id" : "266b37f9-c641-4473-a14e-e913f3c457b3", + "code" : "SMALL_MICRO_FIRMR_FLG", + "name" : "小微企业主标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9689,9 +9689,9 @@ "order" : null, "tab" : null }, { - "id" : "2d07c32d-41dc-4866-b02d-4d1ad3319812", - "code" : "ESTBL_DT", - "name" : "成立日期", + "id" : "247f4802-d37b-437f-948d-0356d826e991", + "code" : "ORGCDCF_MATR_DT", + "name" : "组织机构代码证到期日", "description" : null, "valueType" : "java.util.Date", "valueTypeVersion" : null, @@ -9703,9 +9703,9 @@ "order" : null, "tab" : null }, { - "id" : "28d93800-5724-4bd3-b348-c48b09d26aca", - "code" : "CSTMNM", - "name" : "客户名称", + "id" : "1efb9697-3182-4b86-8b72-69e46a487800", + "code" : "CUST_SHT_NM", + "name" : "客户简称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9717,9 +9717,9 @@ "order" : null, "tab" : null }, { - "id" : "27ef4273-38dc-471e-9900-f1cd4c18bac2", - "code" : "CORP_CUST_TYPE_CD", - "name" : "对公客户类型代码", + "id" : "1e2fbec1-50ec-4ed6-b952-f866cfa810fe", + "code" : "LOAN_CARD_NO", + "name" : "贷款卡号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9731,23 +9731,23 @@ "order" : null, "tab" : null }, { - "id" : "26710382-99f6-4e6d-ab33-5931c6e5f4dc", - "code" : "CUST_HOME_ABROD_IND", - "name" : "境内外标识", + "id" : "1d2592ff-fd8d-4d5a-84de-fddbc347836a", + "code" : "BIZ_LICS_ANNL_CHK_DT", + "name" : "营业执照最新年检日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "3c6c733b-621e-4da8-a75c-71a71267e571", - "code" : "ARAF_FLG", - "name" : "三农标志", + "id" : "3a91c010-5f1a-4731-bd9c-3a98209ece9f", + "code" : "CUST_ID", + "name" : "客户编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9759,9 +9759,9 @@ "order" : null, "tab" : null }, { - "id" : "16798f4d-a91d-4a36-9f0f-24f674aa4b6e", - "code" : "REGSTR_ADDR", - "name" : "注册地址", + "id" : "15ef673c-d5f4-415c-9558-36f621f322a7", + "code" : "ORGTN_ORG_TYPE_CD", + "name" : "组织机构类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9773,9 +9773,9 @@ "order" : null, "tab" : null }, { - "id" : "14d8c5d6-b5d4-469a-85f1-54c6fa22bafb", - "code" : "SMALL_MICRO_FIRMR_FLG", - "name" : "小微企业主标志", + "id" : "157bdefd-5918-4859-96de-5374ab009930", + "code" : "OPEN_ACCT_ORG_ID", + "name" : "开户机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9787,9 +9787,9 @@ "order" : null, "tab" : null }, { - "id" : "14314fb7-e200-4db4-bb8f-eecb06ba1de3", - "code" : "CRDLN_CUST_FLG", - "name" : "信贷客户标志", + "id" : "12cea182-f3df-4972-89f5-533cbf46baad", + "code" : "REGSTR_FNDS_CUR_CD", + "name" : "注册资金币种代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9801,23 +9801,23 @@ "order" : null, "tab" : null }, { - "id" : "0fe1a95c-118e-4863-a79a-8fa863c0eaa0", - "code" : "MBANK_SHRHD_FLG", - "name" : "本行股东标志", + "id" : "1247d9d7-491f-4800-9ccb-101392011693", + "code" : "EMP_PSNQTY", + "name" : "员工人数", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.lang.Long", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "05b57e6b-38f5-4e89-82f6-10610b68540f", - "code" : "H2L1_FLG", - "name" : "两高一剩标志", + "id" : "10407c90-7f4f-4c8c-a429-3dae0d75696e", + "code" : "CUST_STAT_CD", + "name" : "客户状态代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9829,9 +9829,9 @@ "order" : null, "tab" : null }, { - "id" : "0416d218-ecfb-4725-bc7a-9029932fd411", - "code" : "CERTNO", - "name" : "证件号码", + "id" : "0e61cbad-07b5-4a2c-ab06-a6a1eb93b922", + "code" : "CUST_HOME_ABROD_IND", + "name" : "境内外标识", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9843,9 +9843,9 @@ "order" : null, "tab" : null }, { - "id" : "041503e4-a7b2-4e75-9632-5f7789debffa", - "code" : "FIN_IBANK_EXLS_FLG", - "name" : "金融同业专属标志", + "id" : "0934ffd1-5b7f-40cd-ac6f-334e5b21d940", + "code" : "ARAF_FLG", + "name" : "三农标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9857,9 +9857,9 @@ "order" : null, "tab" : null }, { - "id" : "018fca9b-5bee-4d2d-8d92-7fbdb94c9aed", - "code" : "LOAN_CARD_NO", - "name" : "贷款卡号", + "id" : "0819bdca-52b2-4a4a-85cb-7ec81b24b512", + "code" : "UNIF_SCTY_CRCD", + "name" : "统一社会信用代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9871,9 +9871,9 @@ "order" : null, "tab" : null }, { - "id" : "0148deec-b577-479f-b6fa-02f35a1efb7b", - "code" : "UNT_LCTIN_ADMIN_DIV_CD", - "name" : "单位所在地行政区划代码", + "id" : "06ec6925-6caa-4d04-9fed-5f355ec1c2c2", + "code" : "UNT_ADDR", + "name" : "单位地址", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9885,37 +9885,37 @@ "order" : null, "tab" : null }, { - "id" : "5ced46cf-9d80-4e57-a256-4433c0b14959", - "code" : "EMP_PSNQTY", - "name" : "员工人数", + "id" : "65df33f4-e327-48a4-a5dd-866240fb13af", + "code" : "EXT_JGDRSLT_CD", + "name" : "外部评级结果代码", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "752a5018-6a37-49fc-83e5-64350489153d", - "code" : "CERT_TYPE_CD", - "name" : "证件类型代码", + "id" : "886a4fef-af7f-422c-b4c0-b199a456f9a2", + "code" : "OPEN_ACCT_DT", + "name" : "开户日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "6fa1922e-ef2f-403d-a5b7-319ca5a8a453", - "code" : "ETPSN_STAFNO", - "name" : "录入人员工编号", + "id" : "7e092987-2751-4ff2-ac24-32b95437563a", + "code" : "PBC_FNORG_ECD", + "name" : "人行金融机构编码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9927,23 +9927,23 @@ "order" : null, "tab" : null }, { - "id" : "6cdb7502-1aae-48cc-a865-1c0543ad2bd5", - "code" : "ENTPRS_ECON_TYPE_CD", - "name" : "企业经济类型代码", + "id" : "7bec98af-42ac-41e9-bebc-2ef68135b72a", + "code" : "LGRPST_PRINC_CERT_VALPRD_MATR_DT", + "name" : "法定代表人(负责人)证件有效期到期日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "6b3b8991-eae3-4101-beb8-968ac7e3e384", - "code" : "FIN_LICSNBR", - "name" : "金融许可证号", + "id" : "7b6be1a4-b1ed-4db5-9edd-cc2dd998e13e", + "code" : "CERT_TYPE_CD", + "name" : "证件类型代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9955,23 +9955,23 @@ "order" : null, "tab" : null }, { - "id" : "696f5560-e082-4f50-a8fc-33e1716bbf24", - "code" : "ENTPRS_SIZE_CD", - "name" : "企业规模代码", + "id" : "79ab2c4c-e3b4-410e-a60f-1fa90f7031aa", + "code" : "RECV_CAP", + "name" : "实收资本", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.math.BigDecimal", "valueTypeVersion" : null, - "valueScale" : null, + "valueScale" : 2, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "67ebc1eb-177a-4545-bc7e-afefc0fe69bf", - "code" : "GRCST_FLG", - "name" : "集团客户标志", + "id" : "78c72430-cee4-495d-9195-70d4e70257a7", + "code" : "CUST_EN_NM", + "name" : "客户英文名称", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9983,9 +9983,9 @@ "order" : null, "tab" : null }, { - "id" : "66ab32da-e468-4afb-b9ce-7583f5cb36ae", - "code" : "ISSUR_FLG", - "name" : "发行人标志", + "id" : "734bfa2f-f526-46ac-833f-111db2ffda41", + "code" : "MANGE_ZONE_ADMIN_DIV_CD", + "name" : "经营地区行政区划代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -9997,9 +9997,9 @@ "order" : null, "tab" : null }, { - "id" : "6561805d-dd9b-4f96-82db-261999f7d6f0", - "code" : "RGST_ORG_ID", - "name" : "登记机构编号", + "id" : "7057434a-c833-4fb9-872f-88a54a437ec5", + "code" : "ETPSN_STAFNO", + "name" : "录入人员工编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10011,9 +10011,9 @@ "order" : null, "tab" : null }, { - "id" : "63798b18-e6b2-433e-93dd-e17bfbc31059", - "code" : "IBANK_ORG_TYPE_CD", - "name" : "同业机构类型代码", + "id" : "6ef3335f-22e8-4090-ab17-b2c68b7462fe", + "code" : "ORGTN_ORGCDCTF_NBR", + "name" : "组织机构代码证号码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10025,9 +10025,9 @@ "order" : null, "tab" : null }, { - "id" : "6107e7b0-29ee-49ac-b216-c588991c0561", - "code" : "LGPSNCD", - "name" : "法人代码", + "id" : "6c820282-022f-4206-ae30-899fae58ebda", + "code" : "CUST_CTGY_CD", + "name" : "客户类别代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10039,9 +10039,9 @@ "order" : null, "tab" : null }, { - "id" : "0086e1a6-d2a0-4f77-be99-bf09972f0ddd", - "code" : "BELG_INDS_CD", - "name" : "所属行业代码", + "id" : "047f75f6-dd31-4ab3-a614-8f3bf8045986", + "code" : "LOAN_CERT_NO", + "name" : "贷款证号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10053,9 +10053,9 @@ "order" : null, "tab" : null }, { - "id" : "5ae15553-8954-4e8d-8ad9-0fed68b8c7c2", - "code" : "MANGE_ZONE_ADMIN_DIV_CD", - "name" : "经营地区行政区划代码", + "id" : "5e99b559-5814-4b66-8d4d-ec4191db75e4", + "code" : "ISSUR_FLG", + "name" : "发行人标志", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10067,23 +10067,23 @@ "order" : null, "tab" : null }, { - "id" : "5787cff9-bdcf-4673-bf17-03a414ffcbd3", - "code" : "REGSTR_FNDS", - "name" : "注册资金", + "id" : "4e69ebb2-ff5e-4abe-bd5c-3e697b99b6a1", + "code" : "FINAL_UPD_USR_ID", + "name" : "最后更新用户编号", "description" : null, - "valueType" : "java.math.BigDecimal", + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : 2, + "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : "", + "valueCalculation" : null, "order" : null, "tab" : null }, { - "id" : "55c562f4-a30e-4428-8360-c748f9473b5d", - "code" : "FINAL_UPD_USR_ID", - "name" : "最后更新用户编号", + "id" : "49d5ac78-758b-4085-be62-169b25834cd6", + "code" : "RECV_CAP_CUR_CD", + "name" : "实收资本币种代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10095,9 +10095,9 @@ "order" : null, "tab" : null }, { - "id" : "4ea253e7-2df2-406d-8dd2-066a2b7de845", - "code" : "LGRPST_PRINC_CERTNO", - "name" : "法定代表人(负责人)证件号码", + "id" : "48ad9de6-27cf-4e09-b67f-b7b39fbc89bf", + "code" : "LGRPST_CNTCPH", + "name" : "法定代表人联系电话", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10109,23 +10109,23 @@ "order" : null, "tab" : null }, { - "id" : "4dc79cc5-0fd1-4308-a55a-d788db2ce754", - "code" : "CUST_MGT_STAFNO", - "name" : "管户员工编号", + "id" : "449037c8-ae40-4141-9568-69479e0c3273", + "code" : "NEXT_CHK_DT", + "name" : "下一重检日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null }, { - "id" : "4d7cfd28-9aa7-4181-b967-13892ed5ae0d", - "code" : "TX_CNT_PTY_FLG", - "name" : "交易对手标志", + "id" : "419ca8b1-3ad2-4cd1-b606-ad0c3b31f533", + "code" : "FINAL_UPD_ORG_ID", + "name" : "最后更新机构编号", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10137,9 +10137,9 @@ "order" : null, "tab" : null }, { - "id" : "4930e022-11b5-4aaa-995e-d9bb6570ebd3", - "code" : "CIMKT_COM_FLG", - "name" : "上市公司标志", + "id" : "3cbc8fa6-5764-4a8e-af28-22ffa08e3383", + "code" : "REGSTR_ADDR", + "name" : "注册地址", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10151,9 +10151,9 @@ "order" : null, "tab" : null }, { - "id" : "45bb5da1-4628-4b59-bf5e-4f2603f69d21", - "code" : "ORGTN_ORG_TYPE_CD", - "name" : "组织机构类型代码", + "id" : "3c393fef-d117-44bb-9f58-0ecd3765fb29", + "code" : "REGSTR_CUTY_ZONE_CD", + "name" : "注册国家地区代码", "description" : null, "valueType" : "java.lang.String", "valueTypeVersion" : null, @@ -10165,17 +10165,17 @@ "order" : null, "tab" : null }, { - "id" : "43f1487c-ac9a-49a3-b00b-63579b1b0a28", - "code" : "FINAL_UPD_ORG_ID", - "name" : "最后更新机构编号", + "id" : "3b55097d-c57d-4c29-9e8d-15c0333d93b4", + "code" : "REGSTR_DT", + "name" : "注册日期", "description" : null, - "valueType" : "java.lang.String", + "valueType" : "java.util.Date", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "valueCalculation" : null, + "valueCalculation" : "", "order" : null, "tab" : null } ] @@ -10183,7 +10183,7 @@ } ] }, { "type" : "FOLDER", - "id" : "589fdadf-60b3-4870-80cb-25ec1c5a4140", + "id" : "e0eae3e3-c6e4-44a9-8b48-2a85cc38f054", "type" : "FOLDER", "code" : "D1736326737735", "name" : "枚举", @@ -10193,7 +10193,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "4fa9c4f4-7b0e-42d3-957a-41b411a9d80d", + "id" : "9b5eeb03-b644-4aac-ac76-139bcf723964", "type" : "FOLDER", "code" : "D1736471993338", "name" : "婚姻状况", @@ -10203,7 +10203,7 @@ "status" : null, "children" : [ { "type" : "ENUM", - "id" : "b2c8bb03-d8c5-400a-a505-5a7fd8a27034", + "id" : "947198eb-89f5-43c1-af47-5659a4bb9cc6", "type" : "ENUM", "code" : "E1736472013771", "name" : "婚姻状态枚举", @@ -10213,7 +10213,7 @@ "status" : "SKETCH", "children" : null, "items" : [ { - "id" : "762d8f23-5feb-4c9e-81fe-cce71eda6ca0", + "id" : "c66719a2-2f02-4535-817c-cf3dbc4885ba", "code" : "E1736472047589", "name" : "已婚", "valueType" : "STRING", @@ -10221,7 +10221,7 @@ "description" : null, "order" : 1 }, { - "id" : "6cfed723-2a88-4b7a-ae6e-79598977d75b", + "id" : "f455a578-6f62-4bd3-a26a-aabed53847af", "code" : "E1736472055028", "name" : "未婚", "valueType" : "STRING", @@ -10229,7 +10229,7 @@ "description" : null, "order" : 2 }, { - "id" : "c10e39f7-ca7a-4b29-ab4a-cdddbc079514", + "id" : "cf878150-28ca-4fe4-be29-e81bd8acab72", "code" : "E1736472067580", "name" : "离异", "valueType" : "STRING", @@ -10237,7 +10237,7 @@ "description" : null, "order" : 3 }, { - "id" : "57ce6e14-6e95-4955-a60b-40d7dd51a8d3", + "id" : "50773584-a112-4a9f-a21c-e10b9ab8406c", "code" : "E1736472628359", "name" : "再婚", "valueType" : "STRING", @@ -10247,7 +10247,7 @@ } ] }, { "type" : "ENUM", - "id" : "435954ea-de62-428d-bb67-4375ec9a426e", + "id" : "a46233e9-7c76-443e-82a8-8dee867b316e", "type" : "ENUM", "code" : "E1736472013771", "name" : "婚姻状态枚举", @@ -10257,7 +10257,7 @@ "status" : "SKETCH", "children" : null, "items" : [ { - "id" : "2860631d-ea1a-44dd-b8f7-114fc53eee61", + "id" : "e2b21b82-5a9d-42c8-9eab-119409c0a935", "code" : "E1736472047589", "name" : "已婚", "valueType" : "STRING", @@ -10265,7 +10265,7 @@ "description" : null, "order" : 1 }, { - "id" : "3d71d474-c110-4a0a-8045-f3b1b59c4482", + "id" : "148d5095-0919-498a-8bc4-acc333ed4abe", "code" : "E1736472055028", "name" : "未婚", "valueType" : "STRING", @@ -10273,7 +10273,7 @@ "description" : null, "order" : 2 }, { - "id" : "e429cae9-9838-4d41-bfd8-fac3501d6694", + "id" : "5196d86e-8376-49df-884a-ad2957af3f9a", "code" : "E1736472067580", "name" : "离异", "valueType" : "STRING", @@ -10284,7 +10284,7 @@ } ] }, { "type" : "FOLDER", - "id" : "6923ab4e-8fe4-49e6-9c2c-ea8480248746", + "id" : "2cb89ce8-43b1-4ee8-a880-f17728965e75", "type" : "FOLDER", "code" : "D1736471923661", "name" : "学历", @@ -10294,7 +10294,7 @@ "status" : null, "children" : [ { "type" : "ENUM", - "id" : "76a33cb7-b19b-4970-8f10-602011ece728", + "id" : "faa76d12-56f9-4fc9-8f07-2fe727d0ca07", "type" : "ENUM", "code" : "E1736326779919", "name" : "学历枚举", @@ -10304,7 +10304,7 @@ "status" : "SKETCH", "children" : null, "items" : [ { - "id" : "a3837364-dce4-4c8e-9f3f-ef50623d1653", + "id" : "faea98c3-5848-49a6-887c-f15c4724423e", "code" : "E1736326798564", "name" : "博士", "valueType" : "INTEGER", @@ -10312,7 +10312,7 @@ "description" : null, "order" : 1 }, { - "id" : "d587181b-85ad-40a9-b2df-4ca6871c9f66", + "id" : "e5f13fc9-c837-4a87-9c32-cab928e31baf", "code" : "E1736326807294", "name" : "硕士", "valueType" : "INTEGER", @@ -10320,7 +10320,7 @@ "description" : null, "order" : 2 }, { - "id" : "ee4685a5-68ad-4457-b154-24470b301068", + "id" : "f1820132-2bb7-4a1c-87cf-fe8e4f55dd75", "code" : "E1736326824682", "name" : "本科", "valueType" : "INTEGER", @@ -10328,7 +10328,7 @@ "description" : null, "order" : 3 }, { - "id" : "9712257c-a372-4348-a33b-72d27d45d077", + "id" : "d225ee7c-aea7-4ea8-9f2e-852d4a63d8b6", "code" : "E1736326833335", "name" : "专科", "valueType" : "INTEGER", @@ -10336,7 +10336,7 @@ "description" : null, "order" : 4 }, { - "id" : "47ee6bf4-302d-4cdb-b196-6c240a5382c8", + "id" : "17eced8e-2e2c-48b7-b363-f92c760e2b4c", "code" : "E1736326840873", "name" : "高中", "valueType" : "INTEGER", @@ -10344,7 +10344,7 @@ "description" : null, "order" : 5 }, { - "id" : "08090826-d445-4402-a974-42737dc9773b", + "id" : "c9b8ecd8-17df-4f73-8a8e-0e91ea157e39", "code" : "E1736326849009", "name" : "初中", "valueType" : "INTEGER", @@ -10352,7 +10352,7 @@ "description" : null, "order" : 6 }, { - "id" : "4032dc7c-01df-4800-a064-e4cc15e22bdc", + "id" : "0916cd42-57bd-4012-8975-471bc3ab87f7", "code" : "E1736326856329", "name" : "小学", "valueType" : "INTEGER", @@ -10360,7 +10360,7 @@ "description" : null, "order" : 7 }, { - "id" : "d6fc4aed-1990-4b4c-978f-3d2ea713a29c", + "id" : "84991b92-9dd1-4308-b157-d143c0248378", "code" : "E1736326867913", "name" : "文盲", "valueType" : "INTEGER", @@ -10372,7 +10372,7 @@ } ] }, { "type" : "FOLDER", - "id" : "09d01122-bdc8-4771-96e0-d676879e6264", + "id" : "8e7c8be6-bcd7-4607-9458-c22be355e92d", "type" : "FOLDER", "code" : "D1745285224389", "name" : "外数接口", @@ -10382,7 +10382,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "61a8035c-95bf-4b5c-902d-0c98a62cc593", + "id" : "41a62a80-abf6-4b93-b5c8-68987ebb487e", "type" : "FOLDER", "code" : "D1745285234998", "name" : "系统配置", @@ -10392,7 +10392,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "751914af-42c9-4bec-bba1-610b09110af7", + "id" : "10bf72b0-edd1-4e41-9881-6c9b1ddbe697", "type" : "UD_JAVA_CLASS", "code" : "D1745285712074", "name" : "多语言", @@ -10402,7 +10402,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "d622f45f-f39d-42d1-b2c0-b576b975d0ed", + "id" : "38ffa2a3-81c6-4d7f-b089-116b4d4a6572", "code" : "availableLocales", "name" : "可用区域", "description" : null, @@ -10416,7 +10416,7 @@ "order" : 1, "tab" : null }, { - "id" : "213155c3-63a1-430c-a385-381419813a90", + "id" : "9f189968-a089-46e7-b077-3c5cd6bb0229", "code" : "locale", "name" : "当前区域", "description" : null, @@ -10430,7 +10430,7 @@ "order" : 2, "tab" : null }, { - "id" : "4262f915-9fde-4a72-a7b4-8026a48e63bc", + "id" : "09b82f65-8a98-48d0-8542-e846ae122b4b", "code" : "fallbackLocale", "name" : "降级区域", "description" : null, @@ -10444,7 +10444,7 @@ "order" : 3, "tab" : null }, { - "id" : "e2809951-bf87-463b-a92c-a9ae573d7dbb", + "id" : "83e78eb0-3b40-4b00-af9b-c3993b637b98", "code" : "fallbackWarn", "name" : "降级时是否警告", "description" : null, @@ -10458,7 +10458,7 @@ "order" : 4, "tab" : null }, { - "id" : "c7123da2-a7c7-491d-b42f-0f3344b58af7", + "id" : "dc6f3920-a147-4361-8c27-73941e67456d", "code" : "missingWarn", "name" : "缺失时是否警告", "description" : null, @@ -10472,7 +10472,7 @@ "order" : 5, "tab" : null }, { - "id" : "a0543b8f-305e-40c0-9262-30faec6f560e", + "id" : "34a499db-eda5-4c49-80ca-334825c39958", "code" : "changeNotify", "name" : "区域改变时是否通知", "description" : null, @@ -10488,7 +10488,7 @@ } ] }, { "type" : "UD_JAVA_CLASS", - "id" : "af5e661a-8ce0-4eb4-bbee-7d2fec724455", + "id" : "70979e94-286f-44e3-8ad8-a088967e23c9", "type" : "UD_JAVA_CLASS", "code" : "D1745285562161", "name" : "设置", @@ -10498,7 +10498,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "1a637c8c-dfa0-40f6-ba7e-065039cf2038", + "id" : "8d4677fc-2d8b-4b51-b364-a41dc219fad5", "code" : "sessionTimeout", "name" : "会话过期时间(秒)", "description" : null, @@ -10512,7 +10512,7 @@ "order" : 1, "tab" : null }, { - "id" : "7fb6b756-d885-4026-9db3-cf10c67fc58a", + "id" : "22b65d97-62e4-4895-a5b1-b9c8f4cddc0c", "code" : "homePage", "name" : "首页URL", "description" : null, @@ -10526,7 +10526,7 @@ "order" : 2, "tab" : null }, { - "id" : "29c97259-03ed-40a7-8e2e-3046b0ca2e09", + "id" : "ce207264-ee21-407e-b0d8-3b4e1943236d", "code" : "notifierTaskNavigateFrontendRoutePath", "name" : "系统通知中我的任务前端路由路径", "description" : null, @@ -10540,7 +10540,7 @@ "order" : 3, "tab" : null }, { - "id" : "9e0e722c-fe91-4c8c-ab0c-d9ffb181677f", + "id" : "41f0e927-92d5-4148-a671-3af069626b1b", "code" : "i18n", "name" : "多语言", "description" : null, @@ -10554,7 +10554,7 @@ "order" : 4, "tab" : null }, { - "id" : "d58262c2-4f12-4517-b05d-f3e98c9c126e", + "id" : "9ea41ffe-c8db-419b-a65e-af2182a915cb", "code" : "isMultiCorporationMode", "name" : "是否多法人模式", "description" : null, @@ -10570,7 +10570,7 @@ } ] }, { "type" : "UD_JAVA_CLASS", - "id" : "68bc427d-829f-4e57-a8be-68f48ff84022", + "id" : "2b6a0c31-a567-4414-adf6-b017a2bec67d", "type" : "UD_JAVA_CLASS", "code" : "D1745285489641", "name" : "数据", @@ -10580,7 +10580,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "dedfcf36-ebec-4dcf-9994-a6659dfcd219", + "id" : "0bce74ae-1906-4876-a1d3-2c24de850014", "code" : "setting", "name" : "设置", "description" : null, @@ -10594,7 +10594,7 @@ "order" : 1, "tab" : null }, { - "id" : "a88b0280-1aae-4e7b-989f-d73d0618c4bb", + "id" : "419982e6-95fa-4dee-8fb9-516b46d55de1", "code" : "theme", "name" : "主题", "description" : null, @@ -10610,7 +10610,7 @@ } ] }, { "type" : "UD_JAVA_CLASS", - "id" : "622b05fe-8d5b-4de0-b368-da19b561fdab", + "id" : "19c3c985-6d04-46a1-8639-03b61155acbf", "type" : "UD_JAVA_CLASS", "code" : "D1745285261723", "name" : "系统配置响应", @@ -10620,7 +10620,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "541334c6-90aa-4f84-a73f-7ecff791dfb0", + "id" : "e48df77e-b754-4d6a-92a0-1281b8975418", "code" : "code", "name" : "代码", "description" : null, @@ -10634,7 +10634,7 @@ "order" : 1, "tab" : null }, { - "id" : "91b0630d-3dd3-4eb8-8156-af54ce1ed83f", + "id" : "9bf82304-e1be-4aca-aefa-d84bf53e73a5", "code" : "messageI18nKey", "name" : "多语言消息键", "description" : null, @@ -10648,7 +10648,7 @@ "order" : 2, "tab" : null }, { - "id" : "25456591-7742-4404-9069-2679abc4f1ab", + "id" : "f51e9bf7-a2dd-4c39-87a6-84357167fff4", "code" : "message", "name" : "消息", "description" : null, @@ -10662,7 +10662,7 @@ "order" : 3, "tab" : null }, { - "id" : "a5dac806-1fbf-498b-a78e-c9323eaa62df", + "id" : "210ca9fa-6962-48f2-811b-085d33bd72ab", "code" : "data", "name" : "数据", "description" : null, @@ -10678,7 +10678,7 @@ } ] }, { "type" : "UD_JAVA_CLASS", - "id" : "bcb18c85-ee6b-444c-bb08-0f2c0b3cbe53", + "id" : "5bb6f287-099c-4ce9-bc57-6e861720e611", "type" : "UD_JAVA_CLASS", "code" : "D1745286064892", "name" : "主题", @@ -10688,7 +10688,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "c5f56b1e-5247-46af-9788-9c3c51ef8d14", + "id" : "0f05cb3f-854b-4c21-aced-fee43c7866b5", "code" : "dark", "name" : "是否暗黑模式", "description" : null, @@ -10702,7 +10702,7 @@ "order" : 1, "tab" : null }, { - "id" : "e9a3dbe0-c012-4644-a56b-7dd98e558c07", + "id" : "cc2c8b1d-9967-4d91-8862-cdab9b46b585", "code" : "minWidth", "name" : "最小宽度", "description" : null, @@ -10716,7 +10716,7 @@ "order" : 2, "tab" : null }, { - "id" : "8894f574-674c-4660-9cd8-f14edb10d5bc", + "id" : "fadeb86d-1cd1-4695-8ade-5643bc271b25", "code" : "favicon", "name" : "favicon", "description" : null, @@ -10730,7 +10730,7 @@ "order" : 3, "tab" : null }, { - "id" : "57730152-8d6c-4c67-a8bd-3253829a5657", + "id" : "95e88ac1-e4cb-4803-a983-02e8322353de", "code" : "navigateMenuPosition", "name" : "导航菜单位置", "description" : null, @@ -10748,7 +10748,290 @@ } ] }, { "type" : "FOLDER", - "id" : "022e5601-197c-4a29-9b66-108a00b043f5", + "id" : "a6c51611-e1de-4181-ba99-ff4988d78c4e", + "type" : "FOLDER", + "code" : "D1750380389532", + "name" : "限额", + "namec" : "xiane", + "description" : null, + "version" : null, + "status" : null, + "children" : [ { + "type" : "UD_JAVA_CLASS", + "id" : "8447cf48-7abd-4682-9bfc-c68d0d9e9e1b", + "type" : "UD_JAVA_CLASS", + "code" : "D1750385418314", + "name" : "行业的资产负债率上下边界", + "namec" : "hangyedezichanfuzhailvshangxiabianjie", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "fields" : [ { + "id" : "4a7c66ec-253a-46f3-abb3-cad285e9d2ed", + "code" : "CategoryCode", + "name" : "门类代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 1, + "tab" : null + }, { + "id" : "71fa4d81-49ea-48f6-af33-c5fdde481bac", + "code" : "Category", + "name" : "门类名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 2, + "tab" : null + }, { + "id" : "b792e509-4c96-4550-b8f9-d476111e2519", + "code" : "Code", + "name" : "行业代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 3, + "tab" : null + }, { + "id" : "29339c4d-75bb-4313-a2ee-d7fd5228b400", + "code" : "Name", + "name" : "行业名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 4, + "tab" : null + }, { + "id" : "bc915dee-0c7c-41b4-9798-f0e278039f30", + "code" : "Max", + "name" : "资产负债率上边界", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 5, + "tab" : null + }, { + "id" : "f3fb42b9-34e4-4658-a8ac-335ea41de7b1", + "code" : "Min", + "name" : "资产负债率下边界", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 6, + "tab" : null + } ] + }, { + "type" : "UD_JAVA_CLASS", + "id" : "1c30b030-737e-4119-b7e3-5f273a995933", + "type" : "UD_JAVA_CLASS", + "code" : "D1750380395358", + "name" : "限额乘数", + "namec" : "xianechengshu", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "fields" : [ { + "id" : "5c600c45-93c4-42e0-a48a-7683455b929c", + "code" : "R", + "name" : "评级评级", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 1, + "tab" : null + }, { + "id" : "c10c2552-11a7-495c-9ff5-9194d030000f", + "code" : "V", + "name" : "限额乘数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 2, + "tab" : null + } ] + }, { + "type" : "UD_JAVA_CLASS", + "id" : "9eafb323-f158-4807-bfba-513a3382c0e7", + "type" : "UD_JAVA_CLASS", + "code" : "D1750387144201", + "name" : "限额行业分组", + "namec" : "xianehangyefenzu", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "fields" : [ { + "id" : "d03e146e-1f08-48d4-9da4-205619dee819", + "code" : "Group", + "name" : "限额行业分组", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 1, + "tab" : null + }, { + "id" : "c702fa3d-a51b-4b2d-955f-91be204dc9ed", + "code" : "Industry_Category", + "name" : "行业门类", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 2, + "tab" : null + }, { + "id" : "b6350f5c-5295-4809-9f10-bc5fb2560ef5", + "code" : "Industry_Name", + "name" : "行业名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 3, + "tab" : null + } ] + }, { + "type" : "UD_JAVA_CLASS", + "id" : "91a47716-1363-4a5a-9285-e75c999b56ba", + "type" : "UD_JAVA_CLASS", + "code" : "D1750391490654", + "name" : "息负债乘数", + "namec" : "xifuzhaichengshu", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "fields" : [ { + "id" : "ab5b26f2-f43a-43a4-afdb-ebd340cd9a10", + "code" : "CategoryCode", + "name" : "门类代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 1, + "tab" : null + }, { + "id" : "72ea452a-6fbf-4fb7-9fe7-6847f0ee3258", + "code" : "Category", + "name" : "门类名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 2, + "tab" : null + }, { + "id" : "b6e0268a-2e21-4a17-a5c7-d9fa053fbd68", + "code" : "Code", + "name" : "行业代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 3, + "tab" : null + }, { + "id" : "9016bebb-b54b-484f-bcf4-d4e3d8eca714", + "code" : "Name", + "name" : "行业名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 4, + "tab" : null + }, { + "id" : "c21011a3-7e04-478b-b43e-855e6fc9be30", + "code" : "Value", + "name" : "有息负债乘数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "valueCalculation" : "", + "order" : 5, + "tab" : null + } ] + } ] + }, { + "type" : "FOLDER", + "id" : "59de850b-b9b5-413c-9209-f03496abcf99", "type" : "FOLDER", "code" : "D1744079871723", "name" : "主标尺", @@ -10758,7 +11041,7 @@ "status" : null, "children" : [ { "type" : "UD_JAVA_CLASS", - "id" : "2cdcb2df-7237-493f-be86-887a6809e2e0", + "id" : "4c48bd2c-abcd-47a6-a7dd-72fe1c3bba15", "type" : "UD_JAVA_CLASS", "code" : "D1744079881265", "name" : "主标尺", @@ -10768,7 +11051,7 @@ "status" : "SKETCH", "children" : null, "fields" : [ { - "id" : "c3837dab-8fdd-4979-b2c6-78d9f3761c03", + "id" : "65829d80-628b-4d7b-bb30-2a76b4c20b63", "code" : "level", "name" : "等级", "description" : null, @@ -10782,7 +11065,7 @@ "order" : 1, "tab" : null }, { - "id" : "41701148-bd25-4a1b-ad98-73765e27f7db", + "id" : "5937f0e2-aa4e-409c-b2af-0fce4d503a65", "code" : "pd", "name" : "违约概率", "description" : null, @@ -10796,7 +11079,7 @@ "order" : 2, "tab" : null }, { - "id" : "b33dc0a5-4736-4175-923a-01e5d0f13cd3", + "id" : "ef1efba7-7bc6-4959-bbc4-8d1794082ed0", "code" : "pd_min", "name" : "违约概率下限(包含)", "description" : null, @@ -10810,7 +11093,7 @@ "order" : 3, "tab" : null }, { - "id" : "3dcbce83-a965-4628-b69e-56fd5b790754", + "id" : "e8f0bdfa-7e8d-47ec-b3bb-6497eea02277", "code" : "pd_max", "name" : "违约概率上限(不包含)", "description" : null, @@ -10824,7 +11107,7 @@ "order" : 4, "tab" : null }, { - "id" : "3bb11bfa-fdee-486a-9285-6dbbc0b5885e", + "id" : "478bfd1d-b66f-4223-b881-5d82fe86c543", "code" : "recommend", "name" : "准入建议", "description" : null, diff --git a/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例.json b/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例.json index 8ffec38e..5774c1a5 100644 --- a/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例.json +++ b/io.sc.engine.rule.server/src/main/resources/io/sc/engine/rule/server/sample/引擎示例.json @@ -1,6 +1,6 @@ { "type" : "FOLDER", - "id" : "f3cd74af-574b-4a16-a8e3-cb684d0af223", + "id" : "358b2c19-b676-4bdb-8f3a-5537aecd6694", "code" : "M1734933271604", "name" : "引擎示例", "description" : null, @@ -8,7 +8,7 @@ "status" : null, "children" : [ { "type" : "FOLDER", - "id" : "3ca83157-0b98-4861-b3ad-5c4792f7924e", + "id" : "ac6a640e-d07e-447b-8fe1-48e01b928498", "code" : "M1735263291797", "name" : "参数验证", "description" : null, @@ -16,7 +16,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "93c864d3-914b-43d6-a2cd-e1bccdf3dad9", + "id" : "e564a481-6bfc-4f6e-befa-83648581a6eb", "code" : "M1735263320833", "name" : "参数验证", "description" : null, @@ -25,69 +25,69 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "3c536d76-d149-46a4-a607-f63e4f8c2408", + "id" : "715e4b29-6903-4dff-839c-62aafe9777f5", "name" : "参数验证", "description" : null, "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "UN_PASSED", "parameters" : [ { - "id" : "04b90fde-42fe-4016-9233-647fb1226bf5", - "code" : "M1735263320833", - "inputValue" : null, + "id" : "26a0a9e1-356d-478a-a43d-b3d47dbb0688", + "code" : "P1735263597646", + "inputValue" : "2124-12-17 00:00:00", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "3dda64cf-5845-4c61-966b-9019b5e96f5d", - "code" : "P1735282723815", - "inputValue" : ".ccc.wspsc@163.com", + "id" : "65925c56-6921-4a6a-9231-e3a79417922c", + "code" : "P1735282951825", + "inputValue" : "123456789012345678901234567890123456-1", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "6f9ffad3-70eb-4251-bd52-0fb37e63c3cd", - "code" : "P1735263375675", - "inputValue" : "200", + "id" : "6db69742-86bb-45b7-b9eb-85c635250677", + "code" : "P1735282763902", + "inputValue" : "xxx", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "8b30b338-161b-4dc0-bf91-95c85f434b9e", - "code" : "P1735282763902", - "inputValue" : "xxx", + "id" : "9b44fd5e-408a-48c9-bc6b-bd8474d36599", + "code" : "M1735263320833", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : "UN_PASSED", + "testResult" : null, "skipCheck" : false }, { - "id" : "99139a54-2018-48d9-8c47-5a4c788a33f9", - "code" : "P1735282951825", - "inputValue" : "123456789012345678901234567890123456-1", + "id" : "db4e2a5b-73c7-4a35-8927-4dab814d4267", + "code" : "P1735282811969", + "inputValue" : "13100345678-021", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "9baef98e-9e4e-4e4a-9d07-181f7cb389e3", - "code" : "P1735282811969", - "inputValue" : "13100345678-021", + "id" : "e3c7439f-658e-4b56-9f6d-0c707af05bf7", + "code" : "P1735263375675", + "inputValue" : "200", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "ff77a15f-58db-41bf-a6d3-1fa290bc5e76", - "code" : "P1735263597646", - "inputValue" : "2124-12-17 00:00:00", + "id" : "eb501b50-5c72-4c0c-89f8-9cb30bec52a8", + "code" : "P1735282723815", + "inputValue" : ".ccc.wspsc@163.com", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -96,7 +96,7 @@ } ] } ], "model" : { - "id" : "3afceec0-34e3-496d-abd9-386f358b3870", + "id" : "da8214a5-3e7f-46f1-9ed0-e6af3a7db187", "code" : "M1735263320833", "name" : "参数验证", "description" : null, @@ -107,7 +107,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "0d8f2b91-4089-49e0-8e6a-40a6f1d8efdf", + "id" : "4e44b870-8cae-4078-b395-2016ed70dc9f", "code" : "P1735263375675", "name" : "年龄", "description" : null, @@ -120,13 +120,13 @@ "order" : 1, "validators" : [ { "type" : "NOT_EMPTY", - "id" : "2c145525-6111-42f5-bfb8-8f5edde868a6", + "id" : "1bb0635b-006f-4c6e-8010-cfda7590e062", "description" : null, "order" : 1, "tip" : "年龄不能为空" }, { "type" : "INTEGER_RANGE", - "id" : "eb1d4bf2-a3d4-4547-b2c1-63423c2c8e86", + "id" : "f9871290-d9ab-4c08-9b36-f0b6d731eed3", "description" : null, "order" : 2, "tip" : "年龄必须大于 0,且小于 150", @@ -138,7 +138,7 @@ "processors" : null }, { "type" : "IN", - "id" : "c33e3452-0559-4aec-a825-91aa9b5a4ec2", + "id" : "0065ad42-63d2-4b29-b229-919b2db2ed34", "code" : "P1735263597646", "name" : "公司注册日期", "description" : null, @@ -151,13 +151,13 @@ "order" : 2, "validators" : [ { "type" : "NOT_EMPTY", - "id" : "6827c2bf-3056-463d-ab18-daebaac19803", + "id" : "aae34975-cb9d-4b98-968f-08d036a22bff", "description" : null, "order" : 1, "tip" : "公司注册日期不能为空" }, { "type" : "EMPTY", - "id" : "010eedd3-f404-4465-97db-5b4f9d6bbef4", + "id" : "784edbae-5e2e-4223-91d2-e69258934110", "description" : null, "order" : 2, "tip" : "公司注册日期不能大于今天" @@ -165,7 +165,7 @@ "processors" : null }, { "type" : "IN", - "id" : "95b7c36c-b8c0-4d27-962a-2f35fafac7e7", + "id" : "a47bb1e2-60f4-40aa-baf3-22716cf5cfde", "code" : "P1735282723815", "name" : "邮箱地址", "description" : null, @@ -178,7 +178,7 @@ "order" : 3, "validators" : [ { "type" : "EMAIL", - "id" : "fe9f895a-a2a4-4a10-a8bc-8e7b8bdc5eba", + "id" : "0346fa82-1f67-4c17-89f6-6de89c1b3fe1", "description" : null, "order" : 1, "tip" : "必须是一个合法的邮箱地址" @@ -186,7 +186,7 @@ "processors" : null }, { "type" : "IN", - "id" : "d4a6e077-033d-4f8a-8725-95289445fada", + "id" : "62a1f0cc-0191-46c9-822c-8d21b4d60278", "code" : "P1735282763902", "name" : "保留", "description" : null, @@ -199,7 +199,7 @@ "order" : 4, "validators" : [ { "type" : "EMPTY", - "id" : "158f907e-c105-415c-b262-4c4dab2d334d", + "id" : "cd8e6cb6-67a1-41a1-a6e8-c6d05d48abd1", "description" : null, "order" : 1, "tip" : "保留给以后使用,目前只能传入空值" @@ -207,7 +207,7 @@ "processors" : null }, { "type" : "IN", - "id" : "dabd3035-7f0a-4d8d-b8b8-1898c5fd23de", + "id" : "8417e2a1-c46e-46fd-b4d1-23e7bb51af61", "code" : "P1735282811969", "name" : "手机号码", "description" : null, @@ -220,7 +220,7 @@ "order" : 5, "validators" : [ { "type" : "PATTERN", - "id" : "67004703-6299-4e44-b228-6263e5b35d9e", + "id" : "0943314a-05b8-4c04-8446-b531afd3fedc", "description" : null, "order" : 1, "tip" : "必须是一个合法的手机号", @@ -229,7 +229,7 @@ "processors" : null }, { "type" : "IN", - "id" : "26e8e6b2-d90f-4e70-ac47-a8c667cfa186", + "id" : "bcd2c3f6-78d6-4710-8f21-a4e09f221872", "code" : "P1735282951825", "name" : "交易ID", "description" : null, @@ -242,7 +242,7 @@ "order" : 6, "validators" : [ { "type" : "LENGTH_RANGE", - "id" : "86ff9744-cec8-46dd-a624-e76704d6ddc4", + "id" : "3c7838a9-4454-4c45-bcbe-c9ee135d28e8", "description" : null, "order" : 1, "tip" : "长度必须大于0,且必须小于等于36", @@ -260,258 +260,1017 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "3ae80b59-6e8b-4813-82a2-e203a5965289", - "code" : "M1734933291942", - "name" : "基本组件", + "id" : "1e7f5156-45d8-4858-82cd-a075fd0cbcb5", + "code" : "M1750380091719", + "name" : "风险限额", "description" : null, "version" : null, "status" : null, "children" : [ { - "type" : "MODEL", - "id" : "3a7ae17d-9ad5-44e7-81a6-600b4363974d", - "code" : "M1734933324012", - "name" : "001-对象属性赋值", + "type" : "FOLDER", + "id" : "f874d551-6a2d-4d19-9de4-8a5a77929d9a", + "code" : "M1750380108197", + "name" : "单一客户风险限额", "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { + "version" : null, + "status" : null, + "children" : [ { "type" : "MODEL", - "id" : "eb1c634f-3736-4381-89eb-492ba2c4365d", - "name" : "对象属性赋值", - "description" : null, - "lastTestDate" : "2025-04-23 17:06:20", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "53b20581-526c-4f35-b4b9-197206340aae", - "code" : "P1734933380399", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "{\n \"NCA001\" : 1.0,\n \"NCA001001\" : 1.0,\n \"NCA001002\" : null,\n \"NCA001003\" : 1.0,\n \"NCA001004\" : 1.0,\n \"NCA001005\" : 1.0,\n \"NCA001006\" : null,\n \"NCA001007\" : 1.0,\n \"NCA001008\" : 1.0,\n \"NCA001009\" : 1.0,\n \"NCA001010\" : null,\n \"NCA001011\" : 1.0,\n \"NCA001012\" : 1.0,\n \"NCA001013\" : 1.0,\n \"NCA001T\" : 1.0,\n \"NCA002\" : 1.0,\n \"NCA002001\" : null,\n \"NCA002002\" : null,\n \"NCA002003\" : 1.0,\n \"NCA002004\" : 1.0,\n \"NCA002005\" : null,\n \"NCA002006\" : null,\n \"NCA002007\" : 1.0,\n \"NCA002008\" : 1.0,\n \"NCA002009\" : 1.0,\n \"NCA002010\" : 1.0,\n \"NCA002011\" : 1.0,\n \"NCA002012\" : null,\n \"NCA002013\" : 1.0,\n \"NCA002014\" : 1.0,\n \"NCA002015\" : 1.0,\n \"NCA002016\" : 1.0,\n \"NCA002017\" : 1.0,\n \"NCA002018\" : 1.0,\n \"NCA002T\" : 1.0,\n \"NCAT\" : 1.0,\n \"NCC001\" : 1.0,\n \"NCC001001\" : 1.0,\n \"NCC001002\" : 1.0,\n \"NCC001003\" : 1.0,\n \"NCC001STI\" : 1.0,\n \"NCC001004\" : 1.0,\n \"NCC001005\" : 1.0,\n \"NCC001006\" : 1.0,\n \"NCC001007\" : 1.0,\n \"NCC001STO\" : 1.0,\n \"NCC001T\" : 1.0,\n \"NCC002\" : 1.0,\n \"NCC002001\" : 1.0,\n \"NCC002002\" : 1.0,\n \"NCC002003\" : 1.0,\n \"NCC002004\" : 1.0,\n \"NCC002005\" : 1.0,\n \"NCC002STI\" : 1.0,\n \"NCC002006\" : 1.0,\n \"NCC002007\" : 1.0,\n \"NCC002008\" : 1.0,\n \"NCC002009\" : 1.0,\n \"NCC002STO\" : 1.0,\n \"NCC002T\" : 1.0,\n \"NCC003\" : 1.0,\n \"NCC003001\" : 1.0,\n \"NCC003002\" : 1.0,\n \"NCC003003\" : 1.0,\n \"NCC003STI\" : 1.0,\n \"NCC003004\" : 1.0,\n \"NCC003005\" : 1.0,\n \"NCC003006\" : 1.0,\n \"NCC003STO\" : 1.0,\n \"NCC003T\" : 1.0,\n \"NCC004\" : 1.0,\n \"NCC005\" : 1.0,\n \"NCC005001\" : 1.0,\n \"NCC006\" : 1.0,\n \"NCL001\" : 1.0,\n \"NCL001001\" : 1.0,\n \"NCL001002\" : null,\n \"NCL001003\" : 1.0,\n \"NCL001004\" : 1.0,\n \"NCL001005\" : 1.0,\n \"NCL001006\" : 1.0,\n \"NCL001007\" : null,\n \"NCL001008\" : 1.0,\n \"NCL001009\" : 1.0,\n \"NCL001010\" : 1.0,\n \"NCL001011\" : 1.0,\n \"NCL001012\" : 1.0,\n \"NCL001013\" : 1.0,\n \"NCL001T\" : 1.0,\n \"NCL002\" : 1.0,\n \"NCL002001\" : 1.0,\n \"NCL002002\" : 1.0,\n \"NCL00200201\" : 1.0,\n \"NCL00200202\" : 1.0,\n \"NCL002003\" : null,\n \"NCL002004\" : 1.0,\n \"NCL002005\" : 1.0,\n \"NCL002006\" : 1.0,\n \"NCL002007\" : 1.0,\n \"NCL002008\" : 1.0,\n \"NCL002T\" : 1.0,\n \"NCL0020080101\" : 1.0,\n \"NCE001\" : 1.0,\n \"NCE001001\" : 1.0,\n \"NCE001002\" : 1.0,\n \"NCE00100201\" : 1.0,\n \"NCE00100202\" : 1.0,\n \"NCE001003\" : 1.0,\n \"NCE001004\" : 1.0,\n \"NCE001005\" : 1.0,\n \"NCE001006\" : 1.0,\n \"NCE001007\" : 1.0,\n \"NCE001008\" : 1.0,\n \"NCE001T\" : 1.0,\n \"NCLET\" : 1.0,\n \"NCI001\" : 1.0,\n \"NCI001001\" : 1.0,\n \"NCI00100101\" : 1.0,\n \"NCI00100102\" : 1.0,\n \"NCI00100103\" : 1.0,\n \"NCI00100104\" : 1.0,\n \"NCI00100105\" : 1.0,\n \"NCI0010010501\" : 1.0,\n \"NCI0010010502\" : 1.0,\n \"NCI001002\" : 1.0,\n \"NCI00100201\" : 1.0,\n \"NCI0010020101\" : 1.0,\n \"NCI0010020102\" : null,\n \"NCI00100202\" : null,\n \"NCI00100203\" : 1.0,\n \"NCI00100204\" : null,\n \"NCI00100205\" : 1.0,\n \"NCI00100206\" : 1.0,\n \"NCI002\" : 1.0,\n \"NCI002001\" : 1.0,\n \"NCI002002\" : 1.0,\n \"NCI003\" : 1.0,\n \"NCI003001\" : 1.0,\n \"NCI004\" : 1.0,\n \"NCI004001\" : 1.0,\n \"NCI004002\" : 1.0,\n \"NCI005\" : 1.0,\n \"NCI005001\" : 1.0,\n \"NCI00500101\" : 1.0,\n \"NCI00500102\" : 1.0,\n \"NCI00500103\" : null,\n \"NCI00500104\" : null,\n \"NCI005002\" : 1.0,\n \"NCI00500201\" : 1.0,\n \"NCI00500202\" : null,\n \"NCI00500203\" : null,\n \"NCI00500204\" : null,\n \"NCI00500205\" : null,\n \"NCI00500206\" : null,\n \"NCI006\" : 1.0,\n \"NCI007\" : 1.0,\n \"NCI007001\" : 1.0,\n \"NCI007002\" : 1.0\n}", - "resultValue" : "{\n \"NCA001\" : 1.0,\n \"NCA001001\" : 1.0,\n \"NCA001002\" : null,\n \"NCA001003\" : 1.0,\n \"NCA001004\" : 1.0,\n \"NCA001005\" : 1.0,\n \"NCA001006\" : null,\n \"NCA001007\" : 1.0,\n \"NCA001008\" : 1.0,\n \"NCA001009\" : 1.0,\n \"NCA001010\" : null,\n \"NCA001011\" : 1.0,\n \"NCA001012\" : 1.0,\n \"NCA001013\" : 1.0,\n \"NCA001T\" : 1.0,\n \"NCA002\" : 1.0,\n \"NCA002001\" : null,\n \"NCA002002\" : null,\n \"NCA002003\" : 1.0,\n \"NCA002004\" : 1.0,\n \"NCA002005\" : null,\n \"NCA002006\" : null,\n \"NCA002007\" : 1.0,\n \"NCA002008\" : 1.0,\n \"NCA002009\" : 1.0,\n \"NCA002010\" : 1.0,\n \"NCA002011\" : 1.0,\n \"NCA002012\" : null,\n \"NCA002013\" : 1.0,\n \"NCA002014\" : 1.0,\n \"NCA002015\" : 1.0,\n \"NCA002016\" : 1.0,\n \"NCA002017\" : 1.0,\n \"NCA002018\" : 1.0,\n \"NCA002T\" : 1.0,\n \"NCAT\" : 1.0,\n \"NCC001\" : 1.0,\n \"NCC001001\" : 1.0,\n \"NCC001002\" : 1.0,\n \"NCC001003\" : 1.0,\n \"NCC001STI\" : 1.0,\n \"NCC001004\" : 1.0,\n \"NCC001005\" : 1.0,\n \"NCC001006\" : 1.0,\n \"NCC001007\" : 1.0,\n \"NCC001STO\" : 1.0,\n \"NCC001T\" : 1.0,\n \"NCC002\" : 1.0,\n \"NCC002001\" : 1.0,\n \"NCC002002\" : 1.0,\n \"NCC002003\" : 1.0,\n \"NCC002004\" : 1.0,\n \"NCC002005\" : 1.0,\n \"NCC002STI\" : 1.0,\n \"NCC002006\" : 1.0,\n \"NCC002007\" : 1.0,\n \"NCC002008\" : 1.0,\n \"NCC002009\" : 1.0,\n \"NCC002STO\" : 1.0,\n \"NCC002T\" : 1.0,\n \"NCC003\" : 1.0,\n \"NCC003001\" : 1.0,\n \"NCC003002\" : 1.0,\n \"NCC003003\" : 1.0,\n \"NCC003STI\" : 1.0,\n \"NCC003004\" : 1.0,\n \"NCC003005\" : 1.0,\n \"NCC003006\" : 1.0,\n \"NCC003STO\" : 1.0,\n \"NCC003T\" : 1.0,\n \"NCC004\" : 1.0,\n \"NCC005\" : 1.0,\n \"NCC005001\" : 1.0,\n \"NCC006\" : 1.0,\n \"NCL001\" : 1.0,\n \"NCL001001\" : 1.0,\n \"NCL001002\" : null,\n \"NCL001003\" : 1.0,\n \"NCL001004\" : 1.0,\n \"NCL001005\" : 1.0,\n \"NCL001006\" : 1.0,\n \"NCL001007\" : null,\n \"NCL001008\" : 1.0,\n \"NCL001009\" : 1.0,\n \"NCL001010\" : 1.0,\n \"NCL001011\" : 1.0,\n \"NCL001012\" : 1.0,\n \"NCL001013\" : 1.0,\n \"NCL001T\" : 1.0,\n \"NCL002\" : 1.0,\n \"NCL002001\" : 1.0,\n \"NCL002002\" : 1.0,\n \"NCL00200201\" : 1.0,\n \"NCL00200202\" : 1.0,\n \"NCL002003\" : null,\n \"NCL002004\" : 1.0,\n \"NCL002005\" : 1.0,\n \"NCL002006\" : 1.0,\n \"NCL002007\" : 1.0,\n \"NCL002008\" : 1.0,\n \"NCL002T\" : 1.0,\n \"NCL0020080101\" : 1.0,\n \"NCE001\" : 1.0,\n \"NCE001001\" : 1.0,\n \"NCE001002\" : 1.0,\n \"NCE00100201\" : 1.0,\n \"NCE00100202\" : 1.0,\n \"NCE001003\" : 1.0,\n \"NCE001004\" : 1.0,\n \"NCE001005\" : 1.0,\n \"NCE001006\" : 1.0,\n \"NCE001007\" : 1.0,\n \"NCE001008\" : 1.0,\n \"NCE001T\" : 1.0,\n \"NCLET\" : 1.0,\n \"NCI001\" : 1.0,\n \"NCI001001\" : 1.0,\n \"NCI00100101\" : 1.0,\n \"NCI00100102\" : 1.0,\n \"NCI00100103\" : 1.0,\n \"NCI00100104\" : 1.0,\n \"NCI00100105\" : 1.0,\n \"NCI0010010501\" : 1.0,\n \"NCI0010010502\" : 1.0,\n \"NCI001002\" : 1.0,\n \"NCI00100201\" : 1.0,\n \"NCI0010020101\" : 1.0,\n \"NCI0010020102\" : null,\n \"NCI00100202\" : null,\n \"NCI00100203\" : 1.0,\n \"NCI00100204\" : null,\n \"NCI00100205\" : 1.0,\n \"NCI00100206\" : 1.0,\n \"NCI002\" : 1.0,\n \"NCI002001\" : 1.0,\n \"NCI002002\" : 1.0,\n \"NCI003\" : 1.0,\n \"NCI003001\" : 1.0,\n \"NCI004\" : 1.0,\n \"NCI004001\" : 1.0,\n \"NCI004002\" : 1.0,\n \"NCI005\" : 1.0,\n \"NCI005001\" : 1.0,\n \"NCI00500101\" : 1.0,\n \"NCI00500102\" : 1.0,\n \"NCI00500103\" : null,\n \"NCI00500104\" : null,\n \"NCI005002\" : 1.0,\n \"NCI00500201\" : 1.0,\n \"NCI00500202\" : null,\n \"NCI00500203\" : null,\n \"NCI00500204\" : null,\n \"NCI00500205\" : null,\n \"NCI00500206\" : null,\n \"NCI006\" : 1.0,\n \"NCI007\" : 1.0,\n \"NCI007001\" : 1.0,\n \"NCI007002\" : 1.0\n}", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "d920f6c6-19e0-4ae3-91b6-877c068c183a", - "code" : "M1734933324012", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "fa295770-8418-40dd-a9a7-7e5bd792eb9d", - "code" : "P1734933364178", - "inputValue" : "{\n\t\"OCLT\" : 1.0, /*负债合计*/\n\t\"OCI005\" : 1.0, /*五、其他综合收益的税后净额*/\n\t\"OCI003\" : 1.0, /*三、利润总额(亏损总额以“-”号填列)*/\n\t\"OCC001001\" : 1.0, /*销售商品、提供劳务收到的现金*/\n\t\"OCL002005\" : 1.0, /*递延收益*/\n\t\"OCL001001\" : 1.0, /*短期借款*/\n\t\"OCI001A02\" : 1.0, /*投资收益(损失以“-”号填列)*/\n\t\"OCC001006\" : 1.0, /*支付的各项税费*/\n\t\"OCC003001\" : 1.0, /*吸收投资收到的现金*/\n\t\"OCC002004\" : 1.0, /*处置子公司及其他营业单位收到的现金净额*/\n\t\"OCI004001\" : 1.0, /*(一)持续经营净利润(净亏损以“-”号填列)*/\n\t\"OCC002STO\" : 1.0, /*投资活动现金流出小计*/\n\t\"OCC001STO\" : 1.0, /*经营活动现金流出小计*/\n\t\"OCA002013\" : 1.0, /*长期待摊费用*/\n\t\"OCL002007\" : 1.0, /*其他非流动负债*/\n\t\"OCET\" : 1.0, /*所有者权益(或股东权益)合计*/\n\t\"OCL00200202\" : 1.0, /*应付债券(其中:永续债)*/\n\t\"OCL001\" : 1.0, /*流动负债:*/\n\t\"OCLET\" : 1.0, /*负债和所有者权益(或股东权益)总计*/\n\t\"OCC003004\" : 1.0, /*偿还债务支付的现金*/\n\t\"OCA001009\" : 1.0, /*持有待售资产*/\n\t\"OCA002009\" : 1.0, /*油气资产*/\n\t\"OCI00500205\" : 1.0, /*5.外币财务报表折算差额*/\n\t\"OCL002001\" : 1.0, /*长期借款*/\n\t\"OCL001012\" : 1.0, /*其他流动负债*/\n\t\"OCA001010\" : 1.0, /*一年内到期的非流动资产*/\n\t\"OCI004002\" : 1.0, /*(二)终止经营净利润(净亏损以“-”号填列)*/\n\t\"OCI00500102\" : 1.0, /*2.权益法下不能转损益的其他综合收益*/\n\t\"OCI001A0201\" : 1.0, /*其中:对联营企业和合营企业的投资收益*/\n\t\"OCA001011\" : 1.0, /*其他流动资产*/\n\t\"OCI00500203\" : 1.0, /*3.持有至到期投资重分类为可供出售金融资产损益*/\n\t\"OCA002008\" : 1.0, /*生产性生物资产*/\n\t\"OCL001004\" : 1.0, /*应付票据*/\n\t\"OCI00500101\" : 1.0, /*1.重新计量设定受益计划变动额*/\n\t\"OCC001T\" : 1.0, /*经营活动产生的现金流量净额*/\n\t\"OCI005002\" : 1.0, /*(二)将重分类进损益的其他综合收益*/\n\t\"OCI001L02\" : 1.0, /*税金及附加*/\n\t\"OCL001011\" : 1.0, /*一年内到期的非流动负债*/\n\t\"OCC003STI\" : 1.0, /*筹资活动现金流入小计*/\n\t\"OCA002014\" : 1.0, /*递延所得税资产*/\n\t\"OCI001A05\" : 1.0, /*资产处置收益(损失以“-”号填列)*/\n\t\"OCA002004\" : 1.0, /*长期股权投资*/\n\t\"OCI00500202\" : 1.0, /*2.可供出售金融资产公允价值变动损益*/\n\t\"OCI001L04\" : 1.0, /*管理费用*/\n\t\"OCL001009\" : 1.0, /*其他应付款*/\n\t\"OCI001A03\" : 1.0, /*公允价值变动收益(损失以“-”号填列)*/\n\t\"OCC005\" : 1.0, /*五、现金及现金等价物净增加额*/\n\t\"OCC002009\" : 1.0, /*支付其他与投资活动有关的现金*/\n\t\"OCC002007\" : 1.0, /*投资支付的现金*/\n\t\"OCA002011\" : 1.0, /*开发支出*/\n\t\"OCC002003\" : 1.0, /*处置固定资产、无形资产和其他长期资产收回的现金净额*/\n\t\"OCC003002\" : 1.0, /*取得借款收到的现金*/\n\t\"OCC003STO\" : 1.0, /*筹资活动现金流出小计*/\n\t\"OCE\" : 1.0, /*所有者权益(或股东权益):*/\n\t\"OCE007\" : 1.0, /*盈余公积*/\n\t\"OCI001L0601\" : 1.0, /*其中:利息费用*/\n\t\"OCI00500204\" : 1.0, /*4.现金流量套期损益的有效部分*/\n\t\"OCC002005\" : 1.0, /*收到其他与投资活动有关的现金*/\n\t\"OCL002\" : 1.0, /*非流动负债:*/\n\t\"OCC002\" : 1.0, /*二、投资活动产生的现金流量:*/\n\t\"OCC002006\" : 1.0, /*购建固定资产、无形资产和其他长期资产支付的现金*/\n\t\"OCA002015\" : 1.0, /*其他非流动资产*/\n\t\"OCC001002\" : 1.0, /*收到的税费返还*/\n\t\"OCA001001\" : 1.0, /*货币资金*/\n\t\"OCI001A04\" : 1.0, /*资产减值损失(损失以“-”号填列)*/\n\t\"OCI007002\" : 1.0, /*(二)稀释每股收益*/\n\t\"OCI005001\" : 1.0, /*(一)不能重分类进损益的其他综合收益*/\n\t\"OCI002\" : 1.0, /*二、营业利润(亏损以“-”号填列)*/\n\t\"OCL001010\" : 1.0, /*持有待售负债*/\n\t\"OCA002\" : 1.0, /*非流动资产:*/\n\t\"OCL001003\" : 1.0, /*衍生金融负债*/\n\t\"OCC002002\" : 1.0, /*取得投资收益收到的现金*/\n\t\"OCE003\" : 1.0, /*资本公积*/\n\t\"OCE006\" : 1.0, /*专项储备*/\n\t\"OCE002001\" : 1.0, /*其他权益工具(其中:优先股)*/\n\t\"OCI003L01\" : 1.0, /*减:所得税费用*/\n\t\"OCA002001\" : 1.0, /*可供出售金融资产*/\n\t\"OCC004\" : 1.0, /*四、汇率变动对现金及现金等价物的影响*/\n\t\"OCC003T\" : 1.0, /*筹资活动产生的现金流量净额*/\n\t\"OCC001STI\" : 1.0, /*经营活动现金流入小计*/\n\t\"OCL001005\" : 1.0, /*应付账款*/\n\t\"OCC001003\" : 1.0, /*收到其他与经营活动有关的现金*/\n\t\"OCI001L01\" : 1.0, /*减:营业成本*/\n\t\"OCE008\" : 1.0, /*未分配利润*/\n\t\"OCC003\" : 1.0, /*三、筹资活动产生的现金流量:*/\n\t\"OCC001004\" : 1.0, /*购买商品、接受劳务支付的现金*/\n\t\"OCE002002\" : 1.0, /*其他权益工具(其中:永续债)*/\n\t\"OCI001L03\" : 1.0, /*销售费用*/\n\t\"OCI00500201\" : 1.0, /*1.权益法下可转损益的其他综合收益*/\n\t\"OCI001\" : 1.0, /*一、营业收入*/\n\t\"OCA001004\" : 1.0, /*应收票据*/\n\t\"OCA001\" : 1.0, /*流动资产:*/\n\t\"OCC001007\" : 1.0, /*支付其他与经营活动有关的现金*/\n\t\"OCL00200201\" : 1.0, /*应付债券(其中:优先股)*/\n\t\"OCC005A001\" : 1.0, /*加:期初现金及现金等价物余额*/\n\t\"OCI007\" : 1.0, /*七、每股收益:*/\n\t\"OCI001L06\" : 1.0, /*财务费用*/\n\t\"OCC002T\" : 1.0, /*投资活动产生的现金流量净额*/\n\t\"OCA002006\" : 1.0, /*固定资产*/\n\t\"OCC002001\" : 1.0, /*收回投资收到的现金*/\n\t\"OCC003006\" : 1.0, /*支付其他与筹资活动有关的现金*/\n\t\"OCC001\" : 1.0, /*一、经营活动产生的现金流量:*/\n\t\"OCA001008\" : 1.0, /*存货*/\n\t\"OCC001005\" : 1.0, /*支付给职工以及为职工支付的现金*/\n\t\"OCA001007\" : 1.0, /*其他应收款*/\n\t\"OCL002T\" : 1.0, /*非流动负债合计*/\n\t\"OCC003005\" : 1.0, /*分配股利、利润或偿付利息支付的现金*/\n\t\"OCA001005\" : 1.0, /*应收账款*/\n\t\"OCI001L0602\" : 1.0, /*利息收入*/\n\t\"OCE005\" : 1.0, /*其他综合收益*/\n\t\"OCI002A01\" : 1.0, /*加:营业外收入*/\n\t\"OCA001T\" : 1.0, /*流动资产合计*/\n\t\"OCI002L01\" : 1.0, /*减:营业外支出*/\n\t\"OCL002003\" : 1.0, /*长期应付款*/\n\t\"OCC003003\" : 1.0, /*收到其他与筹资活动有关的现金*/\n\t\"OCA002007\" : 1.0, /*在建工程*/\n\t\"OCL002006\" : 1.0, /*递延所得税负债*/\n\t\"OCE002\" : 1.0, /*其他权益工具*/\n\t\"OCA002002\" : 1.0, /*持有至到期投资*/\n\t\"OCC006\" : 1.0, /*六、期末现金及现金等价物余额*/\n\t\"OCL002002\" : 1.0, /*应付债券*/\n\t\"OCE001\" : 1.0, /*实收资本(或股本)*/\n\t\"OCI001L05\" : 1.0, /*研发费用*/\n\t\"OCL001008\" : 1.0, /*应交税费*/\n\t\"OCI001A01\" : 1.0, /*加:其他收益*/\n\t\"OCA002T\" : 1.0, /*非流动资产合计*/\n\t\"OCA002005\" : 1.0, /*投资性房地产*/\n\t\"OCL001002\" : 1.0, /*以公允价值计量且其变动计入当期损益的金融负债*/\n\t\"OCA001006\" : 1.0, /*预付款项*/\n\t\"OCL001006\" : 1.0, /*预收款项*/\n\t\"OCA001003\" : 1.0, /*衍生金融资产*/\n\t\"OCI007001\" : 1.0, /*(一)基本每股收益*/\n\t\"OCA002010\" : 1.0, /*无形资产*/\n\t\"OCL001007\" : 1.0, /*应付职工薪酬*/\n\t\"OCA001002\" : 1.0, /*以公允价值计量且其变动计入当期损益的金融资产*/\n\t\"OCA002003\" : 1.0, /*长期应收款*/\n\t\"OCAT\" : 1.0, /*资产总计*/\n\t\"OCC002008\" : 1.0, /*取得子公司及其他营业单位支付的现金净额*/\n\t\"OCI004\" : 1.0, /*四、净利润(净亏损以“-”号填列)*/\n\t\"OCL002004\" : 1.0, /*预计负债*/\n\t\"OCC002STI\" : 1.0, /*投资活动现金流入小计*/\n\t\"OCE004\" : 1.0, /*减:库存股*/\n\t\"OCL001T\" : 1.0, /*流动负债合计*/\n\t\"OCA002012\" : 1.0, /*商誉*/\n\t\"OCI006\" : 1.0, /*六、综合收益总额*/\n}", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "70fecdb3-9ef4-4a7f-b814-61fd7303a15b", - "code" : "M1734933324012", - "name" : "001-对象属性赋值", + "id" : "94207cd8-da35-46eb-b184-523befa12933", + "code" : "M1750380150883", + "name" : "大中型公司", "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", + "version" : 1, + "status" : "SKETCH", "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "69bccf2f-688c-4a16-9714-01661e4bd740", - "code" : "P1734933364178", - "name" : "一般企业旧财报", - "description" : null, - "valueType" : "D1731642506002", - "valueTypeVersion" : 1, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "37538d8b-0d9c-4478-8d1e-6982587a0fff", - "code" : "P1734933380399", - "name" : "一般企业新财报", + "testCases" : null, + "model" : { + "id" : "fe923e41-631f-4349-8379-fc37d5388a59", + "code" : "M1750380150883", + "name" : "大中型公司", "description" : null, - "valueType" : "D1731642643607", - "valueTypeVersion" : 1, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "OBJECT_PROPERTIES", - "id" : "739b12aa-91b6-4a10-bbb7-a0aeaa7bc19b", + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "1118a5eb-8afd-45dc-9836-6bf3565e20d7", + "code" : "M1750381035719", + "name" : "初始新增限额", "description" : null, - "order" : 1, "enable" : true, - "objectCondition" : "", - "objectProperties" : "[{\"code\":\"NCA001\",\"name\":\"流动资产:\",\"expression\":\"${P1734933364178}.${OCA001}\"},{\"code\":\"NCA001001\",\"name\":\"货币资金\",\"expression\":\"${P1734933364178}.${OCA001001}\"},{\"code\":\"NCA001002\",\"name\":\"交易性金融资产\",\"expression\":\"\"},{\"code\":\"NCA001003\",\"name\":\"衍生金融资产\",\"expression\":\"${P1734933364178}.${OCA001003}\"},{\"code\":\"NCA001004\",\"name\":\"应收票据\",\"expression\":\"${P1734933364178}.${OCA001004}\"},{\"code\":\"NCA001005\",\"name\":\"应收账款\",\"expression\":\"${P1734933364178}.${OCA001005}\"},{\"code\":\"NCA001006\",\"name\":\"应收款项融资\",\"expression\":\"\"},{\"code\":\"NCA001007\",\"name\":\"预付款项\",\"expression\":\"${P1734933364178}.${OCA001006}\"},{\"code\":\"NCA001008\",\"name\":\"其他应收款\",\"expression\":\"${P1734933364178}.${OCA001007}\"},{\"code\":\"NCA001009\",\"name\":\"存货\",\"expression\":\"${P1734933364178}.${OCA001008}\"},{\"code\":\"NCA001010\",\"name\":\"合同资产\",\"expression\":\"\"},{\"code\":\"NCA001011\",\"name\":\"持有待售资产\",\"expression\":\"${P1734933364178}.${OCA001009}\"},{\"code\":\"NCA001012\",\"name\":\"一年内到期的非流动资产\",\"expression\":\"${P1734933364178}.${OCA001010}\"},{\"code\":\"NCA001013\",\"name\":\"其他流动资产\",\"expression\":\"${P1734933364178}.${OCA001011}\"},{\"code\":\"NCA001T\",\"name\":\"流动资产合计\",\"expression\":\"${P1734933364178}.${OCA001T}\"},{\"code\":\"NCA002\",\"name\":\"非流动资产:\",\"expression\":\"${P1734933364178}.${OCA002}\"},{\"code\":\"NCA002001\",\"name\":\"债权投资\",\"expression\":\"\"},{\"code\":\"NCA002002\",\"name\":\"其他债权投资\",\"expression\":\"\"},{\"code\":\"NCA002003\",\"name\":\"长期应收款\",\"expression\":\"${P1734933364178}.${OCA002003}\"},{\"code\":\"NCA002004\",\"name\":\"长期股权投资\",\"expression\":\"${P1734933364178}.${OCA002004}\"},{\"code\":\"NCA002005\",\"name\":\"其他权益工具投资\",\"expression\":\"\"},{\"code\":\"NCA002006\",\"name\":\"其他非流动金融资产\",\"expression\":\"\"},{\"code\":\"NCA002007\",\"name\":\"投资性房地产\",\"expression\":\"${P1734933364178}.${OCA002005}\"},{\"code\":\"NCA002008\",\"name\":\"固定资产\",\"expression\":\"${P1734933364178}.${OCA002006}\"},{\"code\":\"NCA002009\",\"name\":\"在建工程\",\"expression\":\"${P1734933364178}.${OCA002007}\"},{\"code\":\"NCA002010\",\"name\":\"生产性生物资产\",\"expression\":\"${P1734933364178}.${OCA002008}\"},{\"code\":\"NCA002011\",\"name\":\"油气资产\",\"expression\":\"${P1734933364178}.${OCA002009}\"},{\"code\":\"NCA002012\",\"name\":\"使用权资产\",\"expression\":\"\"},{\"code\":\"NCA002013\",\"name\":\"无形资产\",\"expression\":\"${P1734933364178}.${OCA002010}\"},{\"code\":\"NCA002014\",\"name\":\"开发支出\",\"expression\":\"${P1734933364178}.${OCA002011}\"},{\"code\":\"NCA002015\",\"name\":\"商誉\",\"expression\":\"${P1734933364178}.${OCA002012}\"},{\"code\":\"NCA002016\",\"name\":\"长期待摊费用\",\"expression\":\"${P1734933364178}.${OCA002013}\"},{\"code\":\"NCA002017\",\"name\":\"递延所得税资产\",\"expression\":\"${P1734933364178}.${OCA002014}\"},{\"code\":\"NCA002018\",\"name\":\"其他非流动资产\",\"expression\":\"${P1734933364178}.${OCA002015}\"},{\"code\":\"NCA002T\",\"name\":\"非流动资产合计\",\"expression\":\"${P1734933364178}.${OCA002T}\"},{\"code\":\"NCAT\",\"name\":\"资产总计\",\"expression\":\"${P1734933364178}.${OCAT}\"},{\"code\":\"NCC001\",\"name\":\"一、经营活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC001}\"},{\"code\":\"NCC001001\",\"name\":\"销售商品、提供劳务收到的现金\",\"expression\":\"${P1734933364178}.${OCC001001}\"},{\"code\":\"NCC001002\",\"name\":\"收到的税费返还\",\"expression\":\"${P1734933364178}.${OCC001002}\"},{\"code\":\"NCC001003\",\"name\":\"收到其他与经营活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC001003}\"},{\"code\":\"NCC001STI\",\"name\":\"经营活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC001STI}\"},{\"code\":\"NCC001004\",\"name\":\"购买商品、接受劳务支付的现金\",\"expression\":\"${P1734933364178}.${OCC001004}\"},{\"code\":\"NCC001005\",\"name\":\"支付给职工以及为职工支付的现金\",\"expression\":\"${P1734933364178}.${OCC001005}\"},{\"code\":\"NCC001006\",\"name\":\"支付的各项税费\",\"expression\":\"${P1734933364178}.${OCC001006}\"},{\"code\":\"NCC001007\",\"name\":\"支付其他与经营活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC001007}\"},{\"code\":\"NCC001STO\",\"name\":\"经营活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC001STO}\"},{\"code\":\"NCC001T\",\"name\":\"经营活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC001T}\"},{\"code\":\"NCC002\",\"name\":\"二、投资活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC002}\"},{\"code\":\"NCC002001\",\"name\":\"收回投资收到的现金\",\"expression\":\"${P1734933364178}.${OCC002001}\"},{\"code\":\"NCC002002\",\"name\":\"取得投资收益收到的现金\",\"expression\":\"${P1734933364178}.${OCC002002}\"},{\"code\":\"NCC002003\",\"name\":\"处置固定资产、无形资产和其他长期资产收回的现金净额\",\"expression\":\"${P1734933364178}.${OCC002003}\"},{\"code\":\"NCC002004\",\"name\":\"处置子公司及其他营业单位收到的现金净额\",\"expression\":\"${P1734933364178}.${OCC002004}\"},{\"code\":\"NCC002005\",\"name\":\"收到其他与投资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC002005}\"},{\"code\":\"NCC002STI\",\"name\":\"投资活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC002STI}\"},{\"code\":\"NCC002006\",\"name\":\"购建固定资产、无形资产和其他长期资产支付的现金\",\"expression\":\"${P1734933364178}.${OCC002006}\"},{\"code\":\"NCC002007\",\"name\":\"投资支付的现金\",\"expression\":\"${P1734933364178}.${OCC002007}\"},{\"code\":\"NCC002008\",\"name\":\"取得子公司及其他营业单位支付的现金净额\",\"expression\":\"${P1734933364178}.${OCC002008}\"},{\"code\":\"NCC002009\",\"name\":\"支付其他与投资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC002009}\"},{\"code\":\"NCC002STO\",\"name\":\"投资活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC002STO}\"},{\"code\":\"NCC002T\",\"name\":\"投资活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC002T}\"},{\"code\":\"NCC003\",\"name\":\"三、筹资活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC003}\"},{\"code\":\"NCC003001\",\"name\":\"吸收投资收到的现金\",\"expression\":\"${P1734933364178}.${OCC003001}\"},{\"code\":\"NCC003002\",\"name\":\"取得借款收到的现金\",\"expression\":\"${P1734933364178}.${OCC003002}\"},{\"code\":\"NCC003003\",\"name\":\"收到其他与筹资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC003003}\"},{\"code\":\"NCC003STI\",\"name\":\"筹资活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC003STI}\"},{\"code\":\"NCC003004\",\"name\":\"偿还债务支付的现金\",\"expression\":\"${P1734933364178}.${OCC003004}\"},{\"code\":\"NCC003005\",\"name\":\"分配股利、利润或偿付利息支付的现金\",\"expression\":\"${P1734933364178}.${OCC003005}\"},{\"code\":\"NCC003006\",\"name\":\"支付其他与筹资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC003006}\"},{\"code\":\"NCC003STO\",\"name\":\"筹资活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC003STO}\"},{\"code\":\"NCC003T\",\"name\":\"筹资活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC003T}\"},{\"code\":\"NCC004\",\"name\":\"四、汇率变动对现金及现金等价物的影响\",\"expression\":\"${P1734933364178}.${OCC004}\"},{\"code\":\"NCC005\",\"name\":\"五、现金及现金等价物净增加额\",\"expression\":\"${P1734933364178}.${OCC005}\"},{\"code\":\"NCC005001\",\"name\":\"加:期初现金及现金等价物余额\",\"expression\":\"${P1734933364178}.${OCC005A001}\"},{\"code\":\"NCC006\",\"name\":\"六、期末现金及现金等价物余额\",\"expression\":\"${P1734933364178}.${OCC006}\"},{\"code\":\"NCL001\",\"name\":\"流动负债:\",\"expression\":\"${P1734933364178}.${OCL001}\"},{\"code\":\"NCL001001\",\"name\":\"短期借款\",\"expression\":\"${P1734933364178}.${OCL001001}\"},{\"code\":\"NCL001002\",\"name\":\"交易性金融负债\",\"expression\":\"\"},{\"code\":\"NCL001003\",\"name\":\"衍生金融负债\",\"expression\":\"${P1734933364178}.${OCL001003}\"},{\"code\":\"NCL001004\",\"name\":\"应付票据\",\"expression\":\"${P1734933364178}.${OCL001004}\"},{\"code\":\"NCL001005\",\"name\":\"应付账款\",\"expression\":\"${P1734933364178}.${OCL001005}\"},{\"code\":\"NCL001006\",\"name\":\"预收款项\",\"expression\":\"${P1734933364178}.${OCL001006}\"},{\"code\":\"NCL001007\",\"name\":\"合同负债\",\"expression\":\"\"},{\"code\":\"NCL001008\",\"name\":\"应付职工薪酬\",\"expression\":\"${P1734933364178}.${OCL001007}\"},{\"code\":\"NCL001009\",\"name\":\"应交税费\",\"expression\":\"${P1734933364178}.${OCL001008}\"},{\"code\":\"NCL001010\",\"name\":\"其他应付款\",\"expression\":\"${P1734933364178}.${OCL001009}\"},{\"code\":\"NCL001011\",\"name\":\"持有待售负债\",\"expression\":\"${P1734933364178}.${OCL001010}\"},{\"code\":\"NCL001012\",\"name\":\"一年内到期的非流动负债\",\"expression\":\"${P1734933364178}.${OCL001011}\"},{\"code\":\"NCL001013\",\"name\":\"其他流动负债\",\"expression\":\"${P1734933364178}.${OCL001012}\"},{\"code\":\"NCL001T\",\"name\":\"流动负债合计\",\"expression\":\"${P1734933364178}.${OCL001T}\"},{\"code\":\"NCL002\",\"name\":\"非流动负债:\",\"expression\":\"${P1734933364178}.${OCL002}\"},{\"code\":\"NCL002001\",\"name\":\"长期借款\",\"expression\":\"${P1734933364178}.${OCL002001}\"},{\"code\":\"NCL002002\",\"name\":\"应付债券\",\"expression\":\"${P1734933364178}.${OCL002002}\"},{\"code\":\"NCL00200201\",\"name\":\"应付债券(其中:优先股)\",\"expression\":\"${P1734933364178}.${OCL00200201}\"},{\"code\":\"NCL00200202\",\"name\":\"应付债券(其中:永续债)\",\"expression\":\"${P1734933364178}.${OCL00200202}\"},{\"code\":\"NCL002003\",\"name\":\"租赁负债\",\"expression\":\"\"},{\"code\":\"NCL002004\",\"name\":\"长期应付款\",\"expression\":\"${P1734933364178}.${OCL002003}\"},{\"code\":\"NCL002005\",\"name\":\"预计负债\",\"expression\":\"${P1734933364178}.${OCL002004}\"},{\"code\":\"NCL002006\",\"name\":\"递延收益\",\"expression\":\"${P1734933364178}.${OCL002005}\"},{\"code\":\"NCL002007\",\"name\":\"递延所得税负债\",\"expression\":\"${P1734933364178}.${OCL002006}\"},{\"code\":\"NCL002008\",\"name\":\"其他非流动负债\",\"expression\":\"${P1734933364178}.${OCL002007}\"},{\"code\":\"NCL002T\",\"name\":\"非流动负债合计\",\"expression\":\"${P1734933364178}.${OCL002T}\"},{\"code\":\"NCL0020080101\",\"name\":\"负债合计\",\"expression\":\"${P1734933364178}.${OCLT}\"},{\"code\":\"NCE001\",\"name\":\"所有者权益(或股东权益):\",\"expression\":\"${P1734933364178}.${OCE}\"},{\"code\":\"NCE001001\",\"name\":\"实收资本(或股本)\",\"expression\":\"${P1734933364178}.${OCE001}\"},{\"code\":\"NCE001002\",\"name\":\"其他权益工具\",\"expression\":\"${P1734933364178}.${OCE002}\"},{\"code\":\"NCE00100201\",\"name\":\"其他权益工具(其中:优先股)\",\"expression\":\"${P1734933364178}.${OCE002001}\"},{\"code\":\"NCE00100202\",\"name\":\"其他权益工具(其中:永续债)\",\"expression\":\"${P1734933364178}.${OCE002002}\"},{\"code\":\"NCE001003\",\"name\":\"资本公积\",\"expression\":\"${P1734933364178}.${OCE003}\"},{\"code\":\"NCE001004\",\"name\":\"减:库存股\",\"expression\":\"${P1734933364178}.${OCE004}\"},{\"code\":\"NCE001005\",\"name\":\"其他综合收益\",\"expression\":\"${P1734933364178}.${OCE005}\"},{\"code\":\"NCE001006\",\"name\":\"专项储备\",\"expression\":\"${P1734933364178}.${OCE006}\"},{\"code\":\"NCE001007\",\"name\":\"盈余公积\",\"expression\":\"${P1734933364178}.${OCE007}\"},{\"code\":\"NCE001008\",\"name\":\"未分配利润\",\"expression\":\"${P1734933364178}.${OCE008}\"},{\"code\":\"NCE001T\",\"name\":\"所有者权益(或股东权益)合计\",\"expression\":\"${P1734933364178}.${OCET}\"},{\"code\":\"NCLET\",\"name\":\"负债和所有者权益(或股东权益)总计\",\"expression\":\"${P1734933364178}.${OCLET}\"},{\"code\":\"NCI001\",\"name\":\"一、营业收入\",\"expression\":\"${P1734933364178}.${OCI001}\"},{\"code\":\"NCI001001\",\"name\":\"减:营业成本\",\"expression\":\"${P1734933364178}.${OCI001L01}\"},{\"code\":\"NCI00100101\",\"name\":\"税金及附加\",\"expression\":\"${P1734933364178}.${OCI001L02}\"},{\"code\":\"NCI00100102\",\"name\":\"销售费用\",\"expression\":\"${P1734933364178}.${OCI001L03}\"},{\"code\":\"NCI00100103\",\"name\":\"管理费用\",\"expression\":\"${P1734933364178}.${OCI001L04}\"},{\"code\":\"NCI00100104\",\"name\":\"研发费用\",\"expression\":\"${P1734933364178}.${OCI001L05}\"},{\"code\":\"NCI00100105\",\"name\":\"财务费用\",\"expression\":\"${P1734933364178}.${OCI001L06}\"},{\"code\":\"NCI0010010501\",\"name\":\"其中:利息费用\",\"expression\":\"${P1734933364178}.${OCI001L0601}\"},{\"code\":\"NCI0010010502\",\"name\":\"利息收入\",\"expression\":\"${P1734933364178}.${OCI001L0602}\"},{\"code\":\"NCI001002\",\"name\":\"加:其他收益\",\"expression\":\"${P1734933364178}.${OCI001A01}\"},{\"code\":\"NCI00100201\",\"name\":\"投资收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A02}\"},{\"code\":\"NCI0010020101\",\"name\":\"其中:对联营企业和合营企业的投资收益\",\"expression\":\"${P1734933364178}.${OCI001A0201}\"},{\"code\":\"NCI0010020102\",\"name\":\"以摊余成本计量的金融资产终止确认收益(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100202\",\"name\":\"净敞口套期收益(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100203\",\"name\":\"公允价值变动收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A03}\"},{\"code\":\"NCI00100204\",\"name\":\"信用减值损失(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100205\",\"name\":\"资产减值损失(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A04}\"},{\"code\":\"NCI00100206\",\"name\":\"资产处置收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A05}\"},{\"code\":\"NCI002\",\"name\":\"二、营业利润(亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI002}\"},{\"code\":\"NCI002001\",\"name\":\"加:营业外收入\",\"expression\":\"${P1734933364178}.${OCI002A01}\"},{\"code\":\"NCI002002\",\"name\":\"减:营业外支出\",\"expression\":\"${P1734933364178}.${OCI002L01}\"},{\"code\":\"NCI003\",\"name\":\"三、利润总额(亏损总额以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI003}\"},{\"code\":\"NCI003001\",\"name\":\"减:所得税费用\",\"expression\":\"${P1734933364178}.${OCI003L01}\"},{\"code\":\"NCI004\",\"name\":\"四、净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004}\"},{\"code\":\"NCI004001\",\"name\":\"(一)持续经营净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004001}\"},{\"code\":\"NCI004002\",\"name\":\"(二)终止经营净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004002}\"},{\"code\":\"NCI005\",\"name\":\"五、其他综合收益的税后净额\",\"expression\":\"${P1734933364178}.${OCI005}\"},{\"code\":\"NCI005001\",\"name\":\"(一)不能重分类进损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI005001}\"},{\"code\":\"NCI00500101\",\"name\":\"1.重新计量设定受益计划变动额\",\"expression\":\"${P1734933364178}.${OCI00500101}\"},{\"code\":\"NCI00500102\",\"name\":\"2.权益法下不能转损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI00500102}\"},{\"code\":\"NCI00500103\",\"name\":\"3.其他权益工具投资公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI00500104\",\"name\":\"4.企业自身信用风险公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI005002\",\"name\":\"(二)将重分类进损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI005002}\"},{\"code\":\"NCI00500201\",\"name\":\"1.权益法下可转损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI00500201}\"},{\"code\":\"NCI00500202\",\"name\":\"2.其他债权投资公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI00500203\",\"name\":\"3.金融资产重分类计入其他综合收益的金额\",\"expression\":\"\"},{\"code\":\"NCI00500204\",\"name\":\"4.其他债权投资信用减值准备\",\"expression\":\"\"},{\"code\":\"NCI00500205\",\"name\":\"5.现金流量套期储备\",\"expression\":\"\"},{\"code\":\"NCI00500206\",\"name\":\"6.外币财务报表折算差额\",\"expression\":\"\"},{\"code\":\"NCI006\",\"name\":\"六、综合收益总额\",\"expression\":\"${P1734933364178}.${OCI006}\"},{\"code\":\"NCI007\",\"name\":\"七、每股收益:\",\"expression\":\"${P1734933364178}.${OCI007}\"},{\"code\":\"NCI007001\",\"name\":\"(一)基本每股收益\",\"expression\":\"${P1734933364178}.${OCI007001}\"},{\"code\":\"NCI007002\",\"name\":\"(二)稀释每股收益\",\"expression\":\"${P1734933364178}.${OCI007002}\"}]" - } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" - }, { - "type" : "MODEL", - "id" : "39ed30e9-f927-4727-bd96-b6293fc55d68", - "code" : "M1734935254414", - "name" : "002-选项值(数值输入值)", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "a5dbdbc7-80ac-44eb-b197-163b3b3e1abb", - "name" : "选项值(数值输入值)", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:16", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "20a2d00e-cccb-4f33-867b-acf7c3fbb6cd", - "code" : "P1734935434896", - "inputValue" : "1", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "2286b665-a89a-4c8c-9cc8-2d9f02251ab4", - "code" : "M1734935254414", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "57bdd716-d7b3-4901-9d37-a9286b0a03e4", - "code" : "P1734935613684", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "22", - "resultValue" : "22", - "testResult" : "PASSED", - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "9c97f3fa-0e5d-4671-b4b9-46464c35e248", - "code" : "M1734935254414", - "name" : "002-选项值(数值输入值)", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN_OPTION", - "id" : "1d8e5766-baa0-4576-9c83-ab30dd568870", - "code" : "P1734935434896", - "name" : "教育程度", - "description" : null, - "valueType" : "java.lang.Long", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null, - "options" : [ { - "id" : "fa3c2cbf-fb3b-4971-97de-2950de80412b", - "inputValue" : "1", - "value" : "22", - "title" : "博士研究生及以上", - "description" : null, - "order" : 1, - "config" : null - }, { - "id" : "384aafe0-9361-4597-9513-0c1c0b6c89a2", - "inputValue" : "2", - "value" : "16", - "title" : "硕士研究生", - "description" : null, - "order" : 2, - "config" : null - }, { - "id" : "bf8aab57-8cf4-4417-b4a5-54676a34fa48", - "inputValue" : "3", - "value" : "12", - "title" : "本科", - "description" : null, - "order" : 3, - "config" : null - }, { - "id" : "d29c5ab1-855f-42a7-bd26-be3e221fe927", - "inputValue" : "4", - "value" : "4", - "title" : "高中及以下(含中专、技校)", - "description" : null, - "order" : 4, - "config" : null - }, { - "id" : "7c857d9a-00f9-436a-a703-ecd105baef0e", - "inputValue" : "5", - "value" : "8", - "title" : "大专", - "description" : null, - "order" : 5, - "config" : null - }, { - "id" : "e6440677-0427-46bd-a16b-e0c09a79b23e", - "inputValue" : "0", - "value" : "0", - "title" : "其他", - "description" : null, - "order" : 6, - "config" : null - } ], - "additons" : null - }, { - "type" : "OUT", - "id" : "3e452b10-dbbe-476e-a6eb-18a89127e23c", - "code" : "P1734935613684", - "name" : "教育程度得分", - "description" : null, - "valueType" : "java.lang.Long", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "OPTION_VALUE", - "id" : "17eb964e-777d-4d62-a216-d7c0cf7d37fc", - "description" : null, "order" : 1, - "enable" : true, - "optionCode" : "${P1734935434896}" - } ] - } ] - }, - "effectiveDate" : null, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "862de7f9-0087-455d-98dd-14710acc42d4", + "code" : "M1750381133257", + "name" : "客户平均调整后所有者权益", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "INTERMEDIATE", + "id" : "f7930dd0-5106-4184-be87-5621adf011a7", + "code" : "P1750381486696", + "name" : "上期未计提坏账准备", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "8f21e66f-772f-45e9-9c56-56b6e546a00b", + "code" : "P1750381516130", + "name" : "本期未计提坏账准备", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 4, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "dafb3b11-a32e-49ba-87f1-160b14bf5a8c", + "code" : "P1750381560115", + "name" : "上期涉损金额", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 5, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "adf3bc07-a5f7-4db2-9664-91a32d8617ac", + "code" : "P1750381551681", + "name" : "本期涉损金额", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 6, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "d9ec62a4-9858-42f5-8087-30f249bd5d20", + "code" : "P1750381600379", + "name" : "上期调整后所有者权益", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 7, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "6b87937d-fa21-4809-9717-1875c941df54", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${I1731661519620}.${NCE001T} - ${I1731661519620}.${NCA002016} - ${I1731661519620}.${NCA002017} - ${P1750381486696} - ${P1750381560115}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "f65bf194-fa79-401e-a742-27a91a89f7b2", + "code" : "P1750381217163", + "name" : "本期调整后所有者权益", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 8, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "96b55996-d99e-478f-848e-551ae654db2d", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${I1731661528383}.${NCE001T} - ${I1731661528383}.${NCA002016} - ${I1731661528383}.${NCA002017} - ${P1750381516130} - ${P1750381551681}" + } ] + }, { + "type" : "OUT", + "id" : "06e4dca5-5704-4a63-9cf7-92b7601c3c0c", + "code" : "P1750381709908", + "name" : "平均调整后所有者权益", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 9, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "58220f24-341f-42b8-ac04-acae817484d0", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "(${P1750381217163} + ${P1750381600379})/2" + } ] + } ] + } ], + "parameters" : [ { + "type" : "CONSTANT", + "id" : "44e38ef6-3d27-487e-afa3-14728d502cb1", + "code" : "P1750380546248", + "name" : "限额乘数表", + "description" : null, + "valueType" : "D1750380395358", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : true, + "defaultValue" : "[{\"R\":\"1\",\"V\":2},{\"R\":\"2\",\"V\":2},{\"R\":\"3\",\"V\":2},{\"R\":\"4\",\"V\":2},{\"R\":\"5\",\"V\":2},{\"R\":\"6\",\"V\":1.9},{\"R\":\"7\",\"V\":1.8},{\"R\":\"8\",\"V\":1.7},{\"R\":\"9\",\"V\":1.6},{\"R\":\"10\",\"V\":1.5},{\"R\":\"11\",\"V\":1.4},{\"R\":\"12\",\"V\":1.2},{\"R\":\"13\",\"V\":1},{\"R\":\"14\",\"V\":0.75},{\"R\":\"15\",\"V\":0.5},{\"R\":\"16\",\"V\":0.25},{\"R\":\"17\",\"V\":0},{\"R\":\"18\",\"V\":0},{\"R\":\"19\",\"V\":0}]", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "48307d61-fee7-44ff-94e9-45b2c95bff15", + "code" : "P1750381916052", + "name" : "限额乘数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 4, + "validators" : null, + "processors" : [ { + "type" : "GROOVY_SCRIPT", + "id" : "a7826ace-6199-42da-b012-47467570c0b8", + "description" : null, + "order" : 1, + "enable" : true, + "groovyScript" : "if(!isNil(${P1750381831740})){\n for(int i=0; i < ${P1750380546248}.size(); i++){\n if( ${P1750381831740} == ${P1750380546248}[i].${R}){\n ${P1750381916052} = ${P1750380546248}[i].${V};\n }\n }\n}" + } ] + }, { + "type" : "OUT", + "id" : "749c0961-1d46-413d-9aac-bbd6cdf4a0f9", + "code" : "P1750381787471", + "name" : "初始新增限额_结果", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 5, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "0716123f-957a-463b-b781-ef224f917f7a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1750381709908} * ${P1750381916052}" + } ] + } ] + }, { + "id" : "f81ecc90-f069-4f62-8031-a70c61bb59fc", + "code" : "M1750382082678", + "name" : "新增限额调整", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "4c327884-cc93-4bc8-b2b0-f16e2374cb82", + "code" : "M1750382101506", + "name" : "资产负债率和现金盈余调整", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "CONSTANT", + "id" : "2f9e69e5-6df1-4fe2-a97c-f940fafa4086", + "code" : "P1750385599039", + "name" : "资产负债率上下边界表", + "description" : null, + "valueType" : "D1750385418314", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : true, + "defaultValue" : "[{\"CategoryCode\":\"A\",\"Category\":\"农林牧渔\",\"Code\":\"01, 02, 03, 04,05\",\"Name\":\"农林牧渔业\",\"Max\":0.74,\"Min\":0.56},{\"CategoryCode\":\"B\",\"Category\":\"采矿业\",\"Code\":\"06,07,08,09,10,11,12\",\"Name\":\"煤炭开采和洗选业其他采矿业\",\"Max\":0.79,\"Min\":0.59},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"25\",\"Name\":\"石油加工、炼焦和核燃料加工业\",\"Max\":0.81,\"Min\":0.63},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"26\",\"Name\":\"化学原料和化学制品制造业\",\"Max\":0.77,\"Min\":0.58},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"27\",\"Name\":\"医药制造业\",\"Max\":0.74,\"Min\":0.5},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"31\",\"Name\":\"黑色金属冶炼和压延加工业\",\"Max\":0.81,\"Min\":0.65},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"32\",\"Name\":\"有色金屈治炼和压延加工业\",\"Max\":0.79,\"Min\":0.6},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"34\",\"Name\":\"通用设备制造业\",\"Max\":0.74,\"Min\":0.54},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"35\",\"Name\":\"专用设备制造业\",\"Max\":0.79,\"Min\":0.57},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"36\",\"Name\":\"汽车制造业\",\"Max\":0.79,\"Min\":0.58},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"37\",\"Name\":\"铁路、船舶、航空航天和其他运输设畚制造业\",\"Max\":0.84,\"Min\":0.61},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"38\",\"Name\":\"电气机械和器材制造业\",\"Max\":0.74,\"Min\":0.59},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"39\",\"Name\":\"计算机、通信和其他电子设备制造业\",\"Max\":0.85,\"Min\":0.62},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"13,14,15, 16,17, 18, 19, 20,21, 22, 23, 24,28, 29, 30, 33,40, 41,42,43\",\"Name\":\"其他制造业\",\"Max\":0.74,\"Min\":0.52},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"441\",\"Name\":\"电力生应\",\"Max\":0.93,\"Min\":0.8},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"442\",\"Name\":\"电力供应\",\"Max\":0.95,\"Min\":0.78},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"43, 45,46\",\"Name\":\"热力、燃气及水生产供应业\",\"Max\":0.83,\"Min\":0.65},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"47\",\"Name\":\"房屋建筑业\",\"Max\":0.84,\"Min\":0.6},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"48\",\"Name\":\"土木工程建筑业\",\"Max\":0.88,\"Min\":0.71},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"49, 50\",\"Name\":\"其他建筑业\",\"Max\":0.88,\"Min\":0.68},{\"CategoryCode\":\"F\",\"Category\":\"批发和零售业\",\"Code\":\"51\",\"Name\":\"批发\",\"Max\":0.89,\"Min\":0.61},{\"CategoryCode\":\"F\",\"Category\":\"批发和零售业\",\"Code\":\"52\",\"Name\":\"零售业\",\"Max\":0.8,\"Min\":0.61},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"53\",\"Name\":\"铁路运输业\",\"Max\":0.77,\"Min\":0.52},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"54\",\"Name\":\"道路运输业\",\"Max\":0.86,\"Min\":0.7},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"56\",\"Name\":\"航空运输业\",\"Max\":0.88,\"Min\":0.64},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"55, 57, 58, 59,60\",\"Name\":\"其他交通运输、仓储和邮政业\",\"Max\":0.88,\"Min\":0.63},{\"CategoryCode\":\"H\",\"Category\":\"住宿和餐饮业\",\"Code\":\"61, 62\",\"Name\":\"住宿和餐饮业\",\"Max\":0.74,\"Min\":0.53},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"63\",\"Name\":\"电信、广播电视和卫星传输服务\",\"Max\":0.82,\"Min\":0.63},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"64\",\"Name\":\"互联网和相关服务\",\"Max\":0.9,\"Min\":0.62},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"65\",\"Name\":\"软件和信息技术服务业\",\"Max\":0.79,\"Min\":0.59},{\"CategoryCode\":\"K\",\"Category\":\"房地产业\",\"Code\":\"70\",\"Name\":\"房地产开发经营\",\"Max\":0.8,\"Min\":0.58},{\"CategoryCode\":\"K\",\"Category\":\"房地产业\",\"Code\":\"702, 703, 704,709\",\"Name\":\"房地产业\",\"Max\":0.79,\"Min\":0.61},{\"CategoryCode\":\"L\",\"Category\":\"租赁和商务服务业\",\"Code\":\"71, 72\",\"Name\":\"租赁和商务服务业\",\"Max\":0.84,\"Min\":0.63},{\"CategoryCode\":\"M\",\"Category\":\"科学研究和技术服务\",\"Code\":\"73, 74, 75\",\"Name\":\"科学研究和技术服务业\",\"Max\":0.86,\"Min\":0.66},{\"CategoryCode\":\"N\",\"Category\":\"水利、环境水利管理、生态保护和环境\",\"Code\":\"76, 77, 79\",\"Name\":\"水利管理、生态保护和环境治理业\",\"Max\":0.84,\"Min\":0.58},{\"CategoryCode\":\"N\",\"Category\":\"水利、环境水利管理、生态保护和环境\",\"Code\":\"78\",\"Name\":\"公共设施管理业\",\"Max\":0.8,\"Min\":0.61},{\"CategoryCode\":\"O\",\"Category\":\"居民服务、居民服务、修理和其他服务\",\"Code\":\"80, 81, 82\",\"Name\":\"居民服务、居民服务、修理和其他服务\",\"Max\":0.81,\"Min\":0.58},{\"CategoryCode\":\"P\",\"Category\":\"教育\",\"Code\":\"83\",\"Name\":\"教育\",\"Max\":0.74,\"Min\":0.42},{\"CategoryCode\":\"Q\",\"Category\":\"卫生和社会工作\",\"Code\":\"84\",\"Name\":\"卫生\",\"Max\":0.89,\"Min\":0.54},{\"CategoryCode\":\"Q\",\"Category\":\"卫生和社会工作\",\"Code\":\"85\",\"Name\":\"社会工作\",\"Max\":0.84,\"Min\":0.58},{\"CategoryCode\":\"R\",\"Category\":\"文化、体育和娛乐业\",\"Code\":\"86,87,88,89,90\",\"Name\":\"文化、体育和娛乐业\",\"Max\":0.8,\"Min\":0.62},{\"CategoryCode\":\"S\",\"Category\":\"公共管理、社会保障和社会组织\",\"Code\":\"92\",\"Name\":\"国家机构\",\"Max\":0.92,\"Min\":0.69},{\"CategoryCode\":\"S\",\"Category\":\"公共管理、社会保障和社会组织\",\"Code\":\"91, 93, 94,95,96\",\"Name\":\"公共管理、社会保障和社会组织\",\"Max\":0.84,\"Min\":0.58},{\"CategoryCode\":\"\",\"Category\":\"其他\",\"Code\":\"\",\"Name\":\"除上述行业外的其他所有行业\",\"Max\":0.84,\"Min\":0.63}]", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "CONSTANT", + "id" : "034b817f-5c9d-4446-9ada-06bb26f60970", + "code" : "P1750387275518", + "name" : "限额行业分组表", + "description" : null, + "valueType" : "D1750387144201", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : true, + "defaultValue" : "[{\"Group\":\"A\",\"Industry_Category\":\"D\",\"Industry_Name\":\"电力、热力、燃气及水生产和供应业\"},{\"Group\":\"A\",\"Industry_Category\":\"E\",\"Industry_Name\":\"建筑业\"},{\"Group\":\"A\",\"Industry_Category\":\"G\",\"Industry_Name\":\"交通运输、仓储和邮政业\"},{\"Group\":\"A\",\"Industry_Category\":\"L\",\"Industry_Name\":\"租赁和商务服务业\"},{\"Group\":\"A\",\"Industry_Category\":\"M\",\"Industry_Name\":\"科学研究和技术服务业\"},{\"Group\":\"A\",\"Industry_Category\":\"N\",\"Industry_Name\":\"水利、环境和公共设施管理业\"},{\"Group\":\"A\",\"Industry_Category\":\"P\",\"Industry_Name\":\"教育\"},{\"Group\":\"A\",\"Industry_Category\":\"Q\",\"Industry_Name\":\"卫生和社会工作\"},{\"Group\":\"A\",\"Industry_Category\":\"R\",\"Industry_Name\":\"文化、体育和娱乐业\"},{\"Group\":\"A\",\"Industry_Category\":\"S\",\"Industry_Name\":\"公共管理、社会保障和社会组织\"},{\"Group\":\"B\",\"Industry_Category\":\"A\",\"Industry_Name\":\"农林牧渔业\"},{\"Group\":\"B\",\"Industry_Category\":\"C\",\"Industry_Name\":\"制造业\"},{\"Group\":\"B\",\"Industry_Category\":\"I\",\"Industry_Name\":\"信息传输、软件和信息技术服务业\"},{\"Group\":\"B\",\"Industry_Category\":\"K\",\"Industry_Name\":\"房地产业\"},{\"Group\":\"B\",\"Industry_Category\":\"O\",\"Industry_Name\":\"居民服务、修理和其他服务业\"},{\"Group\":\"C\",\"Industry_Category\":\"B\",\"Industry_Name\":\"采矿业\"},{\"Group\":\"C\",\"Industry_Category\":\"F\",\"Industry_Name\":\"批发和零售业\"},{\"Group\":\"C\",\"Industry_Category\":\"H\",\"Industry_Name\":\"住宿和餐饮业\"}]", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "31ebf81a-9cdc-45ea-89e6-f0fb9dce0a6e", + "code" : "P1750390228844", + "name" : "初始限额", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : null + }, { + "type" : "INTERMEDIATE", + "id" : "a9fd899e-100e-4254-8b16-8b4b84804257", + "code" : "P1750387851302", + "name" : "上期EBITDA", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 4, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "500edb40-cb02-4b47-9a68-7e12b3337e8e", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${I1731661519620}.${NCI003} + ${I1731661519620}.${NCI00100105} + ${I1731661519620}.${NCA002008} + ${I1731661519620}.${NCA002011} + ${I1731661519620}.${NCA002010} + ${I1731661519620}.${NCA002013}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "01a98148-a2ea-456e-ac22-f8fb84015136", + "code" : "P1750388123837", + "name" : "本期EBITDA", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 5, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "5b7ce44b-d8e9-4fef-bff3-0ca8a90e7755", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${I1731661528383}.${NCI003} + ${I1731661528383}.${NCI00100105} + ${I1731661528383}.${NCA002008} + ${I1731661528383}.${NCA002011} + ${I1731661528383}.${NCA002010} + ${I1731661528383}.${NCA002013}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "b77a4a45-154e-4024-8786-69b544aae438", + "code" : "P1750388176575", + "name" : "EBITDA均值", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 6, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "fbe215b3-4f0a-4072-ad8a-2e1660b1402e", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "(${P1750387851302} + ${P1750388123837})/2" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "69dcbaa1-9044-47da-aa87-439ab1ab4d66", + "code" : "P1750387724529", + "name" : "现金盈余", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 7, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "877013dd-7100-4efb-b885-d5c33a413a9a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "3O * ${P1750388176575} - ${I1731661528383}.${NCL0020080101}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "599f1898-6ad8-4874-bdac-b463a7dd22c0", + "code" : "P1750389624350", + "name" : "资产负债率", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 8, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "26406747-1350-43c6-8f44-4137b24a1f2a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${I1731661528383}.${NCL0020080101}/${I1731661528383}.${NCAT}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "0e0b29a5-d220-4d1a-9240-6155679686c4", + "code" : "P1750385228195", + "name" : "客户行业门类", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 9, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "a3d9f83f-532d-454f-8729-c6aa6339d848", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1750385074599}.${BELG_INDS_CD}.substring(0,1)" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "d1079fa6-eaa4-4fd2-ad00-686ef0575fff", + "code" : "P1750389039899", + "name" : "客户行业", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 10, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "16f5ad00-467e-490c-9a19-67f74c5bee2c", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1750385074599}.${BELG_INDS_CD}.substring(1)" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "8e6f9592-a24e-402c-9d7b-c2a4019e44b9", + "code" : "P1750389141384", + "name" : "限额行业分组", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 11, + "validators" : null, + "processors" : [ { + "type" : "GROOVY_SCRIPT", + "id" : "c34ffb0f-881b-4ece-a99c-b92176140953", + "description" : null, + "order" : 1, + "enable" : true, + "groovyScript" : "if(!isNil(${P1750385228195})){\n for(int i=0; i < ${P1750387275518}.size(); i++){\n if(${P1750385228195} == ${P1750387275518}[i].${Industry_Category}){\n ${P1750389141384} = ${P1750387275518}[i].${Group};\n }\n }\n}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "9ad46563-df63-49f2-b302-65d8c3f174f7", + "code" : "P1750389423667", + "name" : "行业资产负债率上限", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 12, + "validators" : null, + "processors" : [ { + "type" : "GROOVY_SCRIPT", + "id" : "5fb3b15d-dad1-4119-b9c0-5545f4e3003f", + "description" : null, + "order" : 1, + "enable" : true, + "groovyScript" : "if(!isNil(${P1750389039899})){\n for(int i=0; i < ${P1750385599039}.size(); i++){\n def splits =${P1750385599039}[i].${Code}.split(',');\n for (int j=0; j < splits.length; j++){\n if(startWith(${P1750389039899},splits[j])){\n ${P1750389449618} =${P1750385599039}[i].${Min};\n ${P1750389423667} =${P1750385599039}[i].${Max};\n }\n }\n }\n}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "a0627e36-edfe-45b9-abd1-c055cad30067", + "code" : "P1750389449618", + "name" : "行业资产负债率下限", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 13, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "f87da5fb-c0ab-4338-8f02-fe110d342296", + "code" : "P1750382530023", + "name" : "资产负债率和现金盈余调整系数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 14, + "validators" : null, + "processors" : [ { + "type" : "DECISION_TABLE_2C", + "id" : "93f614d8-52a0-4a45-815e-85028e15f1c3", + "description" : null, + "order" : 1, + "enable" : true, + "decisionTable2C" : "[ {\n \"C0\" : \"\",\n \"C1\" : \"${P1750387724529}>=${P1750390228844}\",\n \"C2\" : \"${P1750387724529}>0 && ${P1750387724529}<${P1750390228844}\",\n \"C3\" : \"${P1750387724529}<=0\"\n}, {\n \"C0\" : \"${P1750389141384}=='A' && ${P1750389624350}<= ${P1750389423667}\",\n \"C1\" : \"1\",\n \"C2\" : \"0.9\",\n \"C3\" : \"0.7\"\n}, {\n \"C0\" : \"${P1750389141384}=='A' && ${P1750389449618}<${P1750389624350} && ${P1750389624350}<${P1750389423667}\",\n \"C1\" : \"0.9\",\n \"C2\" : \"0.8\",\n \"C3\" : \"0.7\"\n}, {\n \"C0\" : \"${P1750389141384}=='A' && ${P1750389624350}>=${P1750389423667}\",\n \"C1\" : \"0.7\",\n \"C2\" : \"0.7\",\n \"C3\" : \"${P1750381831740}<9 ? 0.6 : ${P1750381831740} < 12 ? 0.5 : 0\"\n}, {\n \"C0\" : \"${P1750389141384}=='B' && ${P1750389624350}<= ${P1750389423667}\",\n \"C1\" : \"1\",\n \"C2\" : \"0.8\",\n \"C3\" : \"0.6\"\n}, {\n \"C0\" : \"${P1750389141384}=='B' && ${P1750389449618}<${P1750389624350} && ${P1750389624350}<${P1750389423667}\",\n \"C1\" : \"0.8\",\n \"C2\" : \"0.7\",\n \"C3\" : \"0.6\"\n}, {\n \"C0\" : \"${P1750389141384}=='B' && ${P1750389624350}>=${P1750389423667}\",\n \"C1\" : \"0.6\",\n \"C2\" : \"0.6\",\n \"C3\" : \"${P1750381831740}<9 ? 0.5 : ${P1750381831740} < 12 ? 0.4 : 0\"\n}, {\n \"C0\" : \"${P1750389141384}=='C' && ${P1750389624350}<= ${P1750389423667}\",\n \"C1\" : \"1\",\n \"C2\" : \"0.7\",\n \"C3\" : \"0.5\"\n}, {\n \"C0\" : \"${P1750389141384}=='C' && ${P1750389449618}<${P1750389624350} && ${P1750389624350}<${P1750389423667}\",\n \"C1\" : \"0.7\",\n \"C2\" : \"0.6\",\n \"C3\" : \"0.5\"\n}, {\n \"C0\" : \"${P1750389141384}=='C' && ${P1750389624350}>=${P1750389423667}\",\n \"C1\" : \"0.5\",\n \"C2\" : \"0.5\",\n \"C3\" : \"${P1750381831740}<9 ? 0.4 : ${P1750381831740} < 12 ? 0.3 : 0\"\n} ]" + } ] + } ] + }, { + "id" : "1c700757-7477-4b3e-bdac-313b46eeb28a", + "code" : "M1750382240821", + "name" : "有息负债乘数调整", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "CONSTANT", + "id" : "d44c33f1-b38f-4535-b238-7c00cbfe3a90", + "code" : "P1750391712819", + "name" : "有息负债乘数表", + "description" : null, + "valueType" : "D1750391490654", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : true, + "defaultValue" : "[{\"CategoryCode\":\"A\",\"Category\":\"农林牧渔\",\"Code\":\"01, 02, 03, 04,05\",\"Name\":\"农林牧渔业\",\"Value\":0.95},{\"CategoryCode\":\"B\",\"Category\":\"采矿业\",\"Code\":\"06\",\"Name\":\"煤炭开采和洗选业\",\"Value\":0.9},{\"CategoryCode\":\"B\",\"Category\":\"采矿业\",\"Code\":\"07,08,09,10,11,12\",\"Name\":\"煤炭开采和洗选业其他采矿业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"25\",\"Name\":\"石油加工、炼焦和核燃料加工业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"26\",\"Name\":\"化学原料和化学制品制造业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"27\",\"Name\":\"医药制造业\",\"Value\":0.9},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"31\",\"Name\":\"黑色金属冶炼和压延加工业\",\"Value\":0.85},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"32\",\"Name\":\"有色金屈治炼和压延加工业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"34\",\"Name\":\"通用设备制造业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"35\",\"Name\":\"专用设备制造业\",\"Value\":0.9},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"36\",\"Name\":\"汽车制造业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"37\",\"Name\":\"铁路、船舶、航空航天和其他运输设畚制造业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"38\",\"Name\":\"电气机械和器材制造业\",\"Value\":0.95},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"39\",\"Name\":\"计算机、通信和其他电子设备制造业\",\"Value\":0.85},{\"CategoryCode\":\"C\",\"Category\":\"制造业\",\"Code\":\"13,14,15, 16,17, 18, 19, 20,21, 22, 23, 24,28, 29, 30, 33,40, 41,42,43\",\"Name\":\"其他制造业\",\"Value\":0.95},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"441\",\"Name\":\"电力生应\",\"Value\":0.95},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"442\",\"Name\":\"电力供应\",\"Value\":0.8},{\"CategoryCode\":\"D\",\"Category\":\"电力、热力、燃气及水生产供应业\",\"Code\":\"43, 45,46\",\"Name\":\"热力、燃气及水生产供应业\",\"Value\":0.95},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"47\",\"Name\":\"房屋建筑业\",\"Value\":0.75},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"48\",\"Name\":\"土木工程建筑业\",\"Value\":0.75},{\"CategoryCode\":\"E\",\"Category\":\"建筑业\",\"Code\":\"49, 50\",\"Name\":\"其他建筑业\",\"Value\":0.9},{\"CategoryCode\":\"F\",\"Category\":\"批发和零售业\",\"Code\":\"51\",\"Name\":\"批发\",\"Value\":0.95},{\"CategoryCode\":\"F\",\"Category\":\"批发和零售业\",\"Code\":\"52\",\"Name\":\"零售业\",\"Value\":0.95},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"53\",\"Name\":\"铁路运输业\",\"Value\":0.9},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"54\",\"Name\":\"道路运输业\",\"Value\":0.95},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"56\",\"Name\":\"航空运输业\",\"Value\":0.85},{\"CategoryCode\":\"G\",\"Category\":\"交通运输、仓储和邮政\",\"Code\":\"55, 57, 58, 59,60\",\"Name\":\"其他交通运输、仓储和邮政业\",\"Value\":0.95},{\"CategoryCode\":\"H\",\"Category\":\"住宿和餐饮业\",\"Code\":\"61, 62\",\"Name\":\"住宿和餐饮业\",\"Value\":0.95},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"63\",\"Name\":\"电信、广播电视和卫星传输服务\",\"Value\":0.8},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"64\",\"Name\":\"互联网和相关服务\",\"Value\":0.8},{\"CategoryCode\":\"I\",\"Category\":\"信息传输、软件和信息技术服务业\",\"Code\":\"65\",\"Name\":\"软件和信息技术服务业\",\"Value\":0.95},{\"CategoryCode\":\"K\",\"Category\":\"房地产业\",\"Code\":\"70\",\"Name\":\"房地产开发经营\",\"Value\":0.9},{\"CategoryCode\":\"K\",\"Category\":\"房地产业\",\"Code\":\"702, 703, 704,709\",\"Name\":\"房地产业\",\"Value\":0.95},{\"CategoryCode\":\"L\",\"Category\":\"租赁和商务服务业\",\"Code\":\"71, 72\",\"Name\":\"租赁和商务服务业\",\"Value\":0.95},{\"CategoryCode\":\"M\",\"Category\":\"科学研究和技术服务\",\"Code\":\"73, 74, 75\",\"Name\":\"科学研究和技术服务业\",\"Value\":0.85},{\"CategoryCode\":\"N\",\"Category\":\"水利、环境水利管理、生态保护和环境\",\"Code\":\"76, 77, 79\",\"Name\":\"水利管理、生态保护和环境治理业\",\"Value\":0.95},{\"CategoryCode\":\"N\",\"Category\":\"水利、环境水利管理、生态保护和环境\",\"Code\":\"78\",\"Name\":\"公共设施管理业\",\"Value\":0.95},{\"CategoryCode\":\"O\",\"Category\":\"居民服务、居民服务、修理和其他服务\",\"Code\":\"80, 81, 82\",\"Name\":\"居民服务、居民服务、修理和其他服务\",\"Value\":0.95},{\"CategoryCode\":\"P\",\"Category\":\"教育\",\"Code\":\"83\",\"Name\":\"教育\",\"Value\":0.95},{\"CategoryCode\":\"Q\",\"Category\":\"卫生和社会工作\",\"Code\":\"84\",\"Name\":\"卫生\",\"Value\":0.9},{\"CategoryCode\":\"Q\",\"Category\":\"卫生和社会工作\",\"Code\":\"85\",\"Name\":\"社会工作\",\"Value\":0.95},{\"CategoryCode\":\"R\",\"Category\":\"文化、体育和娛乐业\",\"Code\":\"86,87,88,89,90\",\"Name\":\"文化、体育和娛乐业\",\"Value\":0.95},{\"CategoryCode\":\"S\",\"Category\":\"公共管理、社会保障和社会组织\",\"Code\":\"92\",\"Name\":\"国家机构\",\"Value\":0.85},{\"CategoryCode\":\"S\",\"Category\":\"公共管理、社会保障和社会组织\",\"Code\":\"91, 93, 94,95,96\",\"Name\":\"公共管理、社会保障和社会组织\",\"Value\":0.95},{\"CategoryCode\":\"\",\"Category\":\"其他\",\"Code\":\"\",\"Name\":\"除上述行业外的其他所有行业\",\"Value\":0.95}]", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "a547fb94-e339-4355-a572-0d45bf4899ca", + "code" : "P1750382571399", + "name" : "有息负债乘数调整系数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "GROOVY_SCRIPT", + "id" : "dbe6b87d-64bb-42ef-a7d1-1373efa6f995", + "description" : null, + "order" : 1, + "enable" : true, + "groovyScript" : "if(!isNil(${客户行业})){\n for(int i=0; i < .size(); i++){\n def splits =${P1750391712819}[0].${Code}.split(',');\n for (int j=0; j < splits.length; j++){\n if(startWith(${客户行业},splits[j])){\n ${P1750382571399} =${P1750391712819}[i].${Value};\n }\n }\n }\n}" + } ] + } ] + }, { + "id" : "4bd76f32-c3da-4794-bb4e-3ee824ff4e28", + "code" : "M1750382435779", + "name" : "新增限额转换", + "description" : null, + "enable" : true, + "order" : 3, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "d4d93fe5-26c3-4d5a-8c08-ef3bb7672bc6", + "code" : "P1750382620914", + "name" : "新增限额转换系数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "CONDITION_RANGE", + "id" : "7b1484bd-015c-4d60-b6d7-7fdc2c6041d8", + "description" : null, + "order" : 1, + "enable" : true, + "conditionRange" : "[ {\n \"condition\" : \"${P1750381831740}==1\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==2\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==3\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==4\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==5\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==6\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==7\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==8\",\n \"value\" : \"0.7\"\n}, {\n \"condition\" : \"${P1750381831740}==9\",\n \"value\" : \"0.6\"\n}, {\n \"condition\" : \"${P1750381831740}==10\",\n \"value\" : \"0.6\"\n}, {\n \"condition\" : \"${P1750381831740}==11\",\n \"value\" : \"0.6\"\n}, {\n \"condition\" : \"${P1750381831740}==12\",\n \"value\" : \"0.4\"\n}, {\n \"condition\" : \"${P1750381831740}==13\",\n \"value\" : \"0.4\"\n}, {\n \"condition\" : \"${P1750381831740}==14\",\n \"value\" : \"0.4\"\n}, {\n \"condition\" : \"${P1750381831740}==15\",\n \"value\" : \"0.4\"\n}, {\n \"condition\" : \"${P1750381831740}==16\",\n \"value\" : \"0.4\"\n}, {\n \"condition\" : \"${P1750381831740}==17\",\n \"value\" : \"0\"\n}, {\n \"condition\" : \"${P1750381831740}==18\",\n \"value\" : \"0\"\n}, {\n \"condition\" : \"${P1750381831740}==19\",\n \"value\" : \"0\"\n} ]" + } ] + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "2bd7b0da-e038-499f-88de-aa38d2f9134f", + "code" : "P1750382670651", + "name" : "新增限额调整系数", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "9667ade5-74e6-4e3f-90e3-84c4e92e89e5", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1750382530023} * ${P1750382571399} * ${P1750382620914}" + } ] + } ] + } ], + "parameters" : [ { + "type" : "IN", + "id" : "8c485964-6b48-4847-88b2-22b46b41e1ec", + "code" : "P1750385074599", + "name" : "客户基本信息", + "description" : null, + "valueType" : "D1731650340369", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : null + }, { + "type" : "INDICATOR", + "id" : "412bf80f-e677-4069-8bab-dbd9179657bb", + "code" : "I1731661519620", + "name" : "上期财报", + "description" : null, + "valueType" : "D1731642643607", + "valueTypeVersion" : 1, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 4, + "validators" : null, + "processors" : null, + "libCode" : "L1731655406673", + "libVersion" : 1, + "indicatorCode" : "I1731661519620" + }, { + "type" : "INDICATOR", + "id" : "9418deb4-6a40-4fab-941f-0bafa40df1b0", + "code" : "I1731661528383", + "name" : "本期财报", + "description" : null, + "valueType" : "D1731642643607", + "valueTypeVersion" : 1, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 5, + "validators" : null, + "processors" : null, + "libCode" : "L1731655406673", + "libVersion" : 1, + "indicatorCode" : "I1731661528383" + }, { + "type" : "IN", + "id" : "fcc5296b-7961-479c-8135-3e5b459030df", + "code" : "P1750381831740", + "name" : "评级等级", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 6, + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "ee1b197c-d38e-48db-859e-4d2b879fddfa", + "code" : "P1750382781702", + "name" : "年末贷款余额", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 7, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "85dd0b20-f2cf-4873-aa89-10b09d27ec51", + "code" : "P1750382845669", + "name" : "风险限额", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 8, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "8eb6bd88-bc3c-49a0-b42d-b842b735e497", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1750381787471} * ${P1750382670651} + ${P1750382781702}" + } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + } ], + "testCases" : null + } ], + "testCases" : null + }, { + "type" : "FOLDER", + "id" : "a6345b6f-1759-49f2-8982-ed29444b1fb4", + "code" : "M1734933291942", + "name" : "基本组件", + "description" : null, + "version" : null, + "status" : null, + "children" : [ { + "type" : "MODEL", + "id" : "5c27d1f3-9ff4-414d-92a5-5e91b8585845", + "code" : "M1734933324012", + "name" : "001-对象属性赋值", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "f4732be2-c482-48a3-a8bb-bd961b0b0660", + "name" : "对象属性赋值", + "description" : null, + "lastTestDate" : "2025-04-23 17:06:20", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "08fbe953-5b1a-4e81-a473-6a8466796d30", + "code" : "P1734933364178", + "inputValue" : "{\n\t\"OCLT\" : 1.0, /*负债合计*/\n\t\"OCI005\" : 1.0, /*五、其他综合收益的税后净额*/\n\t\"OCI003\" : 1.0, /*三、利润总额(亏损总额以“-”号填列)*/\n\t\"OCC001001\" : 1.0, /*销售商品、提供劳务收到的现金*/\n\t\"OCL002005\" : 1.0, /*递延收益*/\n\t\"OCL001001\" : 1.0, /*短期借款*/\n\t\"OCI001A02\" : 1.0, /*投资收益(损失以“-”号填列)*/\n\t\"OCC001006\" : 1.0, /*支付的各项税费*/\n\t\"OCC003001\" : 1.0, /*吸收投资收到的现金*/\n\t\"OCC002004\" : 1.0, /*处置子公司及其他营业单位收到的现金净额*/\n\t\"OCI004001\" : 1.0, /*(一)持续经营净利润(净亏损以“-”号填列)*/\n\t\"OCC002STO\" : 1.0, /*投资活动现金流出小计*/\n\t\"OCC001STO\" : 1.0, /*经营活动现金流出小计*/\n\t\"OCA002013\" : 1.0, /*长期待摊费用*/\n\t\"OCL002007\" : 1.0, /*其他非流动负债*/\n\t\"OCET\" : 1.0, /*所有者权益(或股东权益)合计*/\n\t\"OCL00200202\" : 1.0, /*应付债券(其中:永续债)*/\n\t\"OCL001\" : 1.0, /*流动负债:*/\n\t\"OCLET\" : 1.0, /*负债和所有者权益(或股东权益)总计*/\n\t\"OCC003004\" : 1.0, /*偿还债务支付的现金*/\n\t\"OCA001009\" : 1.0, /*持有待售资产*/\n\t\"OCA002009\" : 1.0, /*油气资产*/\n\t\"OCI00500205\" : 1.0, /*5.外币财务报表折算差额*/\n\t\"OCL002001\" : 1.0, /*长期借款*/\n\t\"OCL001012\" : 1.0, /*其他流动负债*/\n\t\"OCA001010\" : 1.0, /*一年内到期的非流动资产*/\n\t\"OCI004002\" : 1.0, /*(二)终止经营净利润(净亏损以“-”号填列)*/\n\t\"OCI00500102\" : 1.0, /*2.权益法下不能转损益的其他综合收益*/\n\t\"OCI001A0201\" : 1.0, /*其中:对联营企业和合营企业的投资收益*/\n\t\"OCA001011\" : 1.0, /*其他流动资产*/\n\t\"OCI00500203\" : 1.0, /*3.持有至到期投资重分类为可供出售金融资产损益*/\n\t\"OCA002008\" : 1.0, /*生产性生物资产*/\n\t\"OCL001004\" : 1.0, /*应付票据*/\n\t\"OCI00500101\" : 1.0, /*1.重新计量设定受益计划变动额*/\n\t\"OCC001T\" : 1.0, /*经营活动产生的现金流量净额*/\n\t\"OCI005002\" : 1.0, /*(二)将重分类进损益的其他综合收益*/\n\t\"OCI001L02\" : 1.0, /*税金及附加*/\n\t\"OCL001011\" : 1.0, /*一年内到期的非流动负债*/\n\t\"OCC003STI\" : 1.0, /*筹资活动现金流入小计*/\n\t\"OCA002014\" : 1.0, /*递延所得税资产*/\n\t\"OCI001A05\" : 1.0, /*资产处置收益(损失以“-”号填列)*/\n\t\"OCA002004\" : 1.0, /*长期股权投资*/\n\t\"OCI00500202\" : 1.0, /*2.可供出售金融资产公允价值变动损益*/\n\t\"OCI001L04\" : 1.0, /*管理费用*/\n\t\"OCL001009\" : 1.0, /*其他应付款*/\n\t\"OCI001A03\" : 1.0, /*公允价值变动收益(损失以“-”号填列)*/\n\t\"OCC005\" : 1.0, /*五、现金及现金等价物净增加额*/\n\t\"OCC002009\" : 1.0, /*支付其他与投资活动有关的现金*/\n\t\"OCC002007\" : 1.0, /*投资支付的现金*/\n\t\"OCA002011\" : 1.0, /*开发支出*/\n\t\"OCC002003\" : 1.0, /*处置固定资产、无形资产和其他长期资产收回的现金净额*/\n\t\"OCC003002\" : 1.0, /*取得借款收到的现金*/\n\t\"OCC003STO\" : 1.0, /*筹资活动现金流出小计*/\n\t\"OCE\" : 1.0, /*所有者权益(或股东权益):*/\n\t\"OCE007\" : 1.0, /*盈余公积*/\n\t\"OCI001L0601\" : 1.0, /*其中:利息费用*/\n\t\"OCI00500204\" : 1.0, /*4.现金流量套期损益的有效部分*/\n\t\"OCC002005\" : 1.0, /*收到其他与投资活动有关的现金*/\n\t\"OCL002\" : 1.0, /*非流动负债:*/\n\t\"OCC002\" : 1.0, /*二、投资活动产生的现金流量:*/\n\t\"OCC002006\" : 1.0, /*购建固定资产、无形资产和其他长期资产支付的现金*/\n\t\"OCA002015\" : 1.0, /*其他非流动资产*/\n\t\"OCC001002\" : 1.0, /*收到的税费返还*/\n\t\"OCA001001\" : 1.0, /*货币资金*/\n\t\"OCI001A04\" : 1.0, /*资产减值损失(损失以“-”号填列)*/\n\t\"OCI007002\" : 1.0, /*(二)稀释每股收益*/\n\t\"OCI005001\" : 1.0, /*(一)不能重分类进损益的其他综合收益*/\n\t\"OCI002\" : 1.0, /*二、营业利润(亏损以“-”号填列)*/\n\t\"OCL001010\" : 1.0, /*持有待售负债*/\n\t\"OCA002\" : 1.0, /*非流动资产:*/\n\t\"OCL001003\" : 1.0, /*衍生金融负债*/\n\t\"OCC002002\" : 1.0, /*取得投资收益收到的现金*/\n\t\"OCE003\" : 1.0, /*资本公积*/\n\t\"OCE006\" : 1.0, /*专项储备*/\n\t\"OCE002001\" : 1.0, /*其他权益工具(其中:优先股)*/\n\t\"OCI003L01\" : 1.0, /*减:所得税费用*/\n\t\"OCA002001\" : 1.0, /*可供出售金融资产*/\n\t\"OCC004\" : 1.0, /*四、汇率变动对现金及现金等价物的影响*/\n\t\"OCC003T\" : 1.0, /*筹资活动产生的现金流量净额*/\n\t\"OCC001STI\" : 1.0, /*经营活动现金流入小计*/\n\t\"OCL001005\" : 1.0, /*应付账款*/\n\t\"OCC001003\" : 1.0, /*收到其他与经营活动有关的现金*/\n\t\"OCI001L01\" : 1.0, /*减:营业成本*/\n\t\"OCE008\" : 1.0, /*未分配利润*/\n\t\"OCC003\" : 1.0, /*三、筹资活动产生的现金流量:*/\n\t\"OCC001004\" : 1.0, /*购买商品、接受劳务支付的现金*/\n\t\"OCE002002\" : 1.0, /*其他权益工具(其中:永续债)*/\n\t\"OCI001L03\" : 1.0, /*销售费用*/\n\t\"OCI00500201\" : 1.0, /*1.权益法下可转损益的其他综合收益*/\n\t\"OCI001\" : 1.0, /*一、营业收入*/\n\t\"OCA001004\" : 1.0, /*应收票据*/\n\t\"OCA001\" : 1.0, /*流动资产:*/\n\t\"OCC001007\" : 1.0, /*支付其他与经营活动有关的现金*/\n\t\"OCL00200201\" : 1.0, /*应付债券(其中:优先股)*/\n\t\"OCC005A001\" : 1.0, /*加:期初现金及现金等价物余额*/\n\t\"OCI007\" : 1.0, /*七、每股收益:*/\n\t\"OCI001L06\" : 1.0, /*财务费用*/\n\t\"OCC002T\" : 1.0, /*投资活动产生的现金流量净额*/\n\t\"OCA002006\" : 1.0, /*固定资产*/\n\t\"OCC002001\" : 1.0, /*收回投资收到的现金*/\n\t\"OCC003006\" : 1.0, /*支付其他与筹资活动有关的现金*/\n\t\"OCC001\" : 1.0, /*一、经营活动产生的现金流量:*/\n\t\"OCA001008\" : 1.0, /*存货*/\n\t\"OCC001005\" : 1.0, /*支付给职工以及为职工支付的现金*/\n\t\"OCA001007\" : 1.0, /*其他应收款*/\n\t\"OCL002T\" : 1.0, /*非流动负债合计*/\n\t\"OCC003005\" : 1.0, /*分配股利、利润或偿付利息支付的现金*/\n\t\"OCA001005\" : 1.0, /*应收账款*/\n\t\"OCI001L0602\" : 1.0, /*利息收入*/\n\t\"OCE005\" : 1.0, /*其他综合收益*/\n\t\"OCI002A01\" : 1.0, /*加:营业外收入*/\n\t\"OCA001T\" : 1.0, /*流动资产合计*/\n\t\"OCI002L01\" : 1.0, /*减:营业外支出*/\n\t\"OCL002003\" : 1.0, /*长期应付款*/\n\t\"OCC003003\" : 1.0, /*收到其他与筹资活动有关的现金*/\n\t\"OCA002007\" : 1.0, /*在建工程*/\n\t\"OCL002006\" : 1.0, /*递延所得税负债*/\n\t\"OCE002\" : 1.0, /*其他权益工具*/\n\t\"OCA002002\" : 1.0, /*持有至到期投资*/\n\t\"OCC006\" : 1.0, /*六、期末现金及现金等价物余额*/\n\t\"OCL002002\" : 1.0, /*应付债券*/\n\t\"OCE001\" : 1.0, /*实收资本(或股本)*/\n\t\"OCI001L05\" : 1.0, /*研发费用*/\n\t\"OCL001008\" : 1.0, /*应交税费*/\n\t\"OCI001A01\" : 1.0, /*加:其他收益*/\n\t\"OCA002T\" : 1.0, /*非流动资产合计*/\n\t\"OCA002005\" : 1.0, /*投资性房地产*/\n\t\"OCL001002\" : 1.0, /*以公允价值计量且其变动计入当期损益的金融负债*/\n\t\"OCA001006\" : 1.0, /*预付款项*/\n\t\"OCL001006\" : 1.0, /*预收款项*/\n\t\"OCA001003\" : 1.0, /*衍生金融资产*/\n\t\"OCI007001\" : 1.0, /*(一)基本每股收益*/\n\t\"OCA002010\" : 1.0, /*无形资产*/\n\t\"OCL001007\" : 1.0, /*应付职工薪酬*/\n\t\"OCA001002\" : 1.0, /*以公允价值计量且其变动计入当期损益的金融资产*/\n\t\"OCA002003\" : 1.0, /*长期应收款*/\n\t\"OCAT\" : 1.0, /*资产总计*/\n\t\"OCC002008\" : 1.0, /*取得子公司及其他营业单位支付的现金净额*/\n\t\"OCI004\" : 1.0, /*四、净利润(净亏损以“-”号填列)*/\n\t\"OCL002004\" : 1.0, /*预计负债*/\n\t\"OCC002STI\" : 1.0, /*投资活动现金流入小计*/\n\t\"OCE004\" : 1.0, /*减:库存股*/\n\t\"OCL001T\" : 1.0, /*流动负债合计*/\n\t\"OCA002012\" : 1.0, /*商誉*/\n\t\"OCI006\" : 1.0, /*六、综合收益总额*/\n}", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "71d4b95c-477d-4de3-9018-41c45b16583f", + "code" : "P1734933380399", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "{\n \"NCA001\" : 1.0,\n \"NCA001001\" : 1.0,\n \"NCA001002\" : null,\n \"NCA001003\" : 1.0,\n \"NCA001004\" : 1.0,\n \"NCA001005\" : 1.0,\n \"NCA001006\" : null,\n \"NCA001007\" : 1.0,\n \"NCA001008\" : 1.0,\n \"NCA001009\" : 1.0,\n \"NCA001010\" : null,\n \"NCA001011\" : 1.0,\n \"NCA001012\" : 1.0,\n \"NCA001013\" : 1.0,\n \"NCA001T\" : 1.0,\n \"NCA002\" : 1.0,\n \"NCA002001\" : null,\n \"NCA002002\" : null,\n \"NCA002003\" : 1.0,\n \"NCA002004\" : 1.0,\n \"NCA002005\" : null,\n \"NCA002006\" : null,\n \"NCA002007\" : 1.0,\n \"NCA002008\" : 1.0,\n \"NCA002009\" : 1.0,\n \"NCA002010\" : 1.0,\n \"NCA002011\" : 1.0,\n \"NCA002012\" : null,\n \"NCA002013\" : 1.0,\n \"NCA002014\" : 1.0,\n \"NCA002015\" : 1.0,\n \"NCA002016\" : 1.0,\n \"NCA002017\" : 1.0,\n \"NCA002018\" : 1.0,\n \"NCA002T\" : 1.0,\n \"NCAT\" : 1.0,\n \"NCC001\" : 1.0,\n \"NCC001001\" : 1.0,\n \"NCC001002\" : 1.0,\n \"NCC001003\" : 1.0,\n \"NCC001STI\" : 1.0,\n \"NCC001004\" : 1.0,\n \"NCC001005\" : 1.0,\n \"NCC001006\" : 1.0,\n \"NCC001007\" : 1.0,\n \"NCC001STO\" : 1.0,\n \"NCC001T\" : 1.0,\n \"NCC002\" : 1.0,\n \"NCC002001\" : 1.0,\n \"NCC002002\" : 1.0,\n \"NCC002003\" : 1.0,\n \"NCC002004\" : 1.0,\n \"NCC002005\" : 1.0,\n \"NCC002STI\" : 1.0,\n \"NCC002006\" : 1.0,\n \"NCC002007\" : 1.0,\n \"NCC002008\" : 1.0,\n \"NCC002009\" : 1.0,\n \"NCC002STO\" : 1.0,\n \"NCC002T\" : 1.0,\n \"NCC003\" : 1.0,\n \"NCC003001\" : 1.0,\n \"NCC003002\" : 1.0,\n \"NCC003003\" : 1.0,\n \"NCC003STI\" : 1.0,\n \"NCC003004\" : 1.0,\n \"NCC003005\" : 1.0,\n \"NCC003006\" : 1.0,\n \"NCC003STO\" : 1.0,\n \"NCC003T\" : 1.0,\n \"NCC004\" : 1.0,\n \"NCC005\" : 1.0,\n \"NCC005001\" : 1.0,\n \"NCC006\" : 1.0,\n \"NCL001\" : 1.0,\n \"NCL001001\" : 1.0,\n \"NCL001002\" : null,\n \"NCL001003\" : 1.0,\n \"NCL001004\" : 1.0,\n \"NCL001005\" : 1.0,\n \"NCL001006\" : 1.0,\n \"NCL001007\" : null,\n \"NCL001008\" : 1.0,\n \"NCL001009\" : 1.0,\n \"NCL001010\" : 1.0,\n \"NCL001011\" : 1.0,\n \"NCL001012\" : 1.0,\n \"NCL001013\" : 1.0,\n \"NCL001T\" : 1.0,\n \"NCL002\" : 1.0,\n \"NCL002001\" : 1.0,\n \"NCL002002\" : 1.0,\n \"NCL00200201\" : 1.0,\n \"NCL00200202\" : 1.0,\n \"NCL002003\" : null,\n \"NCL002004\" : 1.0,\n \"NCL002005\" : 1.0,\n \"NCL002006\" : 1.0,\n \"NCL002007\" : 1.0,\n \"NCL002008\" : 1.0,\n \"NCL002T\" : 1.0,\n \"NCL0020080101\" : 1.0,\n \"NCE001\" : 1.0,\n \"NCE001001\" : 1.0,\n \"NCE001002\" : 1.0,\n \"NCE00100201\" : 1.0,\n \"NCE00100202\" : 1.0,\n \"NCE001003\" : 1.0,\n \"NCE001004\" : 1.0,\n \"NCE001005\" : 1.0,\n \"NCE001006\" : 1.0,\n \"NCE001007\" : 1.0,\n \"NCE001008\" : 1.0,\n \"NCE001T\" : 1.0,\n \"NCLET\" : 1.0,\n \"NCI001\" : 1.0,\n \"NCI001001\" : 1.0,\n \"NCI00100101\" : 1.0,\n \"NCI00100102\" : 1.0,\n \"NCI00100103\" : 1.0,\n \"NCI00100104\" : 1.0,\n \"NCI00100105\" : 1.0,\n \"NCI0010010501\" : 1.0,\n \"NCI0010010502\" : 1.0,\n \"NCI001002\" : 1.0,\n \"NCI00100201\" : 1.0,\n \"NCI0010020101\" : 1.0,\n \"NCI0010020102\" : null,\n \"NCI00100202\" : null,\n \"NCI00100203\" : 1.0,\n \"NCI00100204\" : null,\n \"NCI00100205\" : 1.0,\n \"NCI00100206\" : 1.0,\n \"NCI002\" : 1.0,\n \"NCI002001\" : 1.0,\n \"NCI002002\" : 1.0,\n \"NCI003\" : 1.0,\n \"NCI003001\" : 1.0,\n \"NCI004\" : 1.0,\n \"NCI004001\" : 1.0,\n \"NCI004002\" : 1.0,\n \"NCI005\" : 1.0,\n \"NCI005001\" : 1.0,\n \"NCI00500101\" : 1.0,\n \"NCI00500102\" : 1.0,\n \"NCI00500103\" : null,\n \"NCI00500104\" : null,\n \"NCI005002\" : 1.0,\n \"NCI00500201\" : 1.0,\n \"NCI00500202\" : null,\n \"NCI00500203\" : null,\n \"NCI00500204\" : null,\n \"NCI00500205\" : null,\n \"NCI00500206\" : null,\n \"NCI006\" : 1.0,\n \"NCI007\" : 1.0,\n \"NCI007001\" : 1.0,\n \"NCI007002\" : 1.0\n}", + "resultValue" : "{\n \"NCA001\" : 1.0,\n \"NCA001001\" : 1.0,\n \"NCA001002\" : null,\n \"NCA001003\" : 1.0,\n \"NCA001004\" : 1.0,\n \"NCA001005\" : 1.0,\n \"NCA001006\" : null,\n \"NCA001007\" : 1.0,\n \"NCA001008\" : 1.0,\n \"NCA001009\" : 1.0,\n \"NCA001010\" : null,\n \"NCA001011\" : 1.0,\n \"NCA001012\" : 1.0,\n \"NCA001013\" : 1.0,\n \"NCA001T\" : 1.0,\n \"NCA002\" : 1.0,\n \"NCA002001\" : null,\n \"NCA002002\" : null,\n \"NCA002003\" : 1.0,\n \"NCA002004\" : 1.0,\n \"NCA002005\" : null,\n \"NCA002006\" : null,\n \"NCA002007\" : 1.0,\n \"NCA002008\" : 1.0,\n \"NCA002009\" : 1.0,\n \"NCA002010\" : 1.0,\n \"NCA002011\" : 1.0,\n \"NCA002012\" : null,\n \"NCA002013\" : 1.0,\n \"NCA002014\" : 1.0,\n \"NCA002015\" : 1.0,\n \"NCA002016\" : 1.0,\n \"NCA002017\" : 1.0,\n \"NCA002018\" : 1.0,\n \"NCA002T\" : 1.0,\n \"NCAT\" : 1.0,\n \"NCC001\" : 1.0,\n \"NCC001001\" : 1.0,\n \"NCC001002\" : 1.0,\n \"NCC001003\" : 1.0,\n \"NCC001STI\" : 1.0,\n \"NCC001004\" : 1.0,\n \"NCC001005\" : 1.0,\n \"NCC001006\" : 1.0,\n \"NCC001007\" : 1.0,\n \"NCC001STO\" : 1.0,\n \"NCC001T\" : 1.0,\n \"NCC002\" : 1.0,\n \"NCC002001\" : 1.0,\n \"NCC002002\" : 1.0,\n \"NCC002003\" : 1.0,\n \"NCC002004\" : 1.0,\n \"NCC002005\" : 1.0,\n \"NCC002STI\" : 1.0,\n \"NCC002006\" : 1.0,\n \"NCC002007\" : 1.0,\n \"NCC002008\" : 1.0,\n \"NCC002009\" : 1.0,\n \"NCC002STO\" : 1.0,\n \"NCC002T\" : 1.0,\n \"NCC003\" : 1.0,\n \"NCC003001\" : 1.0,\n \"NCC003002\" : 1.0,\n \"NCC003003\" : 1.0,\n \"NCC003STI\" : 1.0,\n \"NCC003004\" : 1.0,\n \"NCC003005\" : 1.0,\n \"NCC003006\" : 1.0,\n \"NCC003STO\" : 1.0,\n \"NCC003T\" : 1.0,\n \"NCC004\" : 1.0,\n \"NCC005\" : 1.0,\n \"NCC005001\" : 1.0,\n \"NCC006\" : 1.0,\n \"NCL001\" : 1.0,\n \"NCL001001\" : 1.0,\n \"NCL001002\" : null,\n \"NCL001003\" : 1.0,\n \"NCL001004\" : 1.0,\n \"NCL001005\" : 1.0,\n \"NCL001006\" : 1.0,\n \"NCL001007\" : null,\n \"NCL001008\" : 1.0,\n \"NCL001009\" : 1.0,\n \"NCL001010\" : 1.0,\n \"NCL001011\" : 1.0,\n \"NCL001012\" : 1.0,\n \"NCL001013\" : 1.0,\n \"NCL001T\" : 1.0,\n \"NCL002\" : 1.0,\n \"NCL002001\" : 1.0,\n \"NCL002002\" : 1.0,\n \"NCL00200201\" : 1.0,\n \"NCL00200202\" : 1.0,\n \"NCL002003\" : null,\n \"NCL002004\" : 1.0,\n \"NCL002005\" : 1.0,\n \"NCL002006\" : 1.0,\n \"NCL002007\" : 1.0,\n \"NCL002008\" : 1.0,\n \"NCL002T\" : 1.0,\n \"NCL0020080101\" : 1.0,\n \"NCE001\" : 1.0,\n \"NCE001001\" : 1.0,\n \"NCE001002\" : 1.0,\n \"NCE00100201\" : 1.0,\n \"NCE00100202\" : 1.0,\n \"NCE001003\" : 1.0,\n \"NCE001004\" : 1.0,\n \"NCE001005\" : 1.0,\n \"NCE001006\" : 1.0,\n \"NCE001007\" : 1.0,\n \"NCE001008\" : 1.0,\n \"NCE001T\" : 1.0,\n \"NCLET\" : 1.0,\n \"NCI001\" : 1.0,\n \"NCI001001\" : 1.0,\n \"NCI00100101\" : 1.0,\n \"NCI00100102\" : 1.0,\n \"NCI00100103\" : 1.0,\n \"NCI00100104\" : 1.0,\n \"NCI00100105\" : 1.0,\n \"NCI0010010501\" : 1.0,\n \"NCI0010010502\" : 1.0,\n \"NCI001002\" : 1.0,\n \"NCI00100201\" : 1.0,\n \"NCI0010020101\" : 1.0,\n \"NCI0010020102\" : null,\n \"NCI00100202\" : null,\n \"NCI00100203\" : 1.0,\n \"NCI00100204\" : null,\n \"NCI00100205\" : 1.0,\n \"NCI00100206\" : 1.0,\n \"NCI002\" : 1.0,\n \"NCI002001\" : 1.0,\n \"NCI002002\" : 1.0,\n \"NCI003\" : 1.0,\n \"NCI003001\" : 1.0,\n \"NCI004\" : 1.0,\n \"NCI004001\" : 1.0,\n \"NCI004002\" : 1.0,\n \"NCI005\" : 1.0,\n \"NCI005001\" : 1.0,\n \"NCI00500101\" : 1.0,\n \"NCI00500102\" : 1.0,\n \"NCI00500103\" : null,\n \"NCI00500104\" : null,\n \"NCI005002\" : 1.0,\n \"NCI00500201\" : 1.0,\n \"NCI00500202\" : null,\n \"NCI00500203\" : null,\n \"NCI00500204\" : null,\n \"NCI00500205\" : null,\n \"NCI00500206\" : null,\n \"NCI006\" : 1.0,\n \"NCI007\" : 1.0,\n \"NCI007001\" : 1.0,\n \"NCI007002\" : 1.0\n}", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "d8c2bbf7-2e58-4ad9-920c-7661dd2fc9e6", + "code" : "M1734933324012", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "e213a85b-bffe-47e9-814d-42e5e487ae4e", + "code" : "M1734933324012", + "name" : "001-对象属性赋值", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "4e0f65b7-35aa-433b-9e7d-b921022e4e80", + "code" : "P1734933364178", + "name" : "一般企业旧财报", + "description" : null, + "valueType" : "D1731642506002", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "db4cb298-766d-4efb-8e54-a65fcb2d87fc", + "code" : "P1734933380399", + "name" : "一般企业新财报", + "description" : null, + "valueType" : "D1731642643607", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "OBJECT_PROPERTIES", + "id" : "d7def125-9aa1-4da9-9098-049998578782", + "description" : null, + "order" : 1, + "enable" : true, + "objectCondition" : "", + "objectProperties" : "[{\"code\":\"NCA001\",\"name\":\"流动资产:\",\"expression\":\"${P1734933364178}.${OCA001}\"},{\"code\":\"NCA001001\",\"name\":\"货币资金\",\"expression\":\"${P1734933364178}.${OCA001001}\"},{\"code\":\"NCA001002\",\"name\":\"交易性金融资产\",\"expression\":\"\"},{\"code\":\"NCA001003\",\"name\":\"衍生金融资产\",\"expression\":\"${P1734933364178}.${OCA001003}\"},{\"code\":\"NCA001004\",\"name\":\"应收票据\",\"expression\":\"${P1734933364178}.${OCA001004}\"},{\"code\":\"NCA001005\",\"name\":\"应收账款\",\"expression\":\"${P1734933364178}.${OCA001005}\"},{\"code\":\"NCA001006\",\"name\":\"应收款项融资\",\"expression\":\"\"},{\"code\":\"NCA001007\",\"name\":\"预付款项\",\"expression\":\"${P1734933364178}.${OCA001006}\"},{\"code\":\"NCA001008\",\"name\":\"其他应收款\",\"expression\":\"${P1734933364178}.${OCA001007}\"},{\"code\":\"NCA001009\",\"name\":\"存货\",\"expression\":\"${P1734933364178}.${OCA001008}\"},{\"code\":\"NCA001010\",\"name\":\"合同资产\",\"expression\":\"\"},{\"code\":\"NCA001011\",\"name\":\"持有待售资产\",\"expression\":\"${P1734933364178}.${OCA001009}\"},{\"code\":\"NCA001012\",\"name\":\"一年内到期的非流动资产\",\"expression\":\"${P1734933364178}.${OCA001010}\"},{\"code\":\"NCA001013\",\"name\":\"其他流动资产\",\"expression\":\"${P1734933364178}.${OCA001011}\"},{\"code\":\"NCA001T\",\"name\":\"流动资产合计\",\"expression\":\"${P1734933364178}.${OCA001T}\"},{\"code\":\"NCA002\",\"name\":\"非流动资产:\",\"expression\":\"${P1734933364178}.${OCA002}\"},{\"code\":\"NCA002001\",\"name\":\"债权投资\",\"expression\":\"\"},{\"code\":\"NCA002002\",\"name\":\"其他债权投资\",\"expression\":\"\"},{\"code\":\"NCA002003\",\"name\":\"长期应收款\",\"expression\":\"${P1734933364178}.${OCA002003}\"},{\"code\":\"NCA002004\",\"name\":\"长期股权投资\",\"expression\":\"${P1734933364178}.${OCA002004}\"},{\"code\":\"NCA002005\",\"name\":\"其他权益工具投资\",\"expression\":\"\"},{\"code\":\"NCA002006\",\"name\":\"其他非流动金融资产\",\"expression\":\"\"},{\"code\":\"NCA002007\",\"name\":\"投资性房地产\",\"expression\":\"${P1734933364178}.${OCA002005}\"},{\"code\":\"NCA002008\",\"name\":\"固定资产\",\"expression\":\"${P1734933364178}.${OCA002006}\"},{\"code\":\"NCA002009\",\"name\":\"在建工程\",\"expression\":\"${P1734933364178}.${OCA002007}\"},{\"code\":\"NCA002010\",\"name\":\"生产性生物资产\",\"expression\":\"${P1734933364178}.${OCA002008}\"},{\"code\":\"NCA002011\",\"name\":\"油气资产\",\"expression\":\"${P1734933364178}.${OCA002009}\"},{\"code\":\"NCA002012\",\"name\":\"使用权资产\",\"expression\":\"\"},{\"code\":\"NCA002013\",\"name\":\"无形资产\",\"expression\":\"${P1734933364178}.${OCA002010}\"},{\"code\":\"NCA002014\",\"name\":\"开发支出\",\"expression\":\"${P1734933364178}.${OCA002011}\"},{\"code\":\"NCA002015\",\"name\":\"商誉\",\"expression\":\"${P1734933364178}.${OCA002012}\"},{\"code\":\"NCA002016\",\"name\":\"长期待摊费用\",\"expression\":\"${P1734933364178}.${OCA002013}\"},{\"code\":\"NCA002017\",\"name\":\"递延所得税资产\",\"expression\":\"${P1734933364178}.${OCA002014}\"},{\"code\":\"NCA002018\",\"name\":\"其他非流动资产\",\"expression\":\"${P1734933364178}.${OCA002015}\"},{\"code\":\"NCA002T\",\"name\":\"非流动资产合计\",\"expression\":\"${P1734933364178}.${OCA002T}\"},{\"code\":\"NCAT\",\"name\":\"资产总计\",\"expression\":\"${P1734933364178}.${OCAT}\"},{\"code\":\"NCC001\",\"name\":\"一、经营活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC001}\"},{\"code\":\"NCC001001\",\"name\":\"销售商品、提供劳务收到的现金\",\"expression\":\"${P1734933364178}.${OCC001001}\"},{\"code\":\"NCC001002\",\"name\":\"收到的税费返还\",\"expression\":\"${P1734933364178}.${OCC001002}\"},{\"code\":\"NCC001003\",\"name\":\"收到其他与经营活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC001003}\"},{\"code\":\"NCC001STI\",\"name\":\"经营活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC001STI}\"},{\"code\":\"NCC001004\",\"name\":\"购买商品、接受劳务支付的现金\",\"expression\":\"${P1734933364178}.${OCC001004}\"},{\"code\":\"NCC001005\",\"name\":\"支付给职工以及为职工支付的现金\",\"expression\":\"${P1734933364178}.${OCC001005}\"},{\"code\":\"NCC001006\",\"name\":\"支付的各项税费\",\"expression\":\"${P1734933364178}.${OCC001006}\"},{\"code\":\"NCC001007\",\"name\":\"支付其他与经营活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC001007}\"},{\"code\":\"NCC001STO\",\"name\":\"经营活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC001STO}\"},{\"code\":\"NCC001T\",\"name\":\"经营活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC001T}\"},{\"code\":\"NCC002\",\"name\":\"二、投资活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC002}\"},{\"code\":\"NCC002001\",\"name\":\"收回投资收到的现金\",\"expression\":\"${P1734933364178}.${OCC002001}\"},{\"code\":\"NCC002002\",\"name\":\"取得投资收益收到的现金\",\"expression\":\"${P1734933364178}.${OCC002002}\"},{\"code\":\"NCC002003\",\"name\":\"处置固定资产、无形资产和其他长期资产收回的现金净额\",\"expression\":\"${P1734933364178}.${OCC002003}\"},{\"code\":\"NCC002004\",\"name\":\"处置子公司及其他营业单位收到的现金净额\",\"expression\":\"${P1734933364178}.${OCC002004}\"},{\"code\":\"NCC002005\",\"name\":\"收到其他与投资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC002005}\"},{\"code\":\"NCC002STI\",\"name\":\"投资活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC002STI}\"},{\"code\":\"NCC002006\",\"name\":\"购建固定资产、无形资产和其他长期资产支付的现金\",\"expression\":\"${P1734933364178}.${OCC002006}\"},{\"code\":\"NCC002007\",\"name\":\"投资支付的现金\",\"expression\":\"${P1734933364178}.${OCC002007}\"},{\"code\":\"NCC002008\",\"name\":\"取得子公司及其他营业单位支付的现金净额\",\"expression\":\"${P1734933364178}.${OCC002008}\"},{\"code\":\"NCC002009\",\"name\":\"支付其他与投资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC002009}\"},{\"code\":\"NCC002STO\",\"name\":\"投资活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC002STO}\"},{\"code\":\"NCC002T\",\"name\":\"投资活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC002T}\"},{\"code\":\"NCC003\",\"name\":\"三、筹资活动产生的现金流量:\",\"expression\":\"${P1734933364178}.${OCC003}\"},{\"code\":\"NCC003001\",\"name\":\"吸收投资收到的现金\",\"expression\":\"${P1734933364178}.${OCC003001}\"},{\"code\":\"NCC003002\",\"name\":\"取得借款收到的现金\",\"expression\":\"${P1734933364178}.${OCC003002}\"},{\"code\":\"NCC003003\",\"name\":\"收到其他与筹资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC003003}\"},{\"code\":\"NCC003STI\",\"name\":\"筹资活动现金流入小计\",\"expression\":\"${P1734933364178}.${OCC003STI}\"},{\"code\":\"NCC003004\",\"name\":\"偿还债务支付的现金\",\"expression\":\"${P1734933364178}.${OCC003004}\"},{\"code\":\"NCC003005\",\"name\":\"分配股利、利润或偿付利息支付的现金\",\"expression\":\"${P1734933364178}.${OCC003005}\"},{\"code\":\"NCC003006\",\"name\":\"支付其他与筹资活动有关的现金\",\"expression\":\"${P1734933364178}.${OCC003006}\"},{\"code\":\"NCC003STO\",\"name\":\"筹资活动现金流出小计\",\"expression\":\"${P1734933364178}.${OCC003STO}\"},{\"code\":\"NCC003T\",\"name\":\"筹资活动产生的现金流量净额\",\"expression\":\"${P1734933364178}.${OCC003T}\"},{\"code\":\"NCC004\",\"name\":\"四、汇率变动对现金及现金等价物的影响\",\"expression\":\"${P1734933364178}.${OCC004}\"},{\"code\":\"NCC005\",\"name\":\"五、现金及现金等价物净增加额\",\"expression\":\"${P1734933364178}.${OCC005}\"},{\"code\":\"NCC005001\",\"name\":\"加:期初现金及现金等价物余额\",\"expression\":\"${P1734933364178}.${OCC005A001}\"},{\"code\":\"NCC006\",\"name\":\"六、期末现金及现金等价物余额\",\"expression\":\"${P1734933364178}.${OCC006}\"},{\"code\":\"NCL001\",\"name\":\"流动负债:\",\"expression\":\"${P1734933364178}.${OCL001}\"},{\"code\":\"NCL001001\",\"name\":\"短期借款\",\"expression\":\"${P1734933364178}.${OCL001001}\"},{\"code\":\"NCL001002\",\"name\":\"交易性金融负债\",\"expression\":\"\"},{\"code\":\"NCL001003\",\"name\":\"衍生金融负债\",\"expression\":\"${P1734933364178}.${OCL001003}\"},{\"code\":\"NCL001004\",\"name\":\"应付票据\",\"expression\":\"${P1734933364178}.${OCL001004}\"},{\"code\":\"NCL001005\",\"name\":\"应付账款\",\"expression\":\"${P1734933364178}.${OCL001005}\"},{\"code\":\"NCL001006\",\"name\":\"预收款项\",\"expression\":\"${P1734933364178}.${OCL001006}\"},{\"code\":\"NCL001007\",\"name\":\"合同负债\",\"expression\":\"\"},{\"code\":\"NCL001008\",\"name\":\"应付职工薪酬\",\"expression\":\"${P1734933364178}.${OCL001007}\"},{\"code\":\"NCL001009\",\"name\":\"应交税费\",\"expression\":\"${P1734933364178}.${OCL001008}\"},{\"code\":\"NCL001010\",\"name\":\"其他应付款\",\"expression\":\"${P1734933364178}.${OCL001009}\"},{\"code\":\"NCL001011\",\"name\":\"持有待售负债\",\"expression\":\"${P1734933364178}.${OCL001010}\"},{\"code\":\"NCL001012\",\"name\":\"一年内到期的非流动负债\",\"expression\":\"${P1734933364178}.${OCL001011}\"},{\"code\":\"NCL001013\",\"name\":\"其他流动负债\",\"expression\":\"${P1734933364178}.${OCL001012}\"},{\"code\":\"NCL001T\",\"name\":\"流动负债合计\",\"expression\":\"${P1734933364178}.${OCL001T}\"},{\"code\":\"NCL002\",\"name\":\"非流动负债:\",\"expression\":\"${P1734933364178}.${OCL002}\"},{\"code\":\"NCL002001\",\"name\":\"长期借款\",\"expression\":\"${P1734933364178}.${OCL002001}\"},{\"code\":\"NCL002002\",\"name\":\"应付债券\",\"expression\":\"${P1734933364178}.${OCL002002}\"},{\"code\":\"NCL00200201\",\"name\":\"应付债券(其中:优先股)\",\"expression\":\"${P1734933364178}.${OCL00200201}\"},{\"code\":\"NCL00200202\",\"name\":\"应付债券(其中:永续债)\",\"expression\":\"${P1734933364178}.${OCL00200202}\"},{\"code\":\"NCL002003\",\"name\":\"租赁负债\",\"expression\":\"\"},{\"code\":\"NCL002004\",\"name\":\"长期应付款\",\"expression\":\"${P1734933364178}.${OCL002003}\"},{\"code\":\"NCL002005\",\"name\":\"预计负债\",\"expression\":\"${P1734933364178}.${OCL002004}\"},{\"code\":\"NCL002006\",\"name\":\"递延收益\",\"expression\":\"${P1734933364178}.${OCL002005}\"},{\"code\":\"NCL002007\",\"name\":\"递延所得税负债\",\"expression\":\"${P1734933364178}.${OCL002006}\"},{\"code\":\"NCL002008\",\"name\":\"其他非流动负债\",\"expression\":\"${P1734933364178}.${OCL002007}\"},{\"code\":\"NCL002T\",\"name\":\"非流动负债合计\",\"expression\":\"${P1734933364178}.${OCL002T}\"},{\"code\":\"NCL0020080101\",\"name\":\"负债合计\",\"expression\":\"${P1734933364178}.${OCLT}\"},{\"code\":\"NCE001\",\"name\":\"所有者权益(或股东权益):\",\"expression\":\"${P1734933364178}.${OCE}\"},{\"code\":\"NCE001001\",\"name\":\"实收资本(或股本)\",\"expression\":\"${P1734933364178}.${OCE001}\"},{\"code\":\"NCE001002\",\"name\":\"其他权益工具\",\"expression\":\"${P1734933364178}.${OCE002}\"},{\"code\":\"NCE00100201\",\"name\":\"其他权益工具(其中:优先股)\",\"expression\":\"${P1734933364178}.${OCE002001}\"},{\"code\":\"NCE00100202\",\"name\":\"其他权益工具(其中:永续债)\",\"expression\":\"${P1734933364178}.${OCE002002}\"},{\"code\":\"NCE001003\",\"name\":\"资本公积\",\"expression\":\"${P1734933364178}.${OCE003}\"},{\"code\":\"NCE001004\",\"name\":\"减:库存股\",\"expression\":\"${P1734933364178}.${OCE004}\"},{\"code\":\"NCE001005\",\"name\":\"其他综合收益\",\"expression\":\"${P1734933364178}.${OCE005}\"},{\"code\":\"NCE001006\",\"name\":\"专项储备\",\"expression\":\"${P1734933364178}.${OCE006}\"},{\"code\":\"NCE001007\",\"name\":\"盈余公积\",\"expression\":\"${P1734933364178}.${OCE007}\"},{\"code\":\"NCE001008\",\"name\":\"未分配利润\",\"expression\":\"${P1734933364178}.${OCE008}\"},{\"code\":\"NCE001T\",\"name\":\"所有者权益(或股东权益)合计\",\"expression\":\"${P1734933364178}.${OCET}\"},{\"code\":\"NCLET\",\"name\":\"负债和所有者权益(或股东权益)总计\",\"expression\":\"${P1734933364178}.${OCLET}\"},{\"code\":\"NCI001\",\"name\":\"一、营业收入\",\"expression\":\"${P1734933364178}.${OCI001}\"},{\"code\":\"NCI001001\",\"name\":\"减:营业成本\",\"expression\":\"${P1734933364178}.${OCI001L01}\"},{\"code\":\"NCI00100101\",\"name\":\"税金及附加\",\"expression\":\"${P1734933364178}.${OCI001L02}\"},{\"code\":\"NCI00100102\",\"name\":\"销售费用\",\"expression\":\"${P1734933364178}.${OCI001L03}\"},{\"code\":\"NCI00100103\",\"name\":\"管理费用\",\"expression\":\"${P1734933364178}.${OCI001L04}\"},{\"code\":\"NCI00100104\",\"name\":\"研发费用\",\"expression\":\"${P1734933364178}.${OCI001L05}\"},{\"code\":\"NCI00100105\",\"name\":\"财务费用\",\"expression\":\"${P1734933364178}.${OCI001L06}\"},{\"code\":\"NCI0010010501\",\"name\":\"其中:利息费用\",\"expression\":\"${P1734933364178}.${OCI001L0601}\"},{\"code\":\"NCI0010010502\",\"name\":\"利息收入\",\"expression\":\"${P1734933364178}.${OCI001L0602}\"},{\"code\":\"NCI001002\",\"name\":\"加:其他收益\",\"expression\":\"${P1734933364178}.${OCI001A01}\"},{\"code\":\"NCI00100201\",\"name\":\"投资收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A02}\"},{\"code\":\"NCI0010020101\",\"name\":\"其中:对联营企业和合营企业的投资收益\",\"expression\":\"${P1734933364178}.${OCI001A0201}\"},{\"code\":\"NCI0010020102\",\"name\":\"以摊余成本计量的金融资产终止确认收益(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100202\",\"name\":\"净敞口套期收益(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100203\",\"name\":\"公允价值变动收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A03}\"},{\"code\":\"NCI00100204\",\"name\":\"信用减值损失(损失以“-”号填列)\",\"expression\":\"\"},{\"code\":\"NCI00100205\",\"name\":\"资产减值损失(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A04}\"},{\"code\":\"NCI00100206\",\"name\":\"资产处置收益(损失以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI001A05}\"},{\"code\":\"NCI002\",\"name\":\"二、营业利润(亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI002}\"},{\"code\":\"NCI002001\",\"name\":\"加:营业外收入\",\"expression\":\"${P1734933364178}.${OCI002A01}\"},{\"code\":\"NCI002002\",\"name\":\"减:营业外支出\",\"expression\":\"${P1734933364178}.${OCI002L01}\"},{\"code\":\"NCI003\",\"name\":\"三、利润总额(亏损总额以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI003}\"},{\"code\":\"NCI003001\",\"name\":\"减:所得税费用\",\"expression\":\"${P1734933364178}.${OCI003L01}\"},{\"code\":\"NCI004\",\"name\":\"四、净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004}\"},{\"code\":\"NCI004001\",\"name\":\"(一)持续经营净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004001}\"},{\"code\":\"NCI004002\",\"name\":\"(二)终止经营净利润(净亏损以“-”号填列)\",\"expression\":\"${P1734933364178}.${OCI004002}\"},{\"code\":\"NCI005\",\"name\":\"五、其他综合收益的税后净额\",\"expression\":\"${P1734933364178}.${OCI005}\"},{\"code\":\"NCI005001\",\"name\":\"(一)不能重分类进损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI005001}\"},{\"code\":\"NCI00500101\",\"name\":\"1.重新计量设定受益计划变动额\",\"expression\":\"${P1734933364178}.${OCI00500101}\"},{\"code\":\"NCI00500102\",\"name\":\"2.权益法下不能转损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI00500102}\"},{\"code\":\"NCI00500103\",\"name\":\"3.其他权益工具投资公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI00500104\",\"name\":\"4.企业自身信用风险公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI005002\",\"name\":\"(二)将重分类进损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI005002}\"},{\"code\":\"NCI00500201\",\"name\":\"1.权益法下可转损益的其他综合收益\",\"expression\":\"${P1734933364178}.${OCI00500201}\"},{\"code\":\"NCI00500202\",\"name\":\"2.其他债权投资公允价值变动\",\"expression\":\"\"},{\"code\":\"NCI00500203\",\"name\":\"3.金融资产重分类计入其他综合收益的金额\",\"expression\":\"\"},{\"code\":\"NCI00500204\",\"name\":\"4.其他债权投资信用减值准备\",\"expression\":\"\"},{\"code\":\"NCI00500205\",\"name\":\"5.现金流量套期储备\",\"expression\":\"\"},{\"code\":\"NCI00500206\",\"name\":\"6.外币财务报表折算差额\",\"expression\":\"\"},{\"code\":\"NCI006\",\"name\":\"六、综合收益总额\",\"expression\":\"${P1734933364178}.${OCI006}\"},{\"code\":\"NCI007\",\"name\":\"七、每股收益:\",\"expression\":\"${P1734933364178}.${OCI007}\"},{\"code\":\"NCI007001\",\"name\":\"(一)基本每股收益\",\"expression\":\"${P1734933364178}.${OCI007001}\"},{\"code\":\"NCI007002\",\"name\":\"(二)稀释每股收益\",\"expression\":\"${P1734933364178}.${OCI007002}\"}]" + } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "a05c5713-cd48-42f6-ba47-91993d4ce6b4", + "code" : "M1734935254414", + "name" : "002-选项值(数值输入值)", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "bed0e203-f899-4e61-a415-1d9a716571cf", + "name" : "选项值(数值输入值)", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:16", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "08710761-681b-4a95-8a98-11e598ebfd16", + "code" : "P1734935434896", + "inputValue" : "1", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "6a71246b-7b26-4f38-8342-c171caf32aa6", + "code" : "P1734935613684", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "22", + "resultValue" : "22", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "f2bfcabe-eb0c-47f8-ac9c-cd5ed08121c6", + "code" : "M1734935254414", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "cea1637b-ba7a-4a86-8508-3a6bf291dc99", + "code" : "M1734935254414", + "name" : "002-选项值(数值输入值)", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN_OPTION", + "id" : "4a9041dd-e2ae-4390-9ce6-c45d4b28237d", + "code" : "P1734935434896", + "name" : "教育程度", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null, + "options" : [ { + "id" : "d40b285f-a6c5-44b0-b31c-f90d053153ca", + "inputValue" : "1", + "value" : "22", + "title" : "博士研究生及以上", + "description" : null, + "order" : 1, + "config" : null + }, { + "id" : "ee9465e4-244a-49a6-9d29-6024e163eab1", + "inputValue" : "2", + "value" : "16", + "title" : "硕士研究生", + "description" : null, + "order" : 2, + "config" : null + }, { + "id" : "604ef98e-f2bc-4a18-97c1-2494b3e37c45", + "inputValue" : "3", + "value" : "12", + "title" : "本科", + "description" : null, + "order" : 3, + "config" : null + }, { + "id" : "e02ecddd-8720-4fe1-b13f-823a15924a19", + "inputValue" : "4", + "value" : "4", + "title" : "高中及以下(含中专、技校)", + "description" : null, + "order" : 4, + "config" : null + }, { + "id" : "ab8af5f4-4114-4025-a845-d440fa669fe6", + "inputValue" : "5", + "value" : "8", + "title" : "大专", + "description" : null, + "order" : 5, + "config" : null + }, { + "id" : "2132abef-3f8d-451f-961b-05cd9b125cbe", + "inputValue" : "0", + "value" : "0", + "title" : "其他", + "description" : null, + "order" : 6, + "config" : null + } ], + "additons" : null + }, { + "type" : "OUT", + "id" : "cce643d7-c7fd-4ffe-989b-97125e1f12fa", + "code" : "P1734935613684", + "name" : "教育程度得分", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "OPTION_VALUE", + "id" : "e35f68b6-84e2-4b5f-90d7-5dba172fb9a4", + "description" : null, + "order" : 1, + "enable" : true, + "optionCode" : "${P1734935434896}" + } ] + } ] + }, + "effectiveDate" : null, "imports" : "" }, { "type" : "MODEL", - "id" : "366013b7-db59-428d-83fe-42ea09f8eeed", + "id" : "2bff5093-3a34-4f63-b521-d21fa422e2a2", "code" : "M1734935369789", "name" : "002-选项值(字符串输入值)", "description" : null, @@ -520,13 +1279,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "9d4abe99-c23b-4bfd-a4ae-5a1296bd746c", + "id" : "3c53af34-2ca4-47d0-a219-3833829e3405", "name" : "002-选项值(字符串输入值)", "description" : null, "lastTestDate" : "2025-04-23 16:58:15", "testResult" : "PASSED", "parameters" : [ { - "id" : "1e0dfc05-d4f7-4117-b6ae-9803795be245", + "id" : "530ab6b6-9325-4b73-92e4-43f57dcf791c", + "code" : "P1734935928631", + "inputValue" : "01", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "b244e40e-c86e-45ea-8bcb-61833abc1406", "code" : "M1734935369789", "inputValue" : null, "inputValueValidateMessage" : null, @@ -535,7 +1303,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "d49cf39f-2e03-4bba-8dd3-c870f012984b", + "id" : "bf8ac88e-14ba-44d2-a639-1b4ad0c1647d", "code" : "P1734936092966", "inputValue" : null, "inputValueValidateMessage" : null, @@ -543,19 +1311,10 @@ "resultValue" : "22", "testResult" : "PASSED", "skipCheck" : false - }, { - "id" : "de46d346-76bb-47ab-b24a-eb22b94423a8", - "code" : "P1734935928631", - "inputValue" : "01", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false } ] } ], "model" : { - "id" : "894a6951-333c-4066-b6d1-8eb728797d3a", + "id" : "90a29a0a-d4fe-4f1c-b8c8-6da57818dc5a", "code" : "M1734935369789", "name" : "002-选项值(字符串输入值)", "description" : null, @@ -566,7 +1325,7 @@ "children" : null, "parameters" : [ { "type" : "IN_OPTION", - "id" : "831d935f-ddcd-4197-b686-d14f2dbd93a2", + "id" : "2cfd4fc9-fef4-4c52-8132-58ace945eacc", "code" : "P1734935928631", "name" : "教育程度", "description" : null, @@ -580,7 +1339,7 @@ "validators" : null, "processors" : null, "options" : [ { - "id" : "64629b79-e1a9-4034-97b1-6f72fba0aa48", + "id" : "c245cafb-4805-4c6d-93f5-6d1672e8bb2f", "inputValue" : "01", "value" : "22", "title" : "博士研究生及以上", @@ -588,7 +1347,7 @@ "order" : 1, "config" : null }, { - "id" : "e08eac6e-94a0-4a3c-a56f-fba28bc9fbf0", + "id" : "d1dd2921-3c75-4b89-9c91-9103dc19842d", "inputValue" : "02", "value" : "16", "title" : "硕士研究生", @@ -596,7 +1355,7 @@ "order" : 2, "config" : null }, { - "id" : "a67bb2e9-89a5-4e28-bfd7-a757ff437781", + "id" : "bd0f4f4a-22b3-47ff-8c81-96683bc432fa", "inputValue" : "03", "value" : "12", "title" : "本科", @@ -604,7 +1363,7 @@ "order" : 3, "config" : null }, { - "id" : "0d02ef5e-8343-44c1-a92e-828a1b5ad194", + "id" : "bdec60b1-6fb0-4cdd-9bad-0f1380cdb21d", "inputValue" : "04", "value" : "8", "title" : "大专", @@ -612,7 +1371,7 @@ "order" : 4, "config" : null }, { - "id" : "3fe74d01-732f-46ac-8f24-35ac8297b329", + "id" : "d08fb31c-75a0-42f2-a6b2-11b52f8e0976", "inputValue" : "05", "value" : "4", "title" : "高中及以下(含中专、技校)", @@ -620,7 +1379,7 @@ "order" : 5, "config" : null }, { - "id" : "b1008f4d-504a-44b3-96d2-608071dceb8a", + "id" : "61ce9a83-6ab5-4c5c-87db-4ce023eeb3d3", "inputValue" : "00", "value" : "0", "title" : "其他", @@ -631,7 +1390,7 @@ "additons" : null }, { "type" : "OUT", - "id" : "991b69b3-6554-4607-9b3c-f1639fc4a292", + "id" : "12b01df2-2a7a-4355-970b-4a6d7b1db950", "code" : "P1734936092966", "name" : "教育程度得分", "description" : null, @@ -645,7 +1404,7 @@ "validators" : null, "processors" : [ { "type" : "OPTION_VALUE", - "id" : "b6e5df8f-8786-478d-9420-758f4bddf7a7", + "id" : "d51e546a-abc7-43a5-987a-f95115be46ce", "description" : null, "order" : 1, "enable" : true, @@ -657,7 +1416,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "8623e3c8-3f7f-4214-9452-600e4c4a99bc", + "id" : "79422a4f-b08c-4de9-aa9d-af31ac149bbd", "code" : "M1734936173596", "name" : "003-数学公式", "description" : null, @@ -666,13 +1425,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "ff3913d2-61e4-445b-b251-afa8c899baa2", + "id" : "ca40ff23-b5ab-4922-af86-82f1aaa29fd6", "name" : "003-数学公式", "description" : null, "lastTestDate" : "2025-04-23 16:58:17", "testResult" : "PASSED", "parameters" : [ { - "id" : "202a9acd-8d93-46bb-beb6-a4338ae3f4d5", + "id" : "9d94a76f-2474-4c04-83db-5a5356a192e6", "code" : "P1734936196206", "inputValue" : "100000", "inputValueValidateMessage" : null, @@ -681,16 +1440,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "4a622538-5e4a-42ea-85db-16ba87d8f87f", - "code" : "P1734936207328", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "0.5", - "resultValue" : "0.50", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "a42e7eef-cd38-4d0e-a282-2166f61b1450", + "id" : "dd9e6ad1-a8f7-4ac3-a0bb-df971b6d02f1", "code" : "M1734936173596", "inputValue" : null, "inputValueValidateMessage" : null, @@ -699,7 +1449,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "bcc2f22d-ca1c-48bf-b892-258a35afb64d", + "id" : "dea49910-64f5-47e3-afce-13fe4a19a9dd", "code" : "P1734936250574", "inputValue" : "200000", "inputValueValidateMessage" : null, @@ -707,10 +1457,19 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "f7e7ed35-89a9-4950-bf56-2bdfb26e8f28", + "code" : "P1734936207328", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "0.5", + "resultValue" : "0.50", + "testResult" : "PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "11591e72-9338-4b36-b3fd-ba0ee1ff2e52", + "id" : "2ca1ba4f-de2f-4dd0-875b-cd59ccf76ce8", "code" : "M1734936173596", "name" : "003-数学公式", "description" : null, @@ -721,7 +1480,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "bccffc63-2831-4421-96e5-c0513bcc84f2", + "id" : "7b43a18b-8b7d-4cac-a970-615a2631da90", "code" : "P1734936196206", "name" : "负债合计", "description" : null, @@ -736,7 +1495,7 @@ "processors" : null }, { "type" : "IN", - "id" : "78cd6d9a-93e0-4a8a-b106-dae681001611", + "id" : "bc18502a-c715-472c-b87d-46a4e3eba4dc", "code" : "P1734936250574", "name" : "资产总计", "description" : null, @@ -751,7 +1510,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "10bed9a4-9fe6-4ae3-8d03-1ab972feec4a", + "id" : "af0e8f45-407a-4e04-829b-6038c4a1fe5b", "code" : "P1734936207328", "name" : "资产负债率", "description" : null, @@ -765,7 +1524,7 @@ "validators" : null, "processors" : [ { "type" : "MATH_FORMULA", - "id" : "a3706d32-7d67-49af-9a83-f83d5d4946a4", + "id" : "99361f46-47b3-4676-bd7d-0c9a5a1ccc9f", "description" : null, "order" : 1, "enable" : true, @@ -777,7 +1536,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "91e9f38f-356c-4023-aba4-41a281567e50", + "id" : "00700a8f-6bc7-4011-8998-1566211b8aa6", "code" : "M1734933657323", "name" : "004-算数运算", "description" : null, @@ -786,31 +1545,31 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "9783cdab-eb6f-4184-9338-3efdbbfd4fde", + "id" : "595c74cd-1c12-4e0c-bbef-a49679c6e8f9", "name" : "算数运算", "description" : null, "lastTestDate" : "2025-04-23 17:09:02", "testResult" : "PASSED", "parameters" : [ { - "id" : "1c0604e2-b830-4014-b513-5105e84dca39", - "code" : "P1734933744702", - "inputValue" : "0.03", + "id" : "09dad949-21ce-45c0-ae4d-f4b68e76767e", + "code" : "P1736416152363", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "3a3342ab-1f23-492a-81a9-cc395875784f", - "code" : "P1734935062371", + "id" : "6d87914d-f238-4476-9aff-e0fc3b8969ef", + "code" : "P1734934604464", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "资产负债率增长率:0.3333333333; 资产负债率增长率(百分比):33.33%", - "resultValue" : "资产负债率增长率:0.3333333333; 资产负债率增长率(百分比):33.33%", + "expectValue" : "0.33", + "resultValue" : "0.33", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8ef1b3ae-b497-4995-9d22-62503d6d02aa", + "id" : "76185b0d-2724-4dda-b637-315b18a7deca", "code" : "P1734933794419", "inputValue" : null, "inputValueValidateMessage" : null, @@ -819,7 +1578,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "916a2dfb-62ae-491a-a23e-d85de1abb743", + "id" : "825bb124-80cd-40eb-8fe8-8d4281e40a90", "code" : "P1734934964674", "inputValue" : null, "inputValueValidateMessage" : null, @@ -828,7 +1587,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "a035bb88-2c76-4d92-aaf1-5fe28deffee4", + "id" : "ac3e3978-d656-4a9d-86a2-ba5c2d3c459b", "code" : "P1734933770426", "inputValue" : "0.04", "inputValueValidateMessage" : null, @@ -837,8 +1596,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "cc2ed1f6-64c3-407c-a884-28b4ed9850b2", - "code" : "P1736416152363", + "id" : "c8910900-ed4d-43b1-a8dd-e3c9d210638a", + "code" : "M1734933657323", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -846,36 +1605,36 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "cfdf9f0a-642a-44e0-8d2a-d0c0228e7e87", - "code" : "P1734934546096", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "0.33", - "resultValue" : "0.33", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "e20eb09c-aacb-4e02-ba9a-a0b69623e311", - "code" : "M1734933657323", - "inputValue" : null, + "id" : "c9cc5fce-7c64-4095-93e0-9da77df6d92e", + "code" : "P1734933744702", + "inputValue" : "0.03", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "e2749ec9-2484-4930-9edd-f14d9c1716d6", - "code" : "P1734934604464", + "id" : "e01eedcf-33bd-4045-921b-e82c6c2847fd", + "code" : "P1734934546096", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : "0.33", "resultValue" : "0.33", "testResult" : "PASSED", "skipCheck" : false + }, { + "id" : "e20ac43a-e7ba-466d-86d8-652825c2b5b3", + "code" : "P1734935062371", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "资产负债率增长率:0.3333333333; 资产负债率增长率(百分比):33.33%", + "resultValue" : "资产负债率增长率:0.3333333333; 资产负债率增长率(百分比):33.33%", + "testResult" : "PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "c7d55a9b-5cd5-43e4-8f24-26a2f8b90225", + "id" : "e1a1ada9-11c6-4e47-93e3-013f384f3e5f", "code" : "M1734933657323", "name" : "004-算数运算", "description" : null, @@ -886,7 +1645,7 @@ "children" : null, "parameters" : [ { "type" : "CONSTANT", - "id" : "808f3542-d345-4d1e-b176-62af54aae218", + "id" : "065be1bc-2e36-4e8b-802a-e0c7c4abb9f3", "code" : "P1736416152363", "name" : "权重", "description" : null, @@ -901,7 +1660,7 @@ "processors" : null }, { "type" : "IN", - "id" : "85bcc494-4835-4bb2-b090-95db2ddc6de5", + "id" : "091108af-7239-4d26-9137-f735cb96be5e", "code" : "P1734933744702", "name" : "资产负债率(上期)", "description" : null, @@ -916,7 +1675,7 @@ "processors" : null }, { "type" : "IN", - "id" : "d48ec549-1398-4d4d-ba7e-4c7db64dd3a3", + "id" : "411dec83-97e2-4910-b88d-1f8df6a3b2e4", "code" : "P1734933770426", "name" : "资产负债率(本期)", "description" : null, @@ -931,7 +1690,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "e529a1ca-dc3b-44aa-9123-1c2b560472f2", + "id" : "adb6dfbd-61b2-454f-8747-7576e984ac84", "code" : "P1734933794419", "name" : "资产负债率增长率", "description" : null, @@ -945,7 +1704,7 @@ "validators" : null, "processors" : [ { "type" : "WHEN_THEN", - "id" : "161e651a-46f1-4100-aaf8-9b810e153a85", + "id" : "c5ade00c-1ca9-4bb6-b87e-c7a0bb1a33eb", "description" : null, "order" : 1, "enable" : true, @@ -954,7 +1713,7 @@ "isWhenThenShorted" : true }, { "type" : "ARITHMETIC", - "id" : "a4f8678b-dc27-4c1b-ba40-cea1ee4781f8", + "id" : "cb70a55a-ff0e-4368-8c11-21161ed109d3", "description" : null, "order" : 2, "enable" : true, @@ -962,7 +1721,7 @@ } ] }, { "type" : "OUT", - "id" : "b184b1d6-14e6-4c1a-8bb2-20733c3685a3", + "id" : "3c1f52db-47c9-4f44-9bc9-3f60125355a1", "code" : "P1734934546096", "name" : "资产负债率增长率(保留两位小数)", "description" : null, @@ -976,7 +1735,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "3eb9e793-3e69-4eb1-9d82-5681582dc31e", + "id" : "28d1502e-9976-4f33-aeb9-29501c2f8133", "description" : null, "order" : 1, "enable" : true, @@ -984,7 +1743,7 @@ } ] }, { "type" : "OUT", - "id" : "eef310fe-2b98-466c-b95e-450ed1a7e39f", + "id" : "6cdcd47a-0ba6-43ec-8bf7-41a8fc0b2954", "code" : "P1734934604464", "name" : "资产负债率增长率(保留两位小数)-字符串", "description" : null, @@ -998,7 +1757,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "37a6a762-a770-4c98-b52e-ad14a3229a1f", + "id" : "174546e5-c01c-4e16-a337-e8f562729656", "description" : null, "order" : 1, "enable" : true, @@ -1006,7 +1765,7 @@ } ] }, { "type" : "OUT", - "id" : "61a162d7-d889-433b-8de1-1309dc1bbdb9", + "id" : "484ad513-0a84-4f20-96e1-d58f051926f8", "code" : "P1734934964674", "name" : "资产负债率增长率(百分比)", "description" : null, @@ -1020,7 +1779,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "0ec5a6fa-76cc-4e29-b459-69e31c88ccae", + "id" : "eeb24e1a-20c4-4ff5-ae69-b67cf93c562d", "description" : null, "order" : 1, "enable" : true, @@ -1028,7 +1787,7 @@ } ] }, { "type" : "OUT", - "id" : "3541ccf8-656f-4436-96db-b57ffd071ed5", + "id" : "b8ad1924-4f4c-4b0a-9538-cb1c83db56ef", "code" : "P1734935062371", "name" : "资产负债率增长率-提示信息", "description" : null, @@ -1042,7 +1801,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "bf8d9ae6-91b8-44f7-9593-979a84511edf", + "id" : "809a2b3d-e5fb-4dbd-a03f-45be2a5e10bb", "description" : null, "order" : 1, "enable" : true, @@ -1054,7 +1813,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "25b0b30f-b80f-42e3-bdcf-3e2f1faae289", + "id" : "5457e35a-51d3-4ba5-bb6f-315ea5616504", "code" : "M1734936671968", "name" : "005-三元操作", "description" : null, @@ -1063,22 +1822,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "008be8c5-4b3b-499c-9e23-50f4f0790c98", + "id" : "4c36911f-2dba-4661-a4dd-0b71a6883a68", "name" : "005-三元操作", "description" : null, "lastTestDate" : "2025-04-23 17:14:59", "testResult" : "PASSED", "parameters" : [ { - "id" : "0147eea2-36c0-44bd-ab48-d1f074aa3797", - "code" : "M1734936671968", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "53d46d0f-ea2a-4cc5-8de7-532d509902fe", + "id" : "0ee8c061-928d-47e9-802f-480c9fb00aeb", "code" : "P1734936720675", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1087,7 +1837,16 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "b28b3262-d8dd-41f6-9cd3-32405002d5fc", + "id" : "79cc07ff-ccfa-4186-83e2-0ac989edc98f", + "code" : "M1734936671968", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "e074f616-dab2-46ec-9c94-027cfd194535", "code" : "P1734936700266", "inputValue" : "59", "inputValueValidateMessage" : null, @@ -1098,7 +1857,7 @@ } ] } ], "model" : { - "id" : "1ed10851-2f05-4846-a785-9c18da18f3cf", + "id" : "278051c1-9fb8-43d9-b456-d11538d061d4", "code" : "M1734936671968", "name" : "005-三元操作", "description" : null, @@ -1109,7 +1868,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "4ed86523-a091-47e2-b170-54357ab61ca1", + "id" : "7b55a317-283d-4867-bc70-9414c747071a", "code" : "P1734936700266", "name" : "得分", "description" : null, @@ -1124,7 +1883,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "d9720b19-c6f5-4ccf-941e-1407c89dc5d0", + "id" : "4be98885-b731-4c90-809c-65bcd7aa4f6b", "code" : "P1734936720675", "name" : "是否及格", "description" : null, @@ -1138,7 +1897,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "5e562b30-e02d-4414-8c64-731c31abcd4d", + "id" : "d8f45313-21f0-4712-9c1b-3b45c9f3f0f3", "description" : null, "order" : 1, "enable" : true, @@ -1152,7 +1911,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "be0258e7-7711-4b6c-9d53-88c2662342be", + "id" : "d9ffe4c6-1c4f-4621-a7a8-3770e793f0d5", "code" : "M1734936856248", "name" : "006-When-Then操作", "description" : null, @@ -1161,22 +1920,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "fce0431d-9d66-4168-954c-b80d1e380b1f", + "id" : "a78835d0-7ffa-4f43-b144-362dc949bf2e", "name" : "006-When-Then操作", "description" : null, "lastTestDate" : "2025-04-23 16:58:17", "testResult" : "PASSED", "parameters" : [ { - "id" : "6b6e3d66-2fdd-469a-b4bc-044ae9d0fe52", - "code" : "P1734936894161", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "及格", - "resultValue" : "及格", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "bef41211-a5f7-4f80-b92d-261b8f49619b", + "id" : "14a176a2-b1bb-43bf-9620-5a1f67b924c6", "code" : "M1734936856248", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1185,7 +1935,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "dca65189-c8f6-480c-8f35-d688d445c481", + "id" : "65e79e77-3712-4a35-bec8-6898bb6d527a", + "code" : "P1734936894161", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "及格", + "resultValue" : "及格", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "fe336372-c119-4e5b-a5ab-90c37f6c12d2", "code" : "P1734936884868", "inputValue" : "60", "inputValueValidateMessage" : null, @@ -1196,7 +1955,7 @@ } ] } ], "model" : { - "id" : "56c3cfad-640e-4467-84e3-3ada4426760d", + "id" : "6fb4b858-ce12-49cf-85fb-5a9f861003af", "code" : "M1734936856248", "name" : "006-When-Then操作", "description" : null, @@ -1207,7 +1966,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "169a9515-140c-4722-a4cd-a0148dcef4ec", + "id" : "1a76021b-30d3-4d35-ad38-eb06feac0af3", "code" : "P1734936884868", "name" : "得分", "description" : null, @@ -1222,7 +1981,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "9f6f7cac-98fc-4af5-b376-cff2d16cbf39", + "id" : "8e3d60e5-1223-4c7e-bb1b-8ef38ba1deda", "code" : "P1734936894161", "name" : "是否及格", "description" : null, @@ -1236,7 +1995,7 @@ "validators" : null, "processors" : [ { "type" : "WHEN_THEN", - "id" : "8bace2d8-9550-4d52-8cc7-8747b1e6c28a", + "id" : "37aabffd-1bea-4d34-aa04-286e3413e2c8", "description" : null, "order" : 1, "enable" : true, @@ -1245,7 +2004,7 @@ "isWhenThenShorted" : true }, { "type" : "WHEN_THEN", - "id" : "5dac0ad8-c947-4ff0-b05a-e00060f1eaf6", + "id" : "9dc47073-8fd1-47be-a681-16ce2dd72a2c", "description" : null, "order" : 2, "enable" : true, @@ -1259,7 +2018,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "52929cbe-cb68-41ba-90f1-bf4f578eecec", + "id" : "fc012fc5-ef59-4752-8838-a316d5926764", "code" : "M1734937014578", "name" : "007-数值分段", "description" : null, @@ -1268,22 +2027,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "568f4cf2-61d9-4bf5-9377-d57d9802099f", + "id" : "e212f35b-89f0-4198-a79d-a5f86588dff5", "name" : "007-数值分段", "description" : null, "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "PASSED", "parameters" : [ { - "id" : "1d08c86b-284c-444a-80da-00ffedd95db9", - "code" : "P1734937079341", - "inputValue" : "5000", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "ba9ba0d9-0471-47d6-aa3b-8151ef7a064c", + "id" : "bed22ec9-38d4-42ac-b86b-42beff4c3ff4", "code" : "P1734937093570", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1292,7 +2042,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "ead1c0fd-20cd-4d38-ab2f-1ca955eba2a3", + "id" : "d4b20a9e-4538-45e3-accf-b8ad3f1a5107", "code" : "M1734937014578", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1300,10 +2050,19 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "dd2db3bf-fd0c-4aa9-9636-61ed8436d633", + "code" : "P1734937079341", + "inputValue" : "5000", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false } ] } ], "model" : { - "id" : "7acc74bf-bd3a-4233-91c7-d98b9b18f0a1", + "id" : "6b854203-2a69-4d42-9890-67be4dbea76c", "code" : "M1734937014578", "name" : "007-数值分段", "description" : null, @@ -1314,7 +2073,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "38e89910-480a-4050-b4c1-d12316509384", + "id" : "63318c84-2b6a-467b-9828-6ad021a2770b", "code" : "P1734937079341", "name" : "月收入", "description" : null, @@ -1329,7 +2088,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "f74d3bdf-de0b-400a-8539-3703cca8bfb8", + "id" : "ede06f31-6e29-4fe2-8818-a30d1ef4f9bb", "code" : "P1734937093570", "name" : "月收入得分", "description" : null, @@ -1343,7 +2102,7 @@ "validators" : null, "processors" : [ { "type" : "NUMBER_RANGE", - "id" : "db1a564d-e4ba-4a0e-9b79-e8919215d999", + "id" : "47348820-4f44-4182-a72f-ae1fec2af689", "description" : null, "order" : 1, "enable" : true, @@ -1356,7 +2115,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "6ad41c42-df45-4cbb-9433-b1decf5a4af4", + "id" : "c3dfd187-2051-4a90-bee0-93eefdca9622", "code" : "M1734937310463", "name" : "008-条件分段", "description" : null, @@ -1365,13 +2124,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "d39b4c75-e5c8-47c3-a09c-cdb017bddc13", + "id" : "3b4d3f97-421c-4290-896f-45a576b72e3b", "name" : "008-条件分段", "description" : null, "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "4ea984fc-ff12-40f9-930e-20ea4b6dfadf", + "id" : "06ff80dc-e5eb-4f76-a187-1988c93795d6", "code" : "P1734937350226", "inputValue" : "4", "inputValueValidateMessage" : null, @@ -1380,16 +2139,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "79c3d3ef-2d8c-464a-b939-e9958e04c4fe", - "code" : "M1734937310463", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "926faeaa-f016-4544-b0a8-620a5f37e982", + "id" : "3278414d-78ea-4aeb-9cfb-43d95eae61af", "code" : "P1734937369632", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1397,10 +2147,19 @@ "resultValue" : "中班", "testResult" : "PASSED", "skipCheck" : false + }, { + "id" : "ce37bcee-b312-44ce-9124-525f7e53ff1d", + "code" : "M1734937310463", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false } ] } ], "model" : { - "id" : "08e0d530-725d-4356-ad0a-cca2a75322df", + "id" : "d731c836-bec9-4465-b35a-0e768afa1cd6", "code" : "M1734937310463", "name" : "008-条件分段", "description" : null, @@ -1411,7 +2170,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "eb95a8e6-0675-4685-92f7-b45535f547ba", + "id" : "1564ea63-9956-4ecd-897a-b8b925d68ab0", "code" : "P1734937350226", "name" : "年龄", "description" : null, @@ -1426,7 +2185,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "bfb7815c-b375-47b3-8918-a13a722af8fb", + "id" : "84c4d7dd-e6a4-48e1-b21c-f91be8159730", "code" : "P1734937369632", "name" : "班级", "description" : null, @@ -1440,7 +2199,7 @@ "validators" : null, "processors" : [ { "type" : "CONDITION_RANGE", - "id" : "4e41be5c-99f6-4e95-bb45-d75102d6c9ff", + "id" : "76ff4e3f-35c3-4041-b349-1c167d57907a", "description" : null, "order" : 1, "enable" : true, @@ -1452,7 +2211,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "2e75d772-e83e-438e-8805-5ab7759750d7", + "id" : "75b73535-ab23-48a7-bccc-97ca9dd64872", "code" : "M1734937600637", "name" : "009-评分卡", "description" : null, @@ -1461,22 +2220,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "f4e12e5a-8b37-4c34-aaa5-9f07336e19dc", + "id" : "45de4a93-b16a-4807-ac17-fb55723acef7", "name" : "009-评分卡", "description" : null, "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "671a3465-9954-4e48-bb90-54da60770b3c", - "code" : "P1734937668014", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "5", - "resultValue" : "5", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "8b0e8145-bb69-49e5-9f5d-7d4afa7077ad", + "id" : "774e4b5e-0c3d-46a3-97bd-02f73e845a26", "code" : "P1734937636280", "inputValue" : "30", "inputValueValidateMessage" : null, @@ -1485,7 +2235,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "b8e880d5-a42f-4c83-9fb6-ccdb06c58b0a", + "id" : "7c6c8f3c-7ab4-4934-b048-05aaaf0363f6", "code" : "P1734937655755", "inputValue" : "5000", "inputValueValidateMessage" : null, @@ -1494,18 +2244,27 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "e816fa33-a57e-4201-82ff-82dadedece4b", - "code" : "M1734937600637", - "inputValue" : null, + "id" : "a18613c3-510e-427b-ac0a-8f118aad58f0", + "code" : "P1734937624962", + "inputValue" : "男", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "f01a9b95-abba-4457-845b-0b231f27e78e", - "code" : "P1734937624962", - "inputValue" : "男", + "id" : "a9ef2973-d959-4645-a810-480c5bba2d0a", + "code" : "P1734937668014", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "5", + "resultValue" : "5", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "dbc306e2-65b9-4b3e-a0ff-c3cd3675c085", + "code" : "M1734937600637", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -1514,7 +2273,7 @@ } ] } ], "model" : { - "id" : "10aaaf31-4ec8-435b-bc10-41ea92385217", + "id" : "7284064d-2c2f-4137-86e1-aa0fe1c8eab3", "code" : "M1734937600637", "name" : "009-评分卡", "description" : null, @@ -1525,7 +2284,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "1d5dc010-63c3-4484-b8fe-465e0da6379e", + "id" : "8d035cd5-6101-4987-961f-1ba619729d08", "code" : "P1734937624962", "name" : "性别", "description" : null, @@ -1540,7 +2299,7 @@ "processors" : null }, { "type" : "IN", - "id" : "f439ff85-8e80-42a9-8886-7ed07c4a8401", + "id" : "79989a9a-880c-483d-ba78-761ea95894fc", "code" : "P1734937636280", "name" : "年龄", "description" : null, @@ -1555,7 +2314,7 @@ "processors" : null }, { "type" : "IN", - "id" : "df1f6419-5f2d-422c-960c-42922411368c", + "id" : "b0dfd0f8-9184-4aec-ba63-58273e62cfce", "code" : "P1734937655755", "name" : "月收入", "description" : null, @@ -1570,7 +2329,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "b2f69547-53ae-40d9-8659-727cfad2e24d", + "id" : "5c7cc7da-4ac7-47bb-a2d8-3bf4a65dbd46", "code" : "P1734937668014", "name" : "得分", "description" : null, @@ -1584,7 +2343,7 @@ "validators" : null, "processors" : [ { "type" : "SCORE_CARD", - "id" : "01f019c7-1bae-4dd0-b739-11ff696d2c1c", + "id" : "33a6aae8-9662-43f7-b0bb-b1f8ff46ea2b", "description" : null, "order" : 1, "enable" : true, @@ -1596,7 +2355,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "e81b9e0a-df90-4590-987d-50eccd4cc5ab", + "id" : "848f78e7-d282-479f-a7df-b3396d0963ad", "code" : "M1734938956570", "name" : "010-简单决策表", "description" : null, @@ -1605,13 +2364,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "6fcdea82-1416-4125-a13d-eb48d8f9d329", + "id" : "a5a8eda0-786f-4a20-9fcb-b4e45a4a1ce8", "name" : "010-简单决策表", "description" : null, "lastTestDate" : "2025-04-23 16:58:14", "testResult" : "PASSED", "parameters" : [ { - "id" : "0416095c-b486-47ca-a685-4ed477f20658", + "id" : "17a3e01c-99e1-45c6-a0f1-6dd8f6b25ec0", + "code" : "P1734942341314", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "3", + "resultValue" : "3", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "5d639445-747d-4b8f-b15a-723ef405e872", "code" : "P1734942312068", "inputValue" : "50", "inputValueValidateMessage" : null, @@ -1620,7 +2388,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "1e699b49-c6ac-4c17-b766-99f4655618fb", + "id" : "d4304196-4c41-48a0-aaf6-434895c3e01b", "code" : "P1734942324831", "inputValue" : "女", "inputValueValidateMessage" : null, @@ -1629,16 +2397,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "8088cdf4-1662-45d2-a720-b22f43cd0649", - "code" : "P1734942341314", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "3", - "resultValue" : "3", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "dcebdda6-8259-4c80-b8d6-6f97416ff411", + "id" : "e7606dd3-d909-416d-8e8a-c072e8b02536", "code" : "M1734938956570", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1649,7 +2408,7 @@ } ] } ], "model" : { - "id" : "7389d814-60f4-46e9-831e-5e43672011f6", + "id" : "6db14b06-3331-4630-a10a-8e6a429c7d95", "code" : "M1734938956570", "name" : "010-简单决策表", "description" : null, @@ -1660,7 +2419,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "37e1c158-f7f4-48c5-a54b-85efa664a8f2", + "id" : "78257df2-d961-42d7-ae63-340418d8fd48", "code" : "P1734942312068", "name" : "年龄", "description" : null, @@ -1675,7 +2434,7 @@ "processors" : null }, { "type" : "IN", - "id" : "aeea2022-acda-4c24-a29e-3357d93b056a", + "id" : "81675758-5874-457e-abc8-97a6ec7c28cd", "code" : "P1734942324831", "name" : "性别", "description" : null, @@ -1690,7 +2449,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "a96a3fea-9859-4369-9d77-fe31983ca6ba", + "id" : "12c94b88-b178-42c4-9ed5-c6867181e47f", "code" : "P1734942341314", "name" : "结果", "description" : null, @@ -1704,7 +2463,7 @@ "validators" : null, "processors" : [ { "type" : "DECISION_TABLE_2C", - "id" : "11bcc70e-bdce-4b43-bd24-89a74675b19c", + "id" : "addb0aed-dda1-43a5-8318-27a2ddb646f1", "description" : null, "order" : 1, "enable" : true, @@ -1716,7 +2475,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "c3fbb5ce-bfc9-40f1-a09d-25032e7f3e8f", + "id" : "32929625-7ae6-4a98-9637-64cf3780be87", "code" : "M1734942489952", "name" : "011-决策表", "description" : null, @@ -1725,13 +2484,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "bbedc1dc-99b5-4dd9-8387-d9248dc9eb57", + "id" : "25cef34f-efee-4c58-86c8-3fdc248749d5", "name" : "011-决策表", "description" : null, "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "4e50fb68-5f69-4bc7-b855-519373778b56", + "id" : "5cb5dc82-bd32-4eec-ae81-5049c1c4fe9e", "code" : "P1734942557476", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1740,7 +2499,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "6ebabe37-ac36-4014-8355-d1fb1301fe89", + "id" : "6088e1ee-3096-4b1b-b1ff-ed7d6eb99338", "code" : "M1734942489952", "inputValue" : null, "inputValueValidateMessage" : null, @@ -1749,7 +2508,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "853b07d7-adca-4874-a02f-da2b26f13ae9", + "id" : "83a2d3fe-f468-4a32-b781-21a6770cc704", + "code" : "P1734942567026", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "人工审查", + "resultValue" : "人工审查", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "8e03106a-a57f-456e-b36f-138a4fd332e2", "code" : "P1734942518564", "inputValue" : "普通客户", "inputValueValidateMessage" : null, @@ -1758,7 +2526,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "d99a5791-2a89-4978-bb56-4085a5903544", + "id" : "e111b11a-a35e-4cc4-a1cf-791887e8539e", "code" : "P1734942533638", "inputValue" : "59", "inputValueValidateMessage" : null, @@ -1766,19 +2534,10 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false - }, { - "id" : "e2ac032d-4fb8-4226-960f-1be7d1b017f6", - "code" : "P1734942567026", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "人工审查", - "resultValue" : "人工审查", - "testResult" : "PASSED", - "skipCheck" : false } ] } ], "model" : { - "id" : "b3a284bf-5db9-495d-a7d9-c8f1b6c46b64", + "id" : "7a0701d3-f0f4-4fb5-a651-f75fe7aae8ab", "code" : "M1734942489952", "name" : "011-决策表", "description" : null, @@ -1789,7 +2548,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "2d20ed3a-e7ce-4da9-8e94-d0e1e071238d", + "id" : "8cb889fa-18bf-4a16-b3d8-e6f8fb947e6b", "code" : "P1734942518564", "name" : "客户类型", "description" : null, @@ -1804,7 +2563,7 @@ "processors" : null }, { "type" : "IN", - "id" : "2bbe7052-b05b-40cf-9902-c01bc375674b", + "id" : "7e6bc55e-fe23-443a-a21f-9be914e2d00d", "code" : "P1734942533638", "name" : "客户评分", "description" : null, @@ -1819,7 +2578,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "a1dfaa36-5d01-4cb2-b2b0-b3a22c72f740", + "id" : "1918b71a-59b3-47f2-94ff-cbda7b65506f", "code" : "P1734942557476", "name" : "风险等级", "description" : null, @@ -1834,7 +2593,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "d9827681-72b5-4a5e-a53b-75d86cd21ca7", + "id" : "2d241c98-8bf0-43ac-8e6a-a52c58e32010", "code" : "P1734942567026", "name" : "决策结果", "description" : null, @@ -1848,7 +2607,7 @@ "validators" : null, "processors" : [ { "type" : "DECISION_TABLE", - "id" : "33329970-df63-4395-91fb-ca475e41f3cf", + "id" : "238d2c6a-1ccd-458a-8b57-08645adf3b2d", "description" : null, "order" : 1, "enable" : true, @@ -1860,7 +2619,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "61132a22-a271-43ab-bc84-c4abb7b0314f", + "id" : "dd950145-356d-48b0-a288-f88b9c515d0a", "code" : "M1734942772648", "name" : "014-PMML-反洗钱模型", "description" : null, @@ -1869,41 +2628,32 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "68717aeb-9d90-4156-9307-be6614ecee0e", + "id" : "6bffef23-25d1-4fca-90ce-0ffbf81b2e7c", "name" : "014-PMML-反洗钱模型", "description" : null, "lastTestDate" : "2025-04-23 17:59:49", "testResult" : "PASSED", "parameters" : [ { - "id" : "024b2894-0f6e-45b3-ae48-3672d03e5fc7", - "code" : "SUM30day_IN", - "inputValue" : "0.1", + "id" : "00114734-66f1-4f2a-8b6f-da9440e9bfe4", + "code" : "age_IN", + "inputValue" : "30", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "02646ba5-bb68-4e21-8d33-f81776a9d4a0", - "code" : "probability_0_0_", - "inputValue" : null, + "id" : "06ac0ea0-46fb-4543-b5ca-3f317a4a15a6", + "code" : "age", + "inputValue" : "30", "inputValueValidateMessage" : null, - "expectValue" : "0.99894017", - "resultValue" : "0.99894017", + "expectValue" : "30", + "resultValue" : "30.0", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "05e9cf46-9192-4910-8090-8fe4a85b0804", - "code" : "Occupation_IN", - "inputValue" : "0.1", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "0c4828c6-cf48-47cd-afac-5e43a6f39760", - "code" : "COUNT180day", + "id" : "0a0c7878-b5fa-43f8-a8eb-eb74ba84869f", + "code" : "SUM30day", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -1911,17 +2661,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "1e55a47d-0bda-437c-aad5-b9af22091b35", - "code" : "probability_1_0_", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "0.0010598236", - "resultValue" : "0.0010598236", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "26c14e65-4f06-4719-b7ac-90aef9b65e63", - "code" : "Risk_code", + "id" : "0e4e32cf-db62-4b51-810a-28745b7ec7f1", + "code" : "veri_mode", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -1929,8 +2670,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "2d372b3c-809b-472d-b09c-87f10353bd41", - "code" : "COUNT10day_IN", + "id" : "251fe3b3-7a99-4361-89bf-b87ab69d88a6", + "code" : "SUM30day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -1938,8 +2679,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "33e5b248-c25c-4bfb-8b26-5b9cdfa8925d", - "code" : "Risk_code_IN", + "id" : "2977677e-a8eb-4935-a674-0ff08b613efa", + "code" : "Balance_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -1947,7 +2688,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "3e71839d-a239-4222-9a1a-00ce92e355cb", + "id" : "2f7f5345-eee2-463c-a924-76b499e0bc36", "code" : "SUM24hour_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, @@ -1956,26 +2697,26 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "45d88788-77f1-436b-a88d-35a99234a5d9", - "code" : "SUM5day_IN", + "id" : "48261e3e-fac3-45bc-a5da-3ada31965771", + "code" : "SUM90day", "inputValue" : "0.1", "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0.1", + "resultValue" : "0.1", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "47133dc0-91dc-4807-bf89-a50839ed8c95", - "code" : "P1745402122158", + "id" : "5abe338a-ca95-4dd7-a5d6-41c7419efd57", + "code" : "probability_1_0_", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "{\n \"good_bad_flag\" : 0.0,\n \"probability(0.0)\" : 0.99894017,\n \"probability(1.0)\" : 0.0010598236\n}", - "resultValue" : "{\n \"good_bad_flag\" : 0.0,\n \"probability(0.0)\" : 0.99894017,\n \"probability(1.0)\" : 0.0010598236\n}", + "expectValue" : "0.0010598236", + "resultValue" : "0.0010598236", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "489c97da-dd1b-49a4-9548-668ce566d964", - "code" : "COUNT30day_IN", + "id" : "5ed32cf3-fb7e-4752-9511-6e28c7934eb1", + "code" : "Occupation_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -1983,8 +2724,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "4d06c78a-5300-400e-bf05-4888782afa05", - "code" : "veri_mode_IN", + "id" : "60f431a0-4865-41d0-9152-4d3ce2650c75", + "code" : "COUNT90day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -1992,16 +2733,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "50a60a1e-b1fc-49e7-a25c-8b4a206b8947", - "code" : "M1734942772648", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "52483efb-2e14-4089-8ca8-24cfdff11535", + "id" : "6c473afb-96bc-47a3-aeaf-3cf8422d8b76", "code" : "SUM5day", "inputValue" : "0.1", "inputValueValidateMessage" : null, @@ -2010,17 +2742,17 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "5f521638-2d4c-4635-993a-4091b6e65004", - "code" : "COUNT5day_IN", + "id" : "6f78b9e4-c6ad-4bd2-8ea0-84db9b14add9", + "code" : "Balance", "inputValue" : "0.1", "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0.1", + "resultValue" : "0.1", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "67d5bf73-2f17-4533-8fdc-a22ce4849216", - "code" : "COUNT24hour", + "id" : "7443bbe9-d5a0-4007-9029-77c09c7816e3", + "code" : "Risk_code", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2028,8 +2760,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "7a61bc54-aae6-4610-9a53-1cf2634df539", - "code" : "COUNT24hour_IN", + "id" : "74742bec-75aa-443b-b22c-75a0c8446631", + "code" : "COUNT30day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -2037,8 +2769,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "7c345b72-3e20-445b-84f2-77f86481ba56", - "code" : "veri_mode", + "id" : "7b88f5b8-f99c-441b-916a-8589fc2eebca", + "code" : "SUM24hour", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2046,17 +2778,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8a2bc69c-abc8-4cba-81b9-36232b9284ae", - "code" : "COUNT180day_IN", - "inputValue" : "0.1", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "8b3c2b16-4386-4bf3-9ab5-bef5177d521f", - "code" : "Occupation", + "id" : "7d1517d9-b410-45f9-a851-4d8bff7377c0", + "code" : "COUNT24hour", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2064,8 +2787,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8bd5f952-4a43-4e66-946d-a3eebf1c4820", - "code" : "COUNT5day", + "id" : "90bd004e-c847-40ce-9afd-635dfc7e0ab2", + "code" : "COUNT90day", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2073,8 +2796,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8d5f3ca7-4d1a-41c3-9614-2c872d85952a", - "code" : "SUM24hour", + "id" : "935468c0-547f-49f8-8348-d80a17310d21", + "code" : "COUNT180day", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2082,8 +2805,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8e5597d6-e11f-45a4-85aa-e4fcb2379994", - "code" : "SUM90day_IN", + "id" : "a169b050-fe1e-442e-9240-11c9b015ea33", + "code" : "COUNT5day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -2091,17 +2814,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "9feefa37-f444-4558-8734-f5c1b35dc408", - "code" : "Balance", - "inputValue" : "0.1", - "inputValueValidateMessage" : null, - "expectValue" : "0.1", - "resultValue" : "0.1", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "aeb8532d-935e-496b-96d1-624734cfc134", - "code" : "COUNT90day_IN", + "id" : "a25c0ee6-4b00-496b-8197-90d182587aa5", + "code" : "COUNT180day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -2109,8 +2823,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "b775c0d9-0b50-4c48-9f88-7854585ca3f7", - "code" : "Balance_IN", + "id" : "a776ffce-4b6d-4bca-ba22-bb244f53176b", + "code" : "SUM90day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, @@ -2118,7 +2832,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "ca98142b-e356-4301-bc0a-390ab946fc06", + "id" : "b46118db-997e-4784-a7bd-47b2a290e3c3", + "code" : "probability_0_0_", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "0.99894017", + "resultValue" : "0.99894017", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "bd6edfae-ee72-4831-bf45-e4409ec7efc9", "code" : "COUNT10day", "inputValue" : "0.1", "inputValueValidateMessage" : null, @@ -2127,7 +2850,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "ce8ab963-b1f0-43f5-9690-276ba07f944e", + "id" : "c883e459-e50a-42cc-9e08-21a6a3310c4b", "code" : "COUNT30day", "inputValue" : "0.1", "inputValueValidateMessage" : null, @@ -2136,8 +2859,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "d214b3f2-9673-4954-bfa3-15900fff620d", - "code" : "SUM30day", + "id" : "ce00685b-f231-4d8a-906b-ffadd4266ab4", + "code" : "Occupation", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2145,26 +2868,62 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "daef878e-20ef-4ed9-a5c0-d9ca16e05776", - "code" : "age", - "inputValue" : "30", + "id" : "cf103238-194c-46cc-b07e-6ab19b8c4421", + "code" : "Risk_code_IN", + "inputValue" : "0.1", "inputValueValidateMessage" : null, - "expectValue" : "30", - "resultValue" : "30.0", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "dc298b06-827e-4204-86e6-805bf88bb70f", - "code" : "SUM90day", + "id" : "df9c6855-49b6-42ba-9187-2b519cd80ee3", + "code" : "SUM5day_IN", "inputValue" : "0.1", "inputValueValidateMessage" : null, - "expectValue" : "0.1", - "resultValue" : "0.1", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "e5df530f-18c6-4589-a13c-4d55f2dbdc18", + "code" : "P1745402122158", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "{\n \"good_bad_flag\" : 0.0,\n \"probability(0.0)\" : 0.99894017,\n \"probability(1.0)\" : 0.0010598236\n}", + "resultValue" : "{\n \"good_bad_flag\" : 0.0,\n \"probability(0.0)\" : 0.99894017,\n \"probability(1.0)\" : 0.0010598236\n}", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "ea807b70-9cf8-4eef-bb27-7f2194a06b53", - "code" : "COUNT90day", + "id" : "e60b6ba0-4718-4c0d-bd86-5ba28e2dde86", + "code" : "M1734942772648", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "e889c53d-9339-407d-ba72-f2cdf71aa479", + "code" : "COUNT10day_IN", + "inputValue" : "0.1", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "efc577cf-aef9-41e1-8ef8-aa39d738f561", + "code" : "COUNT24hour_IN", + "inputValue" : "0.1", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "f905507b-b69f-4eb2-af2b-8f86504b6eac", + "code" : "COUNT5day", "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : "0.1", @@ -2172,9 +2931,9 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "f65ad71b-5d55-41b0-941c-29047e91c5d2", - "code" : "age_IN", - "inputValue" : "30", + "id" : "fb2ed741-75ca-46d5-b7fc-5f6f503bc00f", + "code" : "veri_mode_IN", + "inputValue" : "0.1", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -2183,7 +2942,7 @@ } ] } ], "model" : { - "id" : "937d85e7-3883-454a-94f3-60003a6c46cf", + "id" : "81f999e3-d143-4c19-bb0a-c2f58e5232c0", "code" : "M1734942772648", "name" : "014-PMML-反洗钱模型", "description" : null, @@ -2194,7 +2953,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "8613eea5-7174-4980-ae5b-b7a954b7361f", + "id" : "e9338f48-eaaa-45aa-a08d-0f54cba1752b", "code" : "Balance_IN", "name" : "Balance_IN", "description" : "Balance", @@ -2209,7 +2968,7 @@ "processors" : null }, { "type" : "IN", - "id" : "14786baa-6d4f-48df-b23a-2d53c0d41c86", + "id" : "c727847e-9420-4d88-ae6e-2bd4eb773ed5", "code" : "COUNT24hour_IN", "name" : "COUNT24hour_IN", "description" : "COUNT24hour", @@ -2224,7 +2983,7 @@ "processors" : null }, { "type" : "IN", - "id" : "023f4e84-9d20-4c00-8ea6-face37c29270", + "id" : "2eda864d-656f-4762-83da-5f0b19b86d8d", "code" : "COUNT5day_IN", "name" : "COUNT5day_IN", "description" : "COUNT5day", @@ -2239,7 +2998,7 @@ "processors" : null }, { "type" : "IN", - "id" : "08d546a3-48c8-4b8b-b7db-447d67ddd460", + "id" : "ba38cf07-e80f-4f7b-92cc-c86f6eb08ee8", "code" : "COUNT10day_IN", "name" : "COUNT10day_IN", "description" : "COUNT10day", @@ -2254,7 +3013,7 @@ "processors" : null }, { "type" : "IN", - "id" : "2728320b-4f86-4567-8032-9c108eeb7c1d", + "id" : "a76bfad5-c4b5-4c11-8902-0878c64389e6", "code" : "COUNT30day_IN", "name" : "COUNT30day_IN", "description" : "COUNT30day", @@ -2269,7 +3028,7 @@ "processors" : null }, { "type" : "IN", - "id" : "7bf8b43a-cfdf-4f57-b7db-d8b4f19e6766", + "id" : "4248b154-adff-4c9c-925e-f7a6cc6c4f65", "code" : "COUNT90day_IN", "name" : "COUNT90day_IN", "description" : "COUNT90day", @@ -2284,7 +3043,7 @@ "processors" : null }, { "type" : "IN", - "id" : "926e34fb-a3f7-4421-b2bd-50fc8d729eb1", + "id" : "53e4ede8-5eac-454c-baaa-1e8b846d9276", "code" : "COUNT180day_IN", "name" : "COUNT180day_IN", "description" : "COUNT180day", @@ -2299,7 +3058,7 @@ "processors" : null }, { "type" : "IN", - "id" : "236201b3-dae5-4846-823b-74db7f82f5da", + "id" : "b00061d9-8d9e-4882-9904-8e5b64b7eaba", "code" : "SUM24hour_IN", "name" : "SUM24hour_IN", "description" : "SUM24hour", @@ -2314,7 +3073,7 @@ "processors" : null }, { "type" : "IN", - "id" : "9510094d-6ef2-4fc0-8383-ac49ca07d45c", + "id" : "bd65a1cc-513d-4380-9037-778ae93b5a5e", "code" : "SUM5day_IN", "name" : "SUM5day_IN", "description" : "SUM5day", @@ -2329,7 +3088,7 @@ "processors" : null }, { "type" : "IN", - "id" : "33da604a-27c8-4356-89f3-b5b208d199fb", + "id" : "d6fc58d6-db6a-47e6-bf65-62ca1e4623f8", "code" : "SUM30day_IN", "name" : "SUM30day_IN", "description" : "SUM30day", @@ -2344,7 +3103,7 @@ "processors" : null }, { "type" : "IN", - "id" : "bccbc4ae-fadf-417b-9df4-1032fd1b54c7", + "id" : "03b66d6f-ba47-45c5-aae8-2594f24e64d5", "code" : "SUM90day_IN", "name" : "SUM90day_IN", "description" : "SUM90day", @@ -2359,7 +3118,7 @@ "processors" : null }, { "type" : "IN", - "id" : "880620ff-16c6-4a36-872e-a537c039d5ad", + "id" : "34ade380-1fd7-49eb-866e-d9e64822fb51", "code" : "Risk_code_IN", "name" : "Risk_code_IN", "description" : "Risk_code", @@ -2374,7 +3133,7 @@ "processors" : null }, { "type" : "IN", - "id" : "ff2c4463-d261-4e33-a9c8-482e68965191", + "id" : "ac5fcff3-0830-48bb-8d5e-304e56b61199", "code" : "Occupation_IN", "name" : "Occupation_IN", "description" : "Occupation", @@ -2389,7 +3148,7 @@ "processors" : null }, { "type" : "IN", - "id" : "b3924894-07e3-4d87-ac54-85fb0155215c", + "id" : "810b3c36-8403-45cf-aaf6-b29276dab28b", "code" : "veri_mode_IN", "name" : "veri_mode_IN", "description" : "veri_mode", @@ -2404,7 +3163,7 @@ "processors" : null }, { "type" : "IN", - "id" : "be59665a-00db-4ac0-8086-dc99ca34dee7", + "id" : "204b0e02-bb98-4267-8c04-5d08f0ffa801", "code" : "age_IN", "name" : "age_IN", "description" : "age", @@ -2419,7 +3178,7 @@ "processors" : null }, { "type" : "INTERMEDIATE", - "id" : "8c983dea-9500-4ff8-af82-05e26675d410", + "id" : "2e946c60-5bf6-4a8c-a50b-c63c6a44dc69", "code" : "Balance", "name" : "Balance", "description" : "Balance", @@ -2433,7 +3192,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "55052f68-3c47-47d7-91b3-60725908f8ff", + "id" : "c9f78f52-98f3-4be8-a87a-3f9b6650e944", "description" : null, "order" : 1, "enable" : true, @@ -2441,7 +3200,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "91ff718d-7bda-4cf2-8b39-0b2a6813705e", + "id" : "a1d16e64-b957-4b7c-af58-ba3601ce645a", "code" : "COUNT24hour", "name" : "COUNT24hour", "description" : "COUNT24hour", @@ -2455,7 +3214,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "a91bb227-f0b0-4a3c-a1cc-1a7290b3a19e", + "id" : "5f617d2d-3f92-4fda-b505-32f8433d7c41", "description" : null, "order" : 1, "enable" : true, @@ -2463,7 +3222,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "8a0aa32f-693b-4e6d-bba9-d62de23cf1b2", + "id" : "9d0befab-9b59-4ec6-8f79-251c6e02b623", "code" : "COUNT5day", "name" : "COUNT5day", "description" : "COUNT5day", @@ -2477,7 +3236,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "642edadc-059f-494e-b7ad-53c78f404c31", + "id" : "7197cbb4-d342-4df1-b913-a9b390d3a7a6", "description" : null, "order" : 1, "enable" : true, @@ -2485,7 +3244,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "0c2886e1-f9a9-409d-9700-a952df8d6653", + "id" : "41973101-aa19-457d-98c1-3c681fc9de49", "code" : "COUNT10day", "name" : "COUNT10day", "description" : "COUNT10day", @@ -2499,7 +3258,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "c3ef44eb-687f-45be-a86e-355db968fd0c", + "id" : "4e12d453-7afc-400d-82b6-de592e10494f", "description" : null, "order" : 1, "enable" : true, @@ -2507,7 +3266,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "6955bc7e-f043-4c28-8523-46f633254314", + "id" : "ee83da2f-b942-4178-bc07-eca8a7be4169", "code" : "COUNT30day", "name" : "COUNT30day", "description" : "COUNT30day", @@ -2521,7 +3280,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "ab1cb936-227f-4ff3-8bba-a4b020d7c278", + "id" : "810f826b-c6d6-4d3b-a9e9-caa89616d129", "description" : null, "order" : 1, "enable" : true, @@ -2529,7 +3288,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "0ac13b33-c590-4bd5-8c89-c969cf7f76d3", + "id" : "93e0a2e5-7752-42b2-bf97-b9e07645dd8e", "code" : "COUNT90day", "name" : "COUNT90day", "description" : "COUNT90day", @@ -2543,7 +3302,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "37d8cae3-aca4-4cee-ad99-caa4482de91f", + "id" : "611dc05c-60f7-495a-a6cd-272bcc240e8e", "description" : null, "order" : 1, "enable" : true, @@ -2551,7 +3310,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "f77b8d6a-3532-4cdd-b369-bc4f68de3f45", + "id" : "98bc42e1-4f44-411c-aa1a-e8c8df6edde6", "code" : "COUNT180day", "name" : "COUNT180day", "description" : "COUNT180day", @@ -2565,7 +3324,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "6b590034-a323-493a-8dba-7e274ee38a42", + "id" : "016f4390-ac7d-4720-8690-bdc50f42d2d2", "description" : null, "order" : 1, "enable" : true, @@ -2573,7 +3332,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "18fafe4f-1e65-4ae1-92e0-3027f5bf885d", + "id" : "37ad0133-8950-47e9-aa19-45dcc027c4a6", "code" : "SUM24hour", "name" : "SUM24hour", "description" : "SUM24hour", @@ -2587,7 +3346,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "9cf5bd40-8b69-4ba1-b737-4137092b616c", + "id" : "82d498f0-391b-492d-b5ee-f02f56da735d", "description" : null, "order" : 1, "enable" : true, @@ -2595,7 +3354,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "95d6aa22-ce8d-409c-9bd1-8c57a4086145", + "id" : "303bbcf3-c9a5-46b6-869c-cb4e05997893", "code" : "SUM5day", "name" : "SUM5day", "description" : "SUM5day", @@ -2609,7 +3368,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "f512b52d-5cfa-44a8-ba1f-7e4ca99bce6b", + "id" : "80dcdc53-d743-4417-a7a1-3f2c4cdc169a", "description" : null, "order" : 1, "enable" : true, @@ -2617,7 +3376,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "d4c8e637-1c6a-4ec5-8855-49cd535d4b9e", + "id" : "74c8f939-4c1c-45af-b439-45156c513568", "code" : "SUM30day", "name" : "SUM30day", "description" : "SUM30day", @@ -2631,7 +3390,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "282c598b-0e26-4cd3-a59e-207c2cdfce47", + "id" : "44ba3a51-54af-4a79-a82f-a45921bbb706", "description" : null, "order" : 1, "enable" : true, @@ -2639,7 +3398,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "f80e1bc2-039c-4b7c-b024-c45ff7896f58", + "id" : "33bd3da4-1cab-47bf-8f2f-f8c8c4578ae3", "code" : "SUM90day", "name" : "SUM90day", "description" : "SUM90day", @@ -2653,7 +3412,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "55e4f553-e162-4a98-a987-5e3c1e271151", + "id" : "4a9c77bb-7e54-42fd-8b7a-ecad21f129db", "description" : null, "order" : 1, "enable" : true, @@ -2661,7 +3420,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "5832c495-fdc6-4634-8a93-e6e0bc72575a", + "id" : "30c1b63f-53b5-4352-8fa1-71c9f9382082", "code" : "Risk_code", "name" : "Risk_code", "description" : "Risk_code", @@ -2675,7 +3434,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "d6d5797d-b047-45fc-9a17-5b65ccecb3b1", + "id" : "bf4351ec-1566-4b7e-bb0d-28a1a11dd6ad", "description" : null, "order" : 1, "enable" : true, @@ -2683,7 +3442,7 @@ } ] }, { "type" : "INTERMEDIATE", - "id" : "bc9c8492-38b8-48ac-b5c0-c184f69f7d07", + "id" : "e82c4d5c-f4f1-4638-aed8-797b76826b59", "code" : "Occupation", "name" : "Occupation", "description" : "Occupation", @@ -2697,459 +3456,1093 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "fcd8e273-c1fc-4609-b4b1-03de7e5c7f49", + "id" : "da5a3f62-5bc6-4aba-863f-229d4831bc91", "description" : null, "order" : 1, "enable" : true, "arithmetic" : "${Occupation_IN}" } ] }, { - "type" : "INTERMEDIATE", - "id" : "652b4e0a-5a1c-450b-bb2b-738d70506961", - "code" : "veri_mode", - "name" : "veri_mode", - "description" : "veri_mode", + "type" : "INTERMEDIATE", + "id" : "5fcd4ed0-fb37-4ff7-9986-457868e1179f", + "code" : "veri_mode", + "name" : "veri_mode", + "description" : "veri_mode", + "valueType" : "java.lang.Float", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 29, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "fc2644a8-bdbf-497b-b04c-1ca678c2ee13", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${veri_mode_IN}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "c44cb33a-5e1c-487f-bcdd-9e9ced0d2ff4", + "code" : "age", + "name" : "age", + "description" : "age", + "valueType" : "java.lang.Float", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 30, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "f8588579-1db8-4dc4-b903-20c5a5125763", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${age_IN}" + } ] + }, { + "type" : "INTERMEDIATE", + "id" : "fe65bc01-9476-4367-b9f7-00a73dbcf156", + "code" : "P1745402122158", + "name" : "014-PMML-反洗钱模型_PMML_中间值", + "description" : null, + "valueType" : "java.util.Map", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 31, + "validators" : null, + "processors" : [ { + "type" : "PMML", + "id" : "237c6ccb-58c0-4392-9404-5734229e395b", + "description" : null, + "order" : 1, + "enable" : true, + "pmml" : "\n\n\t
\n\t\t\n\t\t2019-05-17T08:22:15Z\n\t
\n\t\n\t\tPMMLPipeline(steps=[('classifier', XGBClassifier(base_score=0.5, booster='gbtree', colsample_bylevel=1,\n colsample_bytree=1, gamma=0.5, learning_rate=0.6, max_delta_step=0,\n max_depth=3, min_child_weight=80, missing=None, n_estimators=30,\n n_jobs=1, nthread=None, objective='binary:logistic', random_state=0,\n reg_alpha=5, reg_lambda=1, scale_pos_weight=1, seed=1000, silent=0,\n subsample=1))])\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n
" + } ] + }, { + "type" : "OUT", + "id" : "136dbaae-3e4a-40d2-9501-98ce5818f2ad", + "code" : "probability_0_0_", + "name" : "probability(0_0)", + "description" : "probability(0.0)", + "valueType" : "java.lang.Float", + "valueTypeVersion" : null, + "valueScale" : null, + "valueRoundingMode" : null, + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 32, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "5cee7e5c-5200-42c4-b142-75da033ff45d", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1745402122158}['probability(0.0)']" + } ] + }, { + "type" : "OUT", + "id" : "a7285fdb-3d72-43c6-9130-cc6d3c07afbc", + "code" : "probability_1_0_", + "name" : "probability(1_0)", + "description" : "probability(1.0)", "valueType" : "java.lang.Float", "valueTypeVersion" : null, "valueScale" : null, "valueRoundingMode" : null, "valueTypeIsList" : false, "defaultValue" : null, - "order" : 29, + "order" : 33, "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "3a02219d-5a3c-41dd-aa07-4ec3e35e1dc6", + "id" : "0f039343-681d-4fcd-ba6d-95da4e90e79d", "description" : null, "order" : 1, "enable" : true, - "arithmetic" : "${veri_mode_IN}" + "arithmetic" : "${P1745402122158}['probability(1.0)']" } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "a10aff78-3c75-4925-8edb-59dd3a1b7030", + "code" : "M1734943060087", + "name" : "015-Groovy脚本", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "57ea4c46-5118-492f-871e-30e04d68374a", + "name" : "015-Groovy脚本", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:15", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "52070c41-d80c-4bbd-8b5f-7c6cfb7b4303", + "code" : "P1734943398333", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "Groovy脚本", + "resultValue" : "Groovy脚本", + "testResult" : "PASSED", + "skipCheck" : false }, { - "type" : "INTERMEDIATE", - "id" : "b5461b78-6d86-4319-a7f9-e0bfcf08ca47", - "code" : "age", - "name" : "age", - "description" : "age", - "valueType" : "java.lang.Float", + "id" : "6db1920f-184c-446d-b4a4-cc328fcc6270", + "code" : "P1734943408088", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "1", + "resultValue" : "1", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "9f3d822f-7ca6-434c-9a67-0151e8510dfa", + "code" : "P1734943386383", + "inputValue" : "Groovy脚本_1", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "d827ec8e-8b5a-4d08-bf8c-2747ff8d7125", + "code" : "M1734943060087", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "b242fa75-0d50-4e75-bfa3-12e6641024af", + "code" : "M1734943060087", + "name" : "015-Groovy脚本", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "a273143c-4802-4f84-8e7e-95ce8833b45c", + "code" : "P1734943386383", + "name" : "模型名称", + "description" : null, + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : null, - "valueRoundingMode" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, - "defaultValue" : null, - "order" : 30, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "3be71180-86e7-4f87-b594-b13a00372ee4", + "code" : "P1734943398333", + "name" : "模型代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "5b1be8b5-94ff-4cd5-bcd1-85f0274d7e7e", + "code" : "P1734943408088", + "name" : "模型版本", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, "validators" : null, "processors" : [ { - "type" : "ARITHMETIC", - "id" : "717eb94a-5c39-44ca-8967-9e25b9cd5dab", + "type" : "GROOVY_SCRIPT", + "id" : "3ee50209-6268-49ba-b2df-6e59de908ce0", "description" : null, "order" : 1, "enable" : true, - "arithmetic" : "${age_IN}" + "groovyScript" : "def splits = ${P1734943386383}.split('_');\n${P1734943398333} =splits[0];\n${P1734943408088}=splits[1];" } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "9ad2bee0-c466-4376-a216-adba2d64798a", + "code" : "M1734943932678", + "name" : "016-SQL赋值", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "b6f6468f-b36d-42ab-8032-04be8e17e64e", + "name" : "016-SQL赋值", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:13", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "724d115e-2c16-445d-8e28-17bea693c9f4", + "code" : "P1734943971590", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "系统管理员", + "resultValue" : "系统管理员", + "testResult" : "PASSED", + "skipCheck" : false }, { - "type" : "INTERMEDIATE", - "id" : "4adf113c-fdbd-4f00-89fe-527d844b7f9f", - "code" : "P1745402122158", - "name" : "014-PMML-反洗钱模型_PMML_中间值", + "id" : "8353da88-2c73-432a-86a5-532e2ce68c46", + "code" : "M1734943932678", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "e9b0f378-a566-4fd6-b8b9-c698f4e8cc6c", + "code" : "P1734943957354", + "inputValue" : "admin", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "25ae482c-94c0-4c81-a098-6b76d3840ae3", + "code" : "M1734943932678", + "name" : "016-SQL赋值", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "5e3880bd-38bd-4755-9e9a-20d54b8d8708", + "code" : "P1734943957354", + "name" : "用户登录名", "description" : null, - "valueType" : "java.util.Map", + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : null, - "valueRoundingMode" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, - "defaultValue" : null, - "order" : 31, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "9399aa75-8fa3-41e2-8a4a-6c2a8e706413", + "code" : "P1734943971590", + "name" : "用户所属的默认角色名", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, "validators" : null, "processors" : [ { - "type" : "PMML", - "id" : "1bf1c457-f43d-4bf6-a881-5ee4e245abca", + "type" : "SQL", + "id" : "0249e6df-5bee-4b8e-a28d-5baba038eec2", "description" : null, "order" : 1, "enable" : true, - "pmml" : "\n\n\t
\n\t\t\n\t\t2019-05-17T08:22:15Z\n\t
\n\t\n\t\tPMMLPipeline(steps=[('classifier', XGBClassifier(base_score=0.5, booster='gbtree', colsample_bylevel=1,\n colsample_bytree=1, gamma=0.5, learning_rate=0.6, max_delta_step=0,\n max_depth=3, min_child_weight=80, missing=None, n_estimators=30,\n n_jobs=1, nthread=None, objective='binary:logistic', random_state=0,\n reg_alpha=5, reg_lambda=1, scale_pos_weight=1, seed=1000, silent=0,\n subsample=1))])\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n
" + "sqlDatasourceName" : null, + "sql" : "select NAME_,ID_ from SYS_ROLE where ID_=(\n\tselect DEFAULT_ROLE_ID_ from SYS_USER \n\twhere LOGINNAME_='${P1734943957354}'\n)", + "sqlParameterValues" : "[{\"name\":\"${P1734943957354}\",\"value\":\"admin\"}]", + "sqlFieldMapping" : "[{\"field\":\"NAME_\",\"parameter\":\"${P1734943971590}\"}]" } ] }, { "type" : "OUT", - "id" : "bd154525-1cd6-4699-96b1-041279bf16a1", - "code" : "probability_0_0_", - "name" : "probability(0_0)", - "description" : "probability(0.0)", - "valueType" : "java.lang.Float", + "id" : "61de8976-1a7f-4740-921a-8ded3f251f19", + "code" : "P1745397546264", + "name" : "xxx", + "description" : null, + "valueType" : "D1745285261723", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : null + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "25bbb4a4-1ba1-4704-9a29-86a486ae2cb8", + "code" : "M1734944086793", + "name" : "017-HTTP请求", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : null, + "model" : { + "id" : "de577c75-525b-49cc-a720-bb15f3d18e5b", + "code" : "M1734944086793", + "name" : "017-HTTP请求", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "282e9a79-8b90-4cf7-a924-8b8969bff227", + "code" : "P1734945083710", + "name" : "模型代码", + "description" : null, + "valueType" : "java.lang.String", "valueTypeVersion" : null, - "valueScale" : null, - "valueRoundingMode" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, - "defaultValue" : null, - "order" : 32, + "defaultValue" : "", + "order" : 1, "validators" : null, - "processors" : [ { - "type" : "ARITHMETIC", - "id" : "c3c3fedc-a069-4160-b587-c2c7669b7015", - "description" : null, - "order" : 1, - "enable" : true, - "arithmetic" : "${P1745402122158}['probability(0.0)']" - } ] + "processors" : null }, { "type" : "OUT", - "id" : "573fe019-c38e-496b-aae2-93dcfb911915", - "code" : "probability_1_0_", - "name" : "probability(1_0)", - "description" : "probability(1.0)", - "valueType" : "java.lang.Float", - "valueTypeVersion" : null, - "valueScale" : null, - "valueRoundingMode" : null, + "id" : "13fa29d4-5cb6-494c-8f8c-4e34e06e8a7e", + "code" : "P1734944136940", + "name" : "HTTP请求结果", + "description" : null, + "valueType" : "D1745285261723", + "valueTypeVersion" : 1, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, - "defaultValue" : null, - "order" : 33, + "defaultValue" : "", + "order" : 2, "validators" : null, "processors" : [ { - "type" : "ARITHMETIC", - "id" : "92aaf929-fb96-4c61-b112-15ee5830dea2", + "type" : "HTTP_REQUEST", + "id" : "39408842-4381-4e26-b466-4921beafd2f0", "description" : null, - "order" : 1, + "order" : null, "enable" : true, - "arithmetic" : "${P1745402122158}['probability(1.0)']" + "httpMethod" : "GET", + "httpUrl" : "http://localhost:8080/api/lcdp/configure/getActiveConfigure", + "httpUrlParameterValues" : "", + "httpAuthType" : "NONE", + "httpAuthBasicUsername" : "", + "httpAuthBasicPassword" : "", + "httpAuthBearerToken" : "", + "httpAuthParameterValues" : "", + "httpRequestHeader" : "", + "httpRequestHeaderParameterValues" : "", + "httpRequestBody" : "", + "httpRequestBodyParameterValues" : "", + "httpConnectTimeout" : 0, + "httpRetryCountOnFailure" : 0, + "httpAsync" : false, + "httpCache" : false, + "httpResponseBodyType" : "JSON" } ] } ] }, "effectiveDate" : null, "imports" : "" }, { - "type" : "MODEL", - "id" : "0d167514-e01a-4646-b5d7-d012a687435d", - "code" : "M1734943060087", - "name" : "015-Groovy脚本", + "type" : "FOLDER", + "id" : "606ae8bd-96fa-4bc9-94ef-cc892355fcaa", + "code" : "M1744084117959", + "name" : "定性补录", "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { + "version" : null, + "status" : null, + "children" : [ { + "type" : "MODEL", + "id" : "376e39e4-e8ff-4ecb-8217-406f8f497431", + "code" : "M1744084138259", + "name" : "定性补录", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : null, + "model" : { + "id" : "d31373c3-9a1a-4aa1-a324-c802783bedec", + "code" : "M1744084138259", + "name" : "定性补录", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN_OPTION", + "id" : "efed9b58-9ba7-4a16-9b42-7ec112eb837f", + "code" : "P1744084165680", + "name" : "经营区域多元化", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : null, + "options" : [ { + "id" : "ef3df75d-89c6-4783-bc8f-336e0b89fc35", + "inputValue" : "0", + "value" : "100", + "title" : "产品或服务销售范围大于8个(含)地级市。", + "description" : null, + "order" : 1, + "config" : null + }, { + "id" : "6429ff62-f6ee-4e14-8ad4-f8476ba16293", + "inputValue" : "1", + "value" : "67", + "title" : "产品或服务销售范围在4至7个地级市范围内。", + "description" : null, + "order" : 2, + "config" : null + }, { + "id" : "f7dcdbdf-5fbe-4032-bd34-af25393c3c25", + "inputValue" : "2", + "value" : "33", + "title" : "产品或服务销售范围在2至3个地级市范围内。", + "description" : null, + "order" : 3, + "config" : null + }, { + "id" : "7b361f5a-23fe-4abd-bf9e-2dfc2ebc568b", + "inputValue" : "3", + "value" : "0", + "title" : "产品或服务销售范围在1个地级市以内。", + "description" : null, + "order" : 4, + "config" : null + } ], + "additons" : [ { + "id" : "1740d1c2-3dfb-4c8e-a8b2-6dc08daacf90", + "code" : "countOfRange", + "name" : "产品或服务销售范围的地级市个数", + "description" : null, + "componentType" : "INTEGER", + "condition" : "${经营区域多元化}==0 || ${经营区域多元化}==1", + "enable" : true, + "required" : true, + "order" : 1, + "textareaHeight" : null, + "textMinLength" : null, + "textMaxLength" : null, + "prompt" : "3", + "attachmentExtendNames" : "*.pdf", + "attachmentMaxCount" : 1 + } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + } ], + "testCases" : null + }, { + "type" : "FOLDER", + "id" : "10c23fe1-f6e5-4704-b083-375ac7027051", + "code" : "M1735010567256", + "name" : "冠军挑战者模型", + "description" : null, + "version" : null, + "status" : null, + "children" : [ { + "type" : "MODEL", + "id" : "2fbdf6e5-0458-4f42-98e5-e293fe09e117", + "code" : "M1735010656623", + "name" : "个人消费模型-冠军", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "95a8709f-95b6-4c8a-8d06-b13f877a702b", + "name" : "个人消费模型-冠军", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:16", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "2907cca0-6b0c-47b6-bc0d-685bf6ae52ee", + "code" : "P1735011698621", + "inputValue" : "20000", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "39cb52f2-50f4-4299-91e2-0624e04d57dc", + "code" : "M1735010656623", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "8cdbfc12-28a6-487e-97d2-da4c0c6d8695", + "code" : "P1735011716680", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "11000", + "resultValue" : "11000.00", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "eb63746e-33fb-4d3f-af01-29f1536ab0a6", + "code" : "P1735011685888", + "inputValue" : "30", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "5bdabb22-b0a5-42bd-a2d0-1f3eb5adf37f", + "code" : "M1735010656623", + "name" : "个人消费模型-冠军", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "4954fc85-2623-415f-bb0c-fb3061e72382", + "code" : "P1735011685888", + "name" : "年龄", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "84394d4d-65f6-457e-82de-f16949b32686", + "code" : "P1735011698621", + "name" : "申请额度", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "28edf022-cf92-4758-af11-53dff2630551", + "code" : "P1735011716680", + "name" : "批准额度", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "CONDITION_RANGE", + "id" : "957921f0-c6e1-48ff-aed6-0dd899e3777e", + "description" : null, + "order" : 1, + "enable" : true, + "conditionRange" : "[{\"condition\":\"${P1735011685888}<18\",\"value\":\"0\"},{\"condition\":\"${P1735011685888}>=18 && ${P1735011685888}<30\",\"value\":\"${P1735011698621} * 0.5\"},{\"condition\":\"${P1735011685888}>=30 && ${P1735011685888}<40\",\"value\":\"${P1735011698621} * 0.55\"},{\"condition\":\"${P1735011685888}>=40 && ${P1735011685888}<50\",\"value\":\"${P1735011698621} * 0.6\"},{\"condition\":\"${P1735011685888}>=50 && ${P1735011685888}<65\",\"value\":\"${P1735011698621} * 0.4\"},{\"condition\":\"${P1735011685888}>=65\",\"value\":\"${P1735011698621} * 0.3\"}]" + } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { "type" : "MODEL", - "id" : "a3a8ff83-d44f-4bd9-a97c-1904d9465919", - "name" : "015-Groovy脚本", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:15", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "358fe950-a450-4e99-8df8-e68f02c93435", - "code" : "M1734943060087", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "555c9ee8-fdd2-4ce6-85c3-dfa2d60ac830", - "code" : "P1734943408088", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "1", - "resultValue" : "1", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "6ba5ce13-298e-46fd-80e0-24bdad5597bb", - "code" : "P1734943386383", - "inputValue" : "Groovy脚本_1", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "afc8dd37-51ee-483e-9a6a-25487afa6f16", - "code" : "P1734943398333", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "Groovy脚本", - "resultValue" : "Groovy脚本", - "testResult" : "PASSED", - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "32be79c0-80f2-4788-b6a0-622b5c15f426", - "code" : "M1734943060087", - "name" : "015-Groovy脚本", + "id" : "45e30464-249f-4ea5-b157-f33e6914f64b", + "code" : "M1735011500970", + "name" : "个人消费模型-挑战者", "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", + "version" : 1, + "status" : "SKETCH", "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "86c57855-7c6c-484f-bec4-f081b30cc30d", - "code" : "P1734943386383", - "name" : "模型名称", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "9ef736c3-b536-46db-ace0-f8e7488fa4d7", - "code" : "P1734943398333", - "name" : "模型代码", + "testCases" : [ { + "type" : "MODEL", + "id" : "db53cf6b-1a42-4ee6-a9ee-f18dc32a3316", + "name" : "个人消费模型-挑战者", "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "96d4b294-6165-436a-9ed8-bf4e8b95f906", - "code" : "P1734943408088", - "name" : "模型版本", + "lastTestDate" : "2025-04-23 16:58:15", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "1c4658c2-c4f9-48fe-8789-5eef2e3559fe", + "code" : "P1735011698621", + "inputValue" : "20000", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "4d500c35-b10d-4045-ac3f-9b9d230e40a3", + "code" : "P1735011716680", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "9000", + "resultValue" : "9000.00", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "82ae875d-15da-4f97-86aa-efe6d98ae350", + "code" : "M1735011500970", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "cd67c540-511d-4e1b-a5aa-3ab0f5bda566", + "code" : "P1735011685888", + "inputValue" : "30", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "cd43ee03-a1a8-4d12-aa40-5bbc207c7d1a", + "code" : "M1735011500970", + "name" : "个人消费模型-挑战者", "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 3, - "validators" : null, - "processors" : [ { - "type" : "GROOVY_SCRIPT", - "id" : "5c0fd0bc-e02a-4f8e-92ef-f29888973303", + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "2f4d6b46-3f55-450c-8944-e9dd31b46dd7", + "code" : "P1735011685888", + "name" : "年龄", "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", "order" : 1, - "enable" : true, - "groovyScript" : "def splits = ${P1734943386383}.split('_');\n${P1734943398333} =splits[0];\n${P1734943408088}=splits[1];" + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "70111041-c420-489e-9867-dabffc3e9017", + "code" : "P1735011698621", + "name" : "申请额度", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "a6a40473-d8ec-40a8-87fe-e4131d363406", + "code" : "P1735011716680", + "name" : "批准额度", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "CONDITION_RANGE", + "id" : "49c42bb6-2426-4533-92f0-f79d900996d5", + "description" : null, + "order" : 1, + "enable" : true, + "conditionRange" : "[{\"condition\":\"${P1735011685888}<18\",\"value\":\"0\"},{\"condition\":\"${P1735011685888}>=18 && ${P1735011685888}<30\",\"value\":\"${P1735011698621} * 0.4\"},{\"condition\":\"${P1735011685888}>=30 && ${P1735011685888}<40\",\"value\":\"${P1735011698621} * 0.45\"},{\"condition\":\"${P1735011685888}>=40 && ${P1735011685888}<50\",\"value\":\"${P1735011698621} * 0.5\"},{\"condition\":\"${P1735011685888}>=50 && ${P1735011685888}<65\",\"value\":\"${P1735011698621} * 0.3\"},{\"condition\":\"${P1735011685888}>=65\",\"value\":\"${P1735011698621} * 0.2\"}]" + } ] } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" + }, + "effectiveDate" : null, + "imports" : "" + } ], + "testCases" : null }, { - "type" : "MODEL", - "id" : "9ef7faeb-afe4-4939-9b86-a0756c940180", - "code" : "M1734943932678", - "name" : "016-SQL赋值", + "type" : "FOLDER", + "id" : "f3bba279-4c97-43f9-8cc4-7dab4c3e51c8", + "code" : "M1735112628652", + "name" : "规则", "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { + "version" : null, + "status" : null, + "children" : [ { "type" : "MODEL", - "id" : "17936ac2-5b1f-4eb8-b37c-cebc87c9e1d8", - "name" : "016-SQL赋值", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:13", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "2fa52e8d-1fba-4df4-94b4-7f563efed3a0", - "code" : "P1734943971590", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "系统管理员", - "resultValue" : "系统管理员", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "4eda91c0-502d-43af-943c-9aec6bdd2c12", - "code" : "P1734943957354", - "inputValue" : "admin", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "4ff580da-b06a-468d-a731-85eb972045e2", - "code" : "M1734943932678", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "6b644d9a-1d6a-45cc-b756-5f988e299c53", - "code" : "M1734943932678", - "name" : "016-SQL赋值", + "id" : "01a6d2e5-2926-442c-bde9-91efa3d56375", + "code" : "M1735093875900", + "name" : "018-规则-单规则", "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", + "version" : 1, + "status" : "SKETCH", "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "8e980152-6429-4b4a-8789-375ee599cb3e", - "code" : "P1734943957354", - "name" : "用户登录名", + "testCases" : [ { + "type" : "MODEL", + "id" : "f47a3c6b-ef37-4bc0-9da1-da91db041fb2", + "name" : "018-规则-单规则", "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "5fc886a4-2d56-4c31-8d18-802c4ac417c0", - "code" : "P1734943971590", - "name" : "用户所属的默认角色名", + "lastTestDate" : "2025-04-23 16:58:12", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "06cf7d12-7c6c-4bb4-908c-75553dd4f57b", + "code" : "P1735105227495", + "inputValue" : "0.4", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "9b164c00-d82b-40b0-b0cb-82b8daa0cf36", + "code" : "M1735093875900", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "ba0002be-479d-4c30-b7c9-fdcfac689ed6", + "code" : "P1735093943459", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "{\n \"triggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n}", + "resultValue" : "{\n \"triggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n}", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "c641362b-0d0b-41b3-8f8b-7c1f1ce26510", + "code" : "P1735105245762", + "inputValue" : "0.05", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "e932256b-61c0-41c0-b6f3-653dfa7933a0", + "code" : "M1735093875900", + "name" : "018-规则-单规则", "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "SQL", - "id" : "dd7ac6da-452b-4f38-92eb-bfc6b80821f8", + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "5acb8c44-dec4-48d0-882a-5a0d4ebd6b90", + "code" : "P1735105227495", + "name" : "资产负债率", "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", "order" : 1, - "enable" : true, - "sqlDatasourceName" : null, - "sql" : "select NAME_,ID_ from SYS_ROLE where ID_=(\n\tselect DEFAULT_ROLE_ID_ from SYS_USER \n\twhere LOGINNAME_='${P1734943957354}'\n)", - "sqlParameterValues" : "[{\"name\":\"${P1734943957354}\",\"value\":\"admin\"}]", - "sqlFieldMapping" : "[{\"field\":\"NAME_\",\"parameter\":\"${P1734943971590}\"}]" + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "a1c05400-a274-40d5-bf09-7ad903bba4ea", + "code" : "P1735105245762", + "name" : "净利润率", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "f7eb9077-e4e3-4abc-b58f-8d3f99b6195c", + "code" : "P1735093943459", + "name" : "预警结果", + "description" : null, + "valueType" : "io.sc.engine.rule.core.SingleRuleResult", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "SINGLE_RULE", + "id" : "c07e4f90-54b1-4092-a606-dcdfa6b7fb0d", + "description" : null, + "order" : 1, + "enable" : true, + "singleRule" : "[{\"level\":2,\"category\":\"财务预警\",\"condition\":\"${P1735105245762}<0.1\",\"value\":\"${P1735105245762}\",\"message\":\"净利润率: ${P1735105245762}, 小于 0.1\"},{\"level\":1,\"category\":\"财务预警\",\"condition\":\"${P1735105227495}>0.3\",\"value\":\"${P1735105227495}\",\"message\":\"资产负债率: ${P1735105227495}, 大于 0.3\"}]" + } ] } ] - }, { - "type" : "OUT", - "id" : "5a7462d2-13db-47f8-b937-5dbe950e1ac7", - "code" : "P1745397546264", - "name" : "xxx", - "description" : null, - "valueType" : "D1745285261723", - "valueTypeVersion" : 1, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : null, - "order" : 3, - "validators" : null, - "processors" : null - } ] - }, - "effectiveDate" : null, - "imports" : "" - }, { - "type" : "MODEL", - "id" : "5fe9fa40-642b-4967-923c-ee1354c0e2fa", - "code" : "M1734944086793", - "name" : "017-HTTP请求", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : null, - "model" : { - "id" : "7d898505-1164-431b-b805-e471ba8f7073", - "code" : "M1734944086793", - "name" : "017-HTTP请求", + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "291f5bb2-1b8c-4366-ac12-548736466610", + "code" : "M1735107133222", + "name" : "018-规则-规则集", "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", + "version" : 1, + "status" : "SKETCH", "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "ed983376-688d-48b8-9dfe-270032cb0f5d", - "code" : "P1734945083710", - "name" : "模型代码", + "testCases" : [ { + "type" : "MODEL", + "id" : "bdd3fb68-761d-4190-a91d-ab632e125221", + "name" : "018-规则-规则集", "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "12093486-539e-49af-982a-5b9becf2dc2a", - "code" : "P1734944136940", - "name" : "HTTP请求结果", + "lastTestDate" : "2025-04-23 16:58:13", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "4c680fe2-9c60-4562-b6fe-9d477a0fa1fc", + "code" : "P1735107183174", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "{\n \"triggered\" : true,\n \"level\" : 1,\n \"rules\" : [ {\n \"isTriggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R001\",\n \"name\" : \"资产负债率过高\",\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n }, {\n \"isTriggered\" : false,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R002\",\n \"name\" : \"净利润率过高\",\n \"value\" : \"0.05\",\n \"message\" : \"净利润率: 0.05, 大于 0.3\"\n } ]\n}", + "resultValue" : "{\n \"triggered\" : true,\n \"level\" : 1,\n \"rules\" : [ {\n \"isTriggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R001\",\n \"name\" : \"资产负债率过高\",\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n }, {\n \"isTriggered\" : false,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R002\",\n \"name\" : \"净利润率过高\",\n \"value\" : \"0.05\",\n \"message\" : \"净利润率: 0.05, 大于 0.3\"\n } ]\n}", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "5891f102-d011-4eb3-a092-472221095802", + "code" : "P1735107156281", + "inputValue" : "0.4", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "8f53437b-b8ff-4ed5-9337-ff46c55bd3a7", + "code" : "P1735107167213", + "inputValue" : "0.05", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "9d5f82eb-3d43-4b7a-b5c1-a2720753bbff", + "code" : "M1735107133222", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "d7ba2036-11f0-4984-8a42-368278b1323a", + "code" : "M1735107133222", + "name" : "018-规则-规则集", "description" : null, - "valueType" : "D1745285261723", - "valueTypeVersion" : 1, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "HTTP_REQUEST", - "id" : "79ccd854-5760-410b-8739-3eea1a7d3c0f", + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "3e824b9c-d063-4604-bcdc-3a8d1926976d", + "code" : "P1735107156281", + "name" : "资产负债率", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "c1d07a10-53d6-4ef7-8c45-02f38c00b524", + "code" : "P1735107167213", + "name" : "净利润率", "description" : null, - "order" : null, - "enable" : true, - "httpMethod" : "GET", - "httpUrl" : "http://localhost:8080/api/lcdp/configure/getActiveConfigure", - "httpUrlParameterValues" : "", - "httpAuthType" : "NONE", - "httpAuthBasicUsername" : "", - "httpAuthBasicPassword" : "", - "httpAuthBearerToken" : "", - "httpAuthParameterValues" : "", - "httpRequestHeader" : "", - "httpRequestHeaderParameterValues" : "", - "httpRequestBody" : "", - "httpRequestBodyParameterValues" : "", - "httpConnectTimeout" : 0, - "httpRetryCountOnFailure" : 0, - "httpAsync" : false, - "httpCache" : false, - "httpResponseBodyType" : "JSON" + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "7816d446-6d51-45cd-bbc5-38c556de009a", + "code" : "P1735107183174", + "name" : "规则集结果", + "description" : null, + "valueType" : "io.sc.engine.rule.core.RuleSetResult", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "RULE_SET", + "id" : "a4898292-15ba-48e6-b88c-e959c9b4e4ca", + "description" : null, + "order" : 1, + "enable" : true, + "ruleSet" : "[{\"category\":\"财务预警\",\"level\":1,\"code\":\"R001\",\"name\":\"资产负债率过高\",\"condition\":\"${P1735107156281}>0.3\",\"value\":\"${P1735107156281}\",\"message\":\"资产负债率: ${P1735107156281}, 大于 0.3\"},{\"category\":\"财务预警\",\"level\":1,\"code\":\"R002\",\"name\":\"净利润率过高\",\"condition\":\"${P1735107167213}>0.3\",\"value\":\"${P1735107167213}\",\"message\":\"净利润率: ${P1735107167213}, 大于 0.3\"}]" + } ] } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" + }, + "effectiveDate" : null, + "imports" : "" + } ], + "testCases" : null }, { "type" : "FOLDER", - "id" : "4094a390-a836-44fa-93ab-122df0025457", - "code" : "M1744084117959", - "name" : "定性补录", + "id" : "c691ff86-9885-4bff-8508-5ffe2bd8e44b", + "code" : "M1735112431292", + "name" : "决策树", "description" : null, "version" : null, "status" : null, "children" : [ { "type" : "MODEL", - "id" : "e94af8f4-e6d0-4e4d-8860-7f48d6fa4961", - "code" : "M1744084138259", - "name" : "定性补录", + "id" : "7e38c2b9-f422-4242-8375-d2ff19a33487", + "code" : "M1734945262105", + "name" : "012-决策树-表达式", "description" : null, "version" : 1, "status" : "SKETCH", "children" : null, - "testCases" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "075599ae-3e49-4972-882e-e729445bb26f", + "name" : "012-决策树-表达式", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:13", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "3d53030e-7cf6-4b55-9f41-a02360f4163c", + "code" : "P1734945300667", + "inputValue" : "P001", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "bbf97006-4bb2-4170-9e99-4cf2bb98901d", + "code" : "P1734945341150", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "个人按揭房贷", + "resultValue" : "个人按揭房贷", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "bf901943-9c60-4a17-90f7-c388151b0898", + "code" : "M1734945262105", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], "model" : { - "id" : "8a9d08cd-e9bf-40ff-9de4-ffaf162e572f", - "code" : "M1744084138259", - "name" : "定性补录", + "id" : "ca217d7c-8570-4e20-9bb9-e92e5ae449fd", + "code" : "M1734945262105", + "name" : "012-决策树-表达式", "description" : null, "enable" : true, "order" : 0, @@ -3157,139 +4550,215 @@ "executeMode" : "DOWN_UP", "children" : null, "parameters" : [ { - "type" : "IN_OPTION", - "id" : "cdae6731-2e50-412a-8788-6010dcfcdc26", - "code" : "P1744084165680", - "name" : "经营区域多元化", + "type" : "IN", + "id" : "5b545e7a-cd27-40ae-89e3-f2cdfb557f1b", + "code" : "P1734945300667", + "name" : "产品代码", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : 2, "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, - "defaultValue" : null, + "defaultValue" : "", "order" : 1, "validators" : null, - "processors" : null, - "options" : [ { - "id" : "0de6f927-9d89-4c6c-a3c3-1efdda4278c4", - "inputValue" : "0", - "value" : "100", - "title" : "产品或服务销售范围大于8个(含)地级市。", + "processors" : null + }, { + "type" : "OUT", + "id" : "347f8f0c-674d-46c2-aab3-c5d182fb368f", + "code" : "P1734945341150", + "name" : "模型名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "DECISION_TREE", + "id" : "50107674-ca23-4bc8-983c-cfe087ec824a", "description" : null, "order" : 1, - "config" : null - }, { - "id" : "3b00238d-ecb3-4abe-9e39-2d83e4c57cbf", - "inputValue" : "1", - "value" : "67", - "title" : "产品或服务销售范围在4至7个地级市范围内。", - "description" : null, - "order" : 2, - "config" : null - }, { - "id" : "e7a5bb40-b058-4306-b069-e54dd3f56f40", - "inputValue" : "2", - "value" : "33", - "title" : "产品或服务销售范围在2至3个地级市范围内。", - "description" : null, - "order" : 3, - "config" : null - }, { - "id" : "f4a5d669-adbc-4fc2-8a9b-adaabe4da9a0", - "inputValue" : "3", - "value" : "0", - "title" : "产品或服务销售范围在1个地级市以内。", - "description" : null, - "order" : 4, - "config" : null - } ], - "additons" : [ { - "id" : "b59bc2da-fb07-40de-9f9c-73987b5c35b8", - "code" : "countOfRange", - "name" : "产品或服务销售范围的地级市个数", + "enable" : true, + "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" + } ] + } ] + }, + "effectiveDate" : null, + "imports" : "" + }, { + "type" : "MODEL", + "id" : "ec64dd47-0f72-44ed-ba41-09184b036ece", + "code" : "M1734948767843", + "name" : "012-决策树-表达式和指令集", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : [ { + "type" : "MODEL", + "id" : "bc45c0d2-8cfd-4eba-b245-68d8dc4b635c", + "name" : "012-决策树-表达式和指令集", + "description" : null, + "lastTestDate" : "2025-04-23 16:58:14", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "31e1b3ba-2c8b-4789-a6f5-f7660d5eba9e", + "code" : "P1734948861687", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "正在调用: 个人按揭房贷...", + "resultValue" : "正在调用: 个人按揭房贷...", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "368fc6fa-05a4-4785-a75a-7e8d36a2c0a9", + "code" : "M1734948767843", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "48032f6b-705c-4a02-a02e-c73dcb39bf80", + "code" : "P1734948852205", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "个人按揭房贷", + "resultValue" : "个人按揭房贷", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "b282fe5f-e704-4f38-be32-1655a9b13624", + "code" : "P1734948825827", + "inputValue" : "P001", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + } ] + } ], + "model" : { + "id" : "63e8d295-5554-4b4f-84dc-513e4cbecd00", + "code" : "M1734948767843", + "name" : "012-决策树-表达式和指令集", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "b7155b8b-4138-430c-b0d3-265fcbf06f7c", + "code" : "P1734948825827", + "name" : "产品代码", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "984247c5-41d2-4f64-8680-906b90753566", + "code" : "P1734948852205", + "name" : "模型名称", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "DECISION_TREE", + "id" : "bd6ed44a-5f0e-4ec3-add4-5c9ebb37797d", "description" : null, - "componentType" : "INTEGER", - "condition" : "${经营区域多元化}==0 || ${经营区域多元化}==1", - "enable" : true, "order" : 1, - "rows" : 3, - "prompt" : "3", - "attachmentExtendNames" : "*.pdf", - "attachmentMaxCount" : 1 + "enable" : true, + "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" } ] + }, { + "type" : "OUT", + "id" : "55b5a30c-424b-4160-95e5-f471d526ac0c", + "code" : "P1734948861687", + "name" : "模型描述", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : null } ] }, "effectiveDate" : null, "imports" : "" - } ], - "testCases" : null - }, { - "type" : "FOLDER", - "id" : "25730b21-fda6-479e-aa0e-bdc9dee57806", - "code" : "M1735010567256", - "name" : "冠军挑战者模型", - "description" : null, - "version" : null, - "status" : null, - "children" : [ { + }, { "type" : "MODEL", - "id" : "ddd6c031-d30d-4dd6-96a9-376099751389", - "code" : "M1735010656623", - "name" : "个人消费模型-冠军", + "id" : "296935a1-498b-40dc-8078-5447eb6f7d7d", + "code" : "M1735003893514", + "name" : "012-决策树-模型摘要", "description" : null, "version" : 1, "status" : "SKETCH", "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "f460bbb5-6788-4cf5-8b0e-5a9d27e7607d", - "name" : "个人消费模型-冠军", + "id" : "0c0b991e-3cb9-4a5f-819b-4bd32a4b5e3b", + "name" : "012-决策树-模型摘要", "description" : null, - "lastTestDate" : "2025-04-23 16:58:16", + "lastTestDate" : "2025-04-23 16:58:14", "testResult" : "PASSED", "parameters" : [ { - "id" : "2834891c-b9f0-4e85-b698-1752d4ff202a", - "code" : "M1735010656623", - "inputValue" : null, + "id" : "912649ee-051e-4443-ba12-50d51450ceb5", + "code" : "P1735003975296", + "inputValue" : "P001", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "48df8f23-0992-43f2-8cd0-20e44862e793", - "code" : "P1735011698621", - "inputValue" : "20000", + "id" : "9f89ac4b-46f6-49ff-85bd-099460ac516c", + "code" : "P1735004274553", + "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "{\n \"id\" : null,\n \"code\" : \"M1734945262105\",\n \"name\" : null,\n \"version\" : 1,\n \"status\" : null,\n \"effectiveDate\" : null\n}", + "resultValue" : "{\n \"id\" : null,\n \"code\" : \"M1734945262105\",\n \"name\" : null,\n \"version\" : 1,\n \"status\" : null,\n \"effectiveDate\" : null\n}", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "5746c16e-2145-400a-a1ef-8810c14165dd", - "code" : "P1735011685888", - "inputValue" : "30", + "id" : "ff029dc7-49cf-42d1-aa6d-2d2353a25538", + "code" : "M1735003893514", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false - }, { - "id" : "f3cfa264-3908-4284-9541-d870115606a1", - "code" : "P1735011716680", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "11000", - "resultValue" : "11000.00", - "testResult" : "PASSED", - "skipCheck" : false } ] } ], "model" : { - "id" : "ffd3bec1-3721-4d1d-9fd3-f4ec5425f9ed", - "code" : "M1735010656623", - "name" : "个人消费模型-冠军", + "id" : "0fa04ce4-b765-41ba-bbc7-f5085d071a2d", + "code" : "M1735003893514", + "name" : "012-决策树-模型摘要", "description" : null, "enable" : true, "order" : 0, @@ -3298,11 +4767,11 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "7e18367b-7195-40a6-a216-29748f0081af", - "code" : "P1735011685888", - "name" : "年龄", + "id" : "805a9a13-8154-4eb0-9d68-924bb93c3757", + "code" : "P1735003975296", + "name" : "产品代码", "description" : null, - "valueType" : "java.lang.Long", + "valueType" : "java.lang.String", "valueTypeVersion" : null, "valueScale" : 2, "valueRoundingMode" : "HALF_UP", @@ -3311,736 +4780,987 @@ "order" : 1, "validators" : null, "processors" : null - }, { - "type" : "IN", - "id" : "cd2ed513-04a1-4af7-8911-d46287b8c0fd", - "code" : "P1735011698621", - "name" : "申请额度", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : null }, { "type" : "OUT", - "id" : "311415a7-1675-49d6-9bb7-c37d4ceb43ec", - "code" : "P1735011716680", - "name" : "批准额度", + "id" : "5f26ce74-d1a7-4a1b-9adf-a477b2b65f88", + "code" : "P1735004274553", + "name" : "资源摘要", "description" : null, - "valueType" : "java.math.BigDecimal", + "valueType" : "io.sc.engine.rule.core.ResourceAbstract", "valueTypeVersion" : null, "valueScale" : 2, "valueRoundingMode" : "HALF_UP", "valueTypeIsList" : false, "defaultValue" : "", - "order" : 3, + "order" : 2, "validators" : null, "processors" : [ { - "type" : "CONDITION_RANGE", - "id" : "940c7e14-3775-49bf-9c57-96e8255372a4", + "type" : "DECISION_TREE", + "id" : "87a679aa-8ef2-478b-9be4-997ba6d28af3", "description" : null, "order" : 1, "enable" : true, - "conditionRange" : "[{\"condition\":\"${P1735011685888}<18\",\"value\":\"0\"},{\"condition\":\"${P1735011685888}>=18 && ${P1735011685888}<30\",\"value\":\"${P1735011698621} * 0.5\"},{\"condition\":\"${P1735011685888}>=30 && ${P1735011685888}<40\",\"value\":\"${P1735011698621} * 0.55\"},{\"condition\":\"${P1735011685888}>=40 && ${P1735011685888}<50\",\"value\":\"${P1735011698621} * 0.6\"},{\"condition\":\"${P1735011685888}>=50 && ${P1735011685888}<65\",\"value\":\"${P1735011698621} * 0.4\"},{\"condition\":\"${P1735011685888}>=65\",\"value\":\"${P1735011698621} * 0.3\"}]" + "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" } ] } ] }, "effectiveDate" : null, "imports" : "" - }, { + } ], + "testCases" : null + }, { + "type" : "FOLDER", + "id" : "0b79b0f3-73cd-47f9-b56e-673c03e4feb3", + "code" : "M1750735234699", + "name" : "内置函数", + "description" : null, + "version" : null, + "status" : null, + "children" : [ { "type" : "MODEL", - "id" : "2aca2127-0d81-4492-a9d2-887178ed07d2", - "code" : "M1735011500970", - "name" : "个人消费模型-挑战者", + "id" : "df949b5f-008d-4ccf-9308-8899fd1a2aa7", + "code" : "M1750735283102", + "name" : "内置函数", "description" : null, "version" : 1, "status" : "SKETCH", "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "9f06c1fe-e72c-4009-a827-9b58860cb37c", - "name" : "个人消费模型-挑战者", + "id" : "d2874bae-99ea-4786-8e4b-68afd727c650", + "name" : "测试", "description" : null, - "lastTestDate" : "2025-04-23 16:58:15", - "testResult" : "PASSED", + "lastTestDate" : "2025-06-24 12:45:44", + "testResult" : "UN_PASSED", "parameters" : [ { - "id" : "92e73f98-3491-4c3b-848f-5b3b3748934d", - "code" : "P1735011698621", - "inputValue" : "20000", + "id" : "053c7b91-663d-48e9-9074-3c69caf1e9ef", + "code" : "M1750739497730", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "075322cc-8b86-4743-8a4c-a04c6bd85413", + "code" : "M1750739430668", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "0c133ef0-f622-463d-887f-0cd11af51b92", + "code" : "P1750735971647", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "2.25", + "resultValue" : "2.25", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "0ca3636e-e2f9-4a41-b5d8-ca2757ebfed7", + "code" : "P1750739718372", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "true", + "resultValue" : "true", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "0ffdb97e-d8bd-4a31-bd2b-003277fbbc74", + "code" : "M1750735283102", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "1a892dfe-1405-4e71-8e0b-15929a1b573c", + "code" : "P1750735419104", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "15129", + "resultValue" : "15129", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "1ca3903c-c51e-4878-a636-575c3d1a86b1", + "code" : "P1750740171867", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "el", + "resultValue" : "el", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "2677013b-595d-4f58-b097-b5896fd2cfec", + "code" : "P1750739790699", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "Hello World! - Hello World!", + "resultValue" : "Hello World! - Hello World!", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "26b068c3-7ca6-439d-99c6-4d502181f5fd", + "code" : "M1750740078340", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "32b70be7-1538-49f4-97e1-bc7b1dfa9785", + "code" : "P1750740274679", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "Hello man!", + "resultValue" : "Hello man!", + "testResult" : "UN_PASSED", + "skipCheck" : false + }, { + "id" : "3eb43665-dba6-47ec-b86d-825636a52216", + "code" : "P1750735725452", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "1.000000000000010", + "resultValue" : "1.000000000000010", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "40cbed42-a0eb-409f-9f25-4a0b05fa1b8f", + "code" : "M1750738822786", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "482ada9a-88b0-4ce5-8b80-8c9a49deeed5", + "code" : "P1750739646818", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "true", + "resultValue" : "true", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "493f7ebe-795a-4bf8-904c-e4ff392a812c", + "code" : "M1750735358702", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "5298a6ee-947e-4ec2-b559-395dbb535838", + "code" : "P1750735397457", + "inputValue" : "123", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "5422701c-917c-421a-a818-c39dea5a80af", + "code" : "P1750739510280", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "hello world!", + "resultValue" : "hello world!", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "59d2c1fa-6410-4ea7-9a0f-c8435fc5d3b9", + "code" : "P1750740090302", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "Hello World!", + "resultValue" : "Hello World!", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "640eb261-662b-4f92-aae6-9a8665b955c2", + "code" : "P1750738906912", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "12", + "resultValue" : "12", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "6b5b741e-53a1-47fe-91f7-d558c9c1133c", + "code" : "P1750739563645", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "true", + "resultValue" : "true", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "71f1d30e-9620-4b57-b9e2-b282945114fa", + "code" : "M1750739706174", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "72f00afa-c7d3-43b3-9cdd-fb4671bc4c24", + "code" : "P1750735700047", + "inputValue" : "1.000000000000005", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "7e0d8e73-50eb-4297-b7ca-35f15afe3017", + "code" : "P1750739142775", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "Hello World!", + "resultValue" : "Hello World!", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "969870dd-577a-4800-bea4-6aa04e73d02b", + "code" : "M1750739772891", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "98d95ca7-d9d7-45ab-b614-1f2728ad5a44", + "code" : "M1750740263295", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "bec2d709-4fcf-4439-b39d-93dab094a2dd", - "code" : "P1735011716680", + "id" : "9d30b379-d399-4f05-9855-1b2ee02c2be4", + "code" : "M1750738810758", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "9000", - "resultValue" : "9000.00", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "a26d0bca-b062-4ddd-bc5e-78623091a9e9", + "code" : "P1750738882377", + "inputValue" : "Hello World!", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "aeaaeb23-5f16-4bc1-9d9f-d6b880760374", + "code" : "P1750739443342", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "HELLO WORLD!", + "resultValue" : "HELLO WORLD!", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "d2769308-2ce4-41b2-a42c-34417ca0cff7", - "code" : "P1735011685888", - "inputValue" : "30", + "id" : "beb28fb0-d39a-47b9-8ce1-f34496bfed13", + "code" : "M1750738862819", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "ed4e05a2-481e-49fa-ab8f-237e995e4571", - "code" : "M1735011500970", + "id" : "cefb9b6f-0dcd-4813-8996-5028ca55a41a", + "code" : "M1750739550294", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false - } ] - } ], - "model" : { - "id" : "829ce46c-ce5a-4c30-af81-f4e4afaf3996", - "code" : "M1735011500970", - "name" : "个人消费模型-挑战者", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "61e3996b-fe07-4690-801e-6994491cd18b", - "code" : "P1735011685888", - "name" : "年龄", - "description" : null, - "valueType" : "java.lang.Long", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null }, { - "type" : "IN", - "id" : "bef1e21e-61ad-4434-b637-b6de36e0a108", - "code" : "P1735011698621", - "name" : "申请额度", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : null + "id" : "d005d2d0-377e-4e7f-8e13-419cfba82647", + "code" : "P1750735944778", + "inputValue" : "1.5", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false }, { - "type" : "OUT", - "id" : "55240ce9-f14b-4608-ac65-ba0039a375d6", - "code" : "P1735011716680", - "name" : "批准额度", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 3, - "validators" : null, - "processors" : [ { - "type" : "CONDITION_RANGE", - "id" : "2c2f7a7e-ae82-4a99-a76d-f67607661adf", - "description" : null, - "order" : 1, - "enable" : true, - "conditionRange" : "[{\"condition\":\"${P1735011685888}<18\",\"value\":\"0\"},{\"condition\":\"${P1735011685888}>=18 && ${P1735011685888}<30\",\"value\":\"${P1735011698621} * 0.4\"},{\"condition\":\"${P1735011685888}>=30 && ${P1735011685888}<40\",\"value\":\"${P1735011698621} * 0.45\"},{\"condition\":\"${P1735011685888}>=40 && ${P1735011685888}<50\",\"value\":\"${P1735011698621} * 0.5\"},{\"condition\":\"${P1735011685888}>=50 && ${P1735011685888}<65\",\"value\":\"${P1735011698621} * 0.3\"},{\"condition\":\"${P1735011685888}>=65\",\"value\":\"${P1735011698621} * 0.2\"}]" - } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" - } ], - "testCases" : null - }, { - "type" : "FOLDER", - "id" : "9360b988-b7e4-41c3-a1a6-75de35c28457", - "code" : "M1735112628652", - "name" : "规则", - "description" : null, - "version" : null, - "status" : null, - "children" : [ { - "type" : "MODEL", - "id" : "0b5e3cd4-6263-483b-b7d7-42d4a8eedd1f", - "code" : "M1735093875900", - "name" : "018-规则-单规则", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "0c3231d6-e197-4e60-9a4d-1b49704063be", - "name" : "018-规则-单规则", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:12", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "02e38a30-820f-4620-9898-af8b1b54da74", - "code" : "P1735105245762", - "inputValue" : "0.05", + "id" : "d27c96bc-ac33-4195-b37d-70f6aa5be55e", + "code" : "M1750739636098", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "0ae51f6e-3a82-45ad-8de0-ac89fd7902ee", - "code" : "P1735093943459", + "id" : "d884969d-3676-49f3-8982-9ff83bf9406b", + "code" : "P1750735885000", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "{\n \"triggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n}", - "resultValue" : "{\n \"triggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n}", + "expectValue" : "1", + "resultValue" : "1", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "37581330-8366-4d1b-81b0-11b3b3cb83fc", - "code" : "P1735105227495", - "inputValue" : "0.4", + "id" : "d966febb-e556-406a-be93-a30dd6e238e5", + "code" : "M1750739110959", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "448a21bb-bb66-43f9-b8ce-4b237470f168", - "code" : "M1735093875900", + "id" : "dc237317-6029-4991-af4f-ede22aa94d41", + "code" : "P1750735567508", "inputValue" : null, "inputValueValidateMessage" : null, + "expectValue" : "12.25", + "resultValue" : "12.25", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "e1693d87-39f5-470f-9c71-c4ae116592e9", + "code" : "P1750735551386", + "inputValue" : "3.5", + "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "ffec2547-1683-406a-aa79-fe3706d2b6fa", + "code" : "P1750740141319", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "ello World!", + "resultValue" : "ello World!", + "testResult" : "PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "0080c895-5891-4bcd-ad2c-cc7ac7e8dd77", - "code" : "M1735093875900", - "name" : "018-规则-单规则", + "id" : "2a845b29-a8e3-4b8b-9242-cd47911923ea", + "code" : "M1750735283102", + "name" : "内置函数", "description" : null, "enable" : true, "order" : 0, "category" : "OTHER", "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "eb69ba99-4e46-4027-a467-a9f49abd3e8c", - "code" : "P1735105227495", - "name" : "资产负债率", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "IN", - "id" : "a843141a-84cd-41fa-bfb9-bca709b1ed11", - "code" : "P1735105245762", - "name" : "净利润率", + "children" : [ { + "id" : "4741b63a-3432-4df8-bd54-e8955e10e440", + "code" : "M1750738810758", + "name" : "数值函数", "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", + "enable" : true, "order" : 2, - "validators" : null, - "processors" : null + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "0dbb27d3-03da-4dbe-8221-2595a1ebb904", + "code" : "M1750735358702", + "name" : "平方", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "c5bb92f0-eddb-4d6d-8574-42467e6c1e84", + "code" : "P1750735397457", + "name" : "整数_平方输入值", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "34b6decc-806f-4c7d-b6bc-0eb0ef6c452d", + "code" : "P1750735419104", + "name" : "整数_平方结果值", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "b631d9e8-3409-4716-a539-7aa1cc871cd0", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "square(${P1750735397457})" + } ] + }, { + "type" : "IN", + "id" : "1b930a14-945d-489f-8466-4e3fc59d41cf", + "code" : "P1750735551386", + "name" : "小数_平方输入值", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "005705f5-fa7d-4fbc-9f10-6e8946e674de", + "code" : "P1750735567508", + "name" : "小数_平方结果值", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 4, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "a00e5afa-133b-4bdc-8393-c836a4c34501", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "square(${P1750735551386})" + } ] + }, { + "type" : "IN", + "id" : "c53961d6-b4dd-45db-b458-eb2440963c88", + "code" : "P1750735700047", + "name" : "小数高精度_平方输入值", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 15, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 5, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "474982f3-5409-40ff-823e-7518bf4b6514", + "code" : "P1750735725452", + "name" : "小数高精度_平方结果值", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 15, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 6, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "d456833e-646b-4c41-86fe-4409e6d9671a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "square(${P1750735700047},15)" + } ] + }, { + "type" : "OUT", + "id" : "b0ff0ea2-4ed9-4752-b04b-eeb7d0fff1e6", + "code" : "P1750735885000", + "name" : "小数高精度_平方结果值_整数", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 7, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "3e6f6362-2962-4e4a-8094-11dec92ebc5a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "square(${P1750735700047},15)" + } ] + }, { + "type" : "IN", + "id" : "4805c2e7-6f81-4982-88ff-7dc06f37e725", + "code" : "P1750735944778", + "name" : "浮点数_平方输入值", + "description" : null, + "valueType" : "java.lang.Float", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 8, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "1f5c78a6-f625-4c1a-99e8-d036f470e1c6", + "code" : "P1750735971647", + "name" : "浮点数_平方结果值", + "description" : null, + "valueType" : "java.lang.Float", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 9, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "ef6b432b-0db4-4d30-ae19-caf921f344c5", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "square(${P1750735944778},15)" + } ] + } ] + } ], + "parameters" : null }, { - "type" : "OUT", - "id" : "e9ecf745-7a31-418a-b5c3-960a156497ec", - "code" : "P1735093943459", - "name" : "预警结果", + "id" : "07b87662-08bf-4c02-8550-c9e9d36b2b96", + "code" : "M1750738822786", + "name" : "字符串函数", "description" : null, - "valueType" : "io.sc.engine.rule.core.SingleRuleResult", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", + "enable" : true, "order" : 3, - "validators" : null, - "processors" : [ { - "type" : "SINGLE_RULE", - "id" : "6470c625-a0c2-4bc3-919b-3cff707e5eba", + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "dd263613-cb3d-495d-91c8-178670e8b5ff", + "code" : "M1750738862819", + "name" : "length", "description" : null, + "enable" : true, "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "04733cbe-fe04-4431-9417-cc4a0c148898", + "code" : "P1750738906912", + "name" : "length结果值", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "4784c303-5966-4bae-a106-39765c6ca76d", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "length(${P1750738882377})" + } ] + } ] + }, { + "id" : "a75e0777-e3d5-4b48-b213-4b25e29d571d", + "code" : "M1750739110959", + "name" : "trim", + "description" : null, "enable" : true, - "singleRule" : "[{\"level\":2,\"category\":\"财务预警\",\"condition\":\"${P1735105245762}<0.1\",\"value\":\"${P1735105245762}\",\"message\":\"净利润率: ${P1735105245762}, 小于 0.1\"},{\"level\":1,\"category\":\"财务预警\",\"condition\":\"${P1735105227495}>0.3\",\"value\":\"${P1735105227495}\",\"message\":\"资产负债率: ${P1735105227495}, 大于 0.3\"}]" - } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" - }, { - "type" : "MODEL", - "id" : "d09b6d2e-20c2-4c85-9486-ce2a05a79220", - "code" : "M1735107133222", - "name" : "018-规则-规则集", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "4969c202-0484-4465-892c-94a8ea828166", - "name" : "018-规则-规则集", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:13", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "331fd2bd-9d2a-4d11-bfa6-0c7dcec6a0b8", - "code" : "P1735107183174", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "{\n \"triggered\" : true,\n \"level\" : 1,\n \"rules\" : [ {\n \"isTriggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R001\",\n \"name\" : \"资产负债率过高\",\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n }, {\n \"isTriggered\" : false,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R002\",\n \"name\" : \"净利润率过高\",\n \"value\" : \"0.05\",\n \"message\" : \"净利润率: 0.05, 大于 0.3\"\n } ]\n}", - "resultValue" : "{\n \"triggered\" : true,\n \"level\" : 1,\n \"rules\" : [ {\n \"isTriggered\" : true,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R001\",\n \"name\" : \"资产负债率过高\",\n \"value\" : \"0.4\",\n \"message\" : \"资产负债率: 0.4, 大于 0.3\"\n }, {\n \"isTriggered\" : false,\n \"category\" : \"财务预警\",\n \"level\" : 1,\n \"code\" : \"R002\",\n \"name\" : \"净利润率过高\",\n \"value\" : \"0.05\",\n \"message\" : \"净利润率: 0.05, 大于 0.3\"\n } ]\n}", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "3979caec-9536-4818-8f88-c08f143208d3", - "code" : "M1735107133222", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "4a6a53b9-8336-40b4-a66e-afc34fc74b1a", - "code" : "P1735107156281", - "inputValue" : "0.4", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "834a2ca6-37ea-4a68-a0ca-a93107cc839f", - "code" : "P1735107167213", - "inputValue" : "0.05", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "1a0effa8-7810-4b4d-8b91-3ee54e2fa1c3", - "code" : "M1735107133222", - "name" : "018-规则-规则集", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "cbd5a4e3-5dc1-48d3-b3a4-5a9153fa2152", - "code" : "P1735107156281", - "name" : "资产负债率", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "IN", - "id" : "1531efd0-bf00-4f00-9f27-a7a7dbf38070", - "code" : "P1735107167213", - "name" : "净利润率", - "description" : null, - "valueType" : "java.math.BigDecimal", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "0f9896f8-4a99-4ef1-8c8f-d3d789f7c09d", - "code" : "P1735107183174", - "name" : "规则集结果", - "description" : null, - "valueType" : "io.sc.engine.rule.core.RuleSetResult", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 3, - "validators" : null, - "processors" : [ { - "type" : "RULE_SET", - "id" : "84bb8965-f0c8-45d1-a1c0-a9d89b9cb442", + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "90f9b481-64cc-4ca4-ba5b-2d4d89f4f67c", + "code" : "P1750739142775", + "name" : "trim结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "9b7ca386-7249-4350-8bcc-43297152683a", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`trim(${P1750738882377})`" + } ] + } ] + }, { + "id" : "87581896-84bb-410c-9b0b-101986932cfd", + "code" : "M1750739430668", + "name" : "upperCase", + "description" : null, + "enable" : true, + "order" : 3, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "dacdf709-75d0-458e-8198-0ac124d8072d", + "code" : "P1750739443342", + "name" : "upperCase结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "8fe16432-62f4-4369-b4b9-e4c4d806cfb7", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`upperCase(${P1750738882377})`" + } ] + } ] + }, { + "id" : "8b3b42bb-f648-4dd0-8b35-4b07339be679", + "code" : "M1750739497730", + "name" : "lowerCase", + "description" : null, + "enable" : true, + "order" : 4, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "17cc18ee-34d2-41e8-81ea-659c0014e122", + "code" : "P1750739510280", + "name" : "lowerCase结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "4dca11cd-6c3b-4e26-ac2c-0bb1daae7578", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`lowerCase(${P1750738882377})`" + } ] + } ] + }, { + "id" : "3f1080df-b645-47db-b9f9-5869def557aa", + "code" : "M1750739550294", + "name" : "contains", + "description" : null, + "enable" : true, + "order" : 5, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "eb02d425-7812-4fd9-aa04-559ed721d0ec", + "code" : "P1750739563645", + "name" : "contains结果值", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "d52d23ea-6cfb-4ea1-8698-a4c36341d446", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "contains(${P1750738882377},\"Hello\")" + } ] + } ] + }, { + "id" : "3f422e3c-9591-4efb-8494-25466ef9710f", + "code" : "M1750739636098", + "name" : "startsWith", "description" : null, - "order" : 1, "enable" : true, - "ruleSet" : "[{\"category\":\"财务预警\",\"level\":1,\"code\":\"R001\",\"name\":\"资产负债率过高\",\"condition\":\"${P1735107156281}>0.3\",\"value\":\"${P1735107156281}\",\"message\":\"资产负债率: ${P1735107156281}, 大于 0.3\"},{\"category\":\"财务预警\",\"level\":1,\"code\":\"R002\",\"name\":\"净利润率过高\",\"condition\":\"${P1735107167213}>0.3\",\"value\":\"${P1735107167213}\",\"message\":\"净利润率: ${P1735107167213}, 大于 0.3\"}]" - } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" - } ], - "testCases" : null - }, { - "type" : "FOLDER", - "id" : "623ef5d2-6809-49bb-8446-f974e9f61898", - "code" : "M1735112431292", - "name" : "决策树", - "description" : null, - "version" : null, - "status" : null, - "children" : [ { - "type" : "MODEL", - "id" : "681fd921-2919-4be3-aa2b-c8828fd19532", - "code" : "M1734945262105", - "name" : "012-决策树-表达式", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "23ecf04a-5043-4a7d-b1d9-bb20b674a083", - "name" : "012-决策树-表达式", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:13", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "1e713f58-8b48-4fa3-8b5f-aff5d90eeb51", - "code" : "M1734945262105", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "735bdb2c-b2f7-4d92-a7d5-2b26fb9d09d7", - "code" : "P1734945341150", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "个人按揭房贷", - "resultValue" : "个人按揭房贷", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "bda31288-664b-44e7-b0c4-b78cb4ded498", - "code" : "P1734945300667", - "inputValue" : "P001", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "3791845a-5c8a-48ac-899a-8a5fbf7deb87", - "code" : "M1734945262105", - "name" : "012-决策树-表达式", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "1b7cd502-2628-4048-8056-cd0ed68eba96", - "code" : "P1734945300667", - "name" : "产品代码", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "458ff470-06ca-4140-9335-66764f778f58", - "code" : "P1734945341150", - "name" : "模型名称", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "DECISION_TREE", - "id" : "920bf502-8cc4-4d30-aa69-bc4888c768db", + "order" : 6, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "d7653d34-eb22-420a-87e9-c2e7aef0adb3", + "code" : "P1750739646818", + "name" : "startsWith结果值", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "aadf47f5-7d1e-47f4-93bf-c6a8c5518704", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "startsWith(${P1750738882377},\"H\")" + } ] + } ] + }, { + "id" : "b604768e-9fb8-4c0a-bf30-235df9f8e707", + "code" : "M1750739706174", + "name" : "endsWith", "description" : null, - "order" : 1, "enable" : true, - "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" - } ] - } ] - }, - "effectiveDate" : null, - "imports" : "" - }, { - "type" : "MODEL", - "id" : "0f04ad00-92ab-4749-b3df-2f59e658ac4b", - "code" : "M1734948767843", - "name" : "012-决策树-表达式和指令集", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "79a87a46-0400-4b80-8ff7-cad443122dd7", - "name" : "012-决策树-表达式和指令集", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:14", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "22d27bf8-2fee-4d64-9797-aedf031d0a9e", - "code" : "P1734948852205", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "个人按揭房贷", - "resultValue" : "个人按揭房贷", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "69400d4a-b643-4269-ba84-a811c3df61c9", - "code" : "P1734948825827", - "inputValue" : "P001", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "82031b7f-5397-4f62-a465-f2323389c858", - "code" : "P1734948861687", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "正在调用: 个人按揭房贷...", - "resultValue" : "正在调用: 个人按揭房贷...", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "f9149961-a30b-4ca4-bf45-896e27022276", - "code" : "M1734948767843", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "f27f0838-486d-4889-b038-6f0af499749e", - "code" : "M1734948767843", - "name" : "012-决策树-表达式和指令集", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "c025d4e3-deae-48bc-8328-d414af90dcac", - "code" : "P1734948825827", - "name" : "产品代码", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "a60d289c-0193-4723-bcb2-2515ad6a75bd", - "code" : "P1734948852205", - "name" : "模型名称", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "DECISION_TREE", - "id" : "faf33876-6757-4528-837e-da2e6720c1dc", + "order" : 7, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "dae170fe-441d-48e7-b1af-b054770a3252", + "code" : "P1750739718372", + "name" : "endsWith结果值", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "1f110ce9-59f5-4ed0-9ab4-7fa60855d049", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "endsWith(${P1750738882377},\"!\")" + } ] + } ] + }, { + "id" : "c2d78580-740c-49d9-87eb-23a6e6e0b1ee", + "code" : "M1750739772891", + "name" : "join", + "description" : null, + "enable" : true, + "order" : 8, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "0c6c839f-4eca-41d5-b7d7-0f21dd6a48d5", + "code" : "P1750739790699", + "name" : "join结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "682ffd67-7401-45d8-ba75-2a93871a32d8", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`join(\" - \", ${P1750738882377}, ${P1750738882377})`" + } ] + } ] + }, { + "id" : "bc5e80c7-3e21-4ba7-8093-2adebb7ae2a1", + "code" : "M1750740078340", + "name" : "substring", "description" : null, - "order" : 1, "enable" : true, - "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" - } ] - }, { - "type" : "OUT", - "id" : "a51befa4-39cd-420f-9753-16ee2eab3e45", - "code" : "P1734948861687", - "name" : "模型描述", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 3, - "validators" : null, - "processors" : null - } ] - }, - "effectiveDate" : null, - "imports" : "" - }, { - "type" : "MODEL", - "id" : "d240df9a-e8b0-44e2-be57-1c4e65f4ebf7", - "code" : "M1735003893514", - "name" : "012-决策树-模型摘要", - "description" : null, - "version" : 1, - "status" : "SKETCH", - "children" : null, - "testCases" : [ { - "type" : "MODEL", - "id" : "6f987ab5-9605-4e62-84f2-4c514d602fcf", - "name" : "012-决策树-模型摘要", - "description" : null, - "lastTestDate" : "2025-04-23 16:58:14", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "208ec241-132d-40e8-b23c-ab2962bb46ef", - "code" : "P1735004274553", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "{\n \"id\" : null,\n \"code\" : \"M1734945262105\",\n \"name\" : null,\n \"version\" : 1,\n \"status\" : null,\n \"effectiveDate\" : null\n}", - "resultValue" : "{\n \"id\" : null,\n \"code\" : \"M1734945262105\",\n \"name\" : null,\n \"version\" : 1,\n \"status\" : null,\n \"effectiveDate\" : null\n}", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "6e57145a-d070-4592-8a3a-69439bf16c69", - "code" : "P1735003975296", - "inputValue" : "P001", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "bb4c9b84-a625-4932-911f-0fb3ada5f119", - "code" : "M1735003893514", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - } ] - } ], - "model" : { - "id" : "02dcb8db-2f1a-4728-a473-52113a497b9e", - "code" : "M1735003893514", - "name" : "012-决策树-模型摘要", - "description" : null, - "enable" : true, - "order" : 0, - "category" : "OTHER", - "executeMode" : "DOWN_UP", - "children" : null, - "parameters" : [ { - "type" : "IN", - "id" : "8026f28d-34cc-4e76-b959-b6ca30463398", - "code" : "P1735003975296", - "name" : "产品代码", - "description" : null, - "valueType" : "java.lang.String", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 1, - "validators" : null, - "processors" : null - }, { - "type" : "OUT", - "id" : "d2625fdd-d622-4215-8e46-e861f151b1bb", - "code" : "P1735004274553", - "name" : "资源摘要", - "description" : null, - "valueType" : "io.sc.engine.rule.core.ResourceAbstract", - "valueTypeVersion" : null, - "valueScale" : 2, - "valueRoundingMode" : "HALF_UP", - "valueTypeIsList" : false, - "defaultValue" : "", - "order" : 2, - "validators" : null, - "processors" : [ { - "type" : "DECISION_TREE", - "id" : "20d3745d-7375-48de-a652-8d3fa2d9d6c6", + "order" : 9, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "6d2351ad-5b5f-450a-b8aa-2939955b1db3", + "code" : "P1750740090302", + "name" : "substring0结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "7eef31c6-592a-4384-a711-f6685bd17a23", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`substring(${P1750738882377},0)`" + } ] + }, { + "type" : "OUT", + "id" : "3f32e24d-c636-43b8-86fa-57742526afe4", + "code" : "P1750740141319", + "name" : "substring1结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "9d79614c-9390-453b-9883-cf695b9f5fab", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`substring(${P1750738882377},1)`" + } ] + }, { + "type" : "OUT", + "id" : "2f348b63-7dcc-44d0-8439-5ec691119a89", + "code" : "P1750740171867", + "name" : "substring1_3结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "6daab8ec-84c3-4fcb-b857-620bc06d048d", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`substring(${P1750738882377},1,3)`" + } ] + } ] + }, { + "id" : "64c7e076-2149-446c-872b-c13ae1bd99e3", + "code" : "M1750740263295", + "name" : "replace", "description" : null, - "order" : 1, "enable" : true, - "decisionTree" : "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" + "order" : 10, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "e4a029c8-06f6-4312-a9af-76da7d119695", + "code" : "P1750740274679", + "name" : "replace结果值", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "82f37748-ba09-4876-9e01-8280eb4cbaa1", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "`replace(${P1750738882377},\"World\",\"man\")`" + } ] + } ] + } ], + "parameters" : [ { + "type" : "IN", + "id" : "53ec2350-9b12-41fc-9fda-2baf0944402d", + "code" : "P1750738882377", + "name" : "字符串", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : null, + "order" : 1, + "validators" : null, + "processors" : null } ] - } ] + } ], + "parameters" : null }, "effectiveDate" : null, "imports" : "" @@ -4048,7 +5768,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "e273767a-32b1-4c72-bf1f-89cd4085ed13", + "id" : "0b2be79e-ad4f-4d6d-83e8-1663c8afd18a", "code" : "M1735521210008", "name" : "特征", "description" : null, @@ -4056,7 +5776,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "46bc6f13-c61c-47c6-8fcb-06fb06d6854a", + "id" : "f00d81e4-99ec-4c88-a885-f768fa029701", "code" : "M1735521220273", "name" : "特征", "description" : null, @@ -4065,22 +5785,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "14097ead-b6bb-4ce4-bd3d-e7f5b833a0dd", + "id" : "42d412ec-e112-421a-8aa7-ca16cb7207ea", "name" : "特征", "description" : null, "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "UN_PASSED", "parameters" : [ { - "id" : "2e79dfca-4dbd-4b71-b3ed-0f881ec07ca6", - "code" : "I1732074381040", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : "2019022208310062527930", - "testResult" : "UN_PASSED", - "skipCheck" : false - }, { - "id" : "5fa0d050-4711-4a6b-92e0-8b21a1469d1d", + "id" : "9145a120-8fad-49af-b875-0ab0bf7951f2", "code" : "I1732009101910", "inputValue" : "\n \n \n \n 2019022208310062527930\n 2019-02-22T08:31:00\n \n \n 011726400H0001\n 01\n \n \n 北京报告样本公司\n 1\n \n 30\n 686905719\n \n \n \n 0\n \n \n 6.88\n 2018-10\n \n \n \n \n \n \n 2012\n 2015\n 3\n 3\n 2956600\n 380000\n 401600\n 0\n 2438000\n 0\n 0\n \n \n 1\n 0\n 1\n 1\n 1\n \n \n \n \n \n \n 1\n 380000\n 2018-08-15\n 0\n 0\n \n 105000\n 100000\n 5000\n 12\n \n 1\n 1\n 1\n 1000000\n \n \n 1\n 0\n 1\n 1000000\n \n \n 2\n 1\n 1\n 225000\n \n \n 2\n 0\n 1\n 225000\n \n \n 3\n 1\n 1\n 500000\n \n \n 3\n 0\n 1\n 500000\n \n \n 4\n 1\n 1\n 450000\n \n \n 4\n 3\n 1\n 401600\n \n \n 4\n 0\n 2\n 851600\n \n \n 0\n 1\n 4\n 2175000\n \n \n 0\n 3\n 1\n 401600\n \n \n 0\n 0\n 5\n 2576600\n \n \n \n 0\n 0\n \n \n 0\n 0\n 13\n \n 1\n 3\n 1\n \n \n 1\n 0\n 2\n \n \n 2\n 2\n 1\n \n \n 2\n 3\n 1\n \n \n 2\n 0\n 2\n \n \n 3\n 1\n 2\n \n \n 3\n 0\n 2\n \n \n 4\n 1\n 2\n \n \n 4\n 0\n 2\n \n \n 0\n 1\n 4\n \n \n 0\n 2\n 1\n \n \n 0\n 3\n 2\n \n \n 0\n 0\n 8\n \n \n \n 12\n \n 2018-12\n 6\n 2956600\n 0\n 0\n 2\n 781600\n 0\n 0\n 0\n 0\n \n \n 2018-09\n 6\n 3680000\n 0\n 0\n 1\n 380000\n 0\n 0\n 0\n 0\n \n \n 2018-06\n 6\n 3900000\n 1\n 1000000\n 2\n 900000\n 0\n 0\n 0\n 0\n \n \n 2018-03\n 3\n 2050000\n 0\n 0\n 1\n 400000\n 0\n 0\n 0\n 0\n \n \n 2017-12\n 2\n 1650000\n 0\n 0\n 1\n 450000\n 0\n 0\n 0\n 0\n \n \n 2017-09\n 3\n 2650000\n 0\n 0\n 1\n 450000\n 0\n 0\n 0\n 0\n \n \n 2017-06\n 3\n 2650000\n 0\n 0\n 1\n 450000\n 0\n 0\n 0\n 0\n \n \n 2017-03\n 4\n 2900000\n 1\n 500000\n 1\n 200000\n 0\n 0\n 0\n 0\n \n \n 2016-12\n 3\n 1900000\n 1\n 500000\n 1\n 200000\n 0\n 0\n 0\n 0\n \n \n 2016-09\n 4\n 2900000\n 1\n 500000\n 1\n 200000\n 0\n 0\n 0\n 0\n \n \n 2016-06\n 5\n 4700000\n 1\n 500000\n 1\n 200000\n 0\n 0\n 0\n 0\n \n \n 2016-03\n 5\n 4900000\n 1\n 500000\n 1\n 400000\n 0\n 0\n 0\n 0\n \n \n \n \n \n \n \n 6\n \n 1\n 1\n 4\n 1016000\n \n \n 1\n 0\n 4\n 1016000\n \n \n 2\n 1\n 2\n 360000\n \n \n 2\n 0\n 2\n 360000\n \n \n 3\n 1\n 2\n 1062000\n \n \n 3\n 0\n 2\n 1062000\n \n \n \n 6\n \n 1\n 1\n 1\n \n \n 1\n 0\n 1\n \n \n 2\n 1\n 1\n \n \n 2\n 0\n 1\n \n \n 3\n 1\n 2\n \n \n 3\n 0\n 2\n \n \n \n \n \n \n 5000000\n 2000000\n 3000000\n 0\n 0\n 0\n 1\n \n \n \n \n \n 3\n \n 2\n 1000000\n 1\n 200000\n 1500000\n 2\n 300000\n 0\n 0\n \n \n 9\n 0\n 0\n 0\n 3150000\n 2\n 475000\n 0\n 100000\n \n \n 0\n 1000000\n 1\n 200000\n 4650000\n 4\n 775000\n 0\n 100000\n \n \n \n 3\n \n 2\n 1000000\n 3\n 80000\n 0\n 0\n \n \n 9\n 100000\n 2\n 60000\n 0\n 0\n \n \n 0\n 1100000\n 5\n 140000\n 0\n 0\n \n \n \n \n \n \n 130\n 13\n 3\n A0311\n 北京市北京路188号\n 1998\n 2028-01-01\n 北京市海淀区永丰路888号\n 1\n \n \n 2500000000\n 2\n \n 10\n 2\n 报告样本上海公司\n 10\n 3301013044994685\n 60\n \n \n 10\n 1\n 高瑶\n 10\n 210522198602230673\n 40\n \n 2018-05-12\n \n \n 6\n 2018-05-12\n \n 刘吾\n 10\n 371426199112317020\n 3\n \n \n 周尔\n 10\n 120102199111116601\n 4\n \n \n 郑陆\n 10\n 341422197712271329\n 9\n \n \n 夏思\n 10\n 410802199010054963\n 2\n \n \n 张珊\n 10\n 360322197911242907\n 5\n \n \n 邹义\n 10\n 52242819791109441X\n 1\n \n \n \n 1\n 报告样本上海公司\n 10\n 3301013044994685\n 2018-08-15\n \n \n 1\n \n 2\n 报告样本上海公司\n 10\n 3301013044994685\n \n 2018-08-15\n \n \n \n \n \n L8683\n 1\n D1\n 20\n 51\n 6829\n E066\n 11\n 12\n 2014-01-01\n CNY\n 2000000\n 2020-12-31\n 0\n 0\n 1\n 0\n \n 2018-08-01\n \n \n 2\n \n 2018-08-01\n 1000000\n 2018-08-01\n 1\n 2014-01-01\n 2018-08-01\n 300000\n 10\n 2018-08-01\n 200000\n 0\n 0\n 0\n \n \n 2014-01-01\n 1200000\n 2014-01-01\n 1\n 2014-01-01\n 2014-01-01\n 0\n 99\n 2014-01-01\n 0\n 0\n 0\n 0\n \n \n \n 1\n \n 11\n 2017-03-31\n 800000\n 12\n \n \n \n \n \n \n S8057\n 1\n D1\n 10\n 41\n 9404\n \n 12\n 11\n 2012-05-01\n CNY\n 300000\n 2019-03-31\n 0\n 0\n 1\n 1\n \n 2018-10-01\n \n \n 2\n \n 2018-10-01\n 225000\n 2018-10-01\n 1\n 2018-05-01\n 2018-05-01\n 75000\n 10\n 2018-10-01\n 75000\n 0\n 0\n 0\n \n \n 2018-06-15\n 300000\n 2018-05-01\n 1\n 2018-05-01\n 2018-05-01\n 0\n 99\n 2018-05-01\n 0\n 0\n 0\n 0\n \n \n \n 1\n \n 11\n 2018-10-01\n 50000\n 6\n \n \n \n \n \n \n L3879\n 2\n D1\n 20\n 41\n 9404\n \n 11\n 12\n 2012-07-01\n CNY\n 1000000\n 2017-06-30\n \n \n \n 0\n 2017-06-30\n \n \n \n 6\n \n 2017-06-30\n 0\n 2017-06-30\n 3\n 2014-10-30\n 2016-07-31\n 250000\n 10\n 2017-06-30\n 250000\n 0\n 0\n 0\n \n \n 2016-06-30\n 200000\n 2016-06-30\n 3\n 2014-10-30\n 2016-06-30\n 200000\n 10\n 2016-06-30\n 200000\n 0\n 0\n 0\n \n \n 2015-06-30\n 400000\n 2015-06-30\n 3\n 2014-10-30\n 2015-06-30\n 400000\n 10\n 2015-06-30\n 200000\n 0\n 0\n 0\n \n \n 2014-10-30\n 800000\n 2013-06-30\n 3\n 2014-10-30\n 2013-06-30\n 0\n 10\n 2014-06-30\n 200000\n 200000\n 200000\n 6\n \n \n 2013-06-30\n 800000\n 2013-06-30\n 1\n 2013-06-30\n 2013-06-30\n 200000\n 10\n 2013-06-30\n 200000\n 0\n 0\n 0\n \n \n 2012-07-01\n 1000000\n 2012-07-01\n 1\n 2012-07-01\n 2012-07-01\n 0\n 99\n 2012-07-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n L3098\n 2\n D1\n 20\n 51\n 6829\n \n 11\n 12\n 2013-02-01\n CNY\n 800000\n 2016-07-31\n \n \n \n 2\n 2016-07-31\n \n \n \n 2\n \n 2016-07-31\n 0\n 2016-07-31\n 9\n 2013-02-01\n 2016-07-31\n 800000\n 10\n 2016-07-31\n 800000\n 0\n 0\n 0\n \n \n 2013-02-01\n 800000\n 2013-02-01\n 9\n 2013-02-01\n 2013-02-01\n 0\n 99\n 2013-02-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n S0807\n 2\n D1\n 10\n 41\n 9404\n \n 12\n 11\n 2012-05-01\n CNY\n 1000000\n 2017-10-31\n \n \n \n 0\n 2017-10-31\n \n \n \n 2\n \n 2018-09-30\n 0\n 2017-10-31\n 2\n 2013-02-01\n 2013-02-01\n 1060000\n 10\n 2017-10-31\n 1050000\n 0\n 0\n 0\n \n \n 2018-04-01\n 1000000\n 2017-05-01\n 2\n 2013-02-01\n 2013-02-01\n 0\n 99\n 2017-05-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n S3333\n 2\n D1\n 10\n 51\n 6829\n \n 11\n 11\n 2013-04-01\n CNY\n 500000\n 2018-09-30\n \n \n \n 1\n 2018-08-01\n \n \n \n 2\n \n 2018-08-01\n 0\n 2018-06-30\n 5\n 2014-10-30\n 2014-10-30\n 520000\n 52\n 2018-06-30\n 520000\n 0\n 0\n 0\n \n \n 2018-05-01\n 500000\n 2018-04-01\n 5\n 2014-10-30\n 2014-10-30\n 0\n 99\n 2018-04-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n D7539\n 1\n D2\n 51\n 6829\n 21\n 10\n 2018-09-01\n CNY\n 500000\n 2019-08-31\n 0\n 0\n \n \n 2018-10-01\n 0\n \n \n 2\n \n 2018-10-01\n 450000\n 2018-10-01\n 1\n 2018-09-01\n 2018-10-01\n 0\n 10\n 2018-10-01\n 50000\n 0\n 0\n 0\n \n \n 2018-09-01\n 500000\n 2018-09-01\n 1\n 2018-09-01\n 2018-09-01\n 0\n 99\n 2018-09-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n D0143\n 1\n D2\n 51\n 6829\n 21\n 10\n 2018-05-01\n CNY\n 500000\n 2019-03-31\n 0\n 0\n \n \n 2018-10-01\n 0\n \n \n 2\n \n 2018-10-01\n 401600\n 2018-10-01\n 3\n 2018-10-01\n 2018-10-01\n 101500\n 10\n 2018-08-01\n 220000\n 105000\n 100000\n 2\n \n \n 2018-05-01\n 500000\n 2018-05-01\n 1\n 2014-01-01\n 2014-01-01\n 0\n 99\n 2018-05-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n D7848\n 2\n D2\n 51\n 6829\n 21\n 10\n 2017-01-01\n CNY\n 1000000\n 2017-12-31\n \n \n \n 2017-12-31\n \n 0\n \n \n 2\n \n 2017-12-31\n 0\n 2017-12-31\n 1\n 2017-01-01\n 2017-12-31\n 0\n 10\n 2017-12-31\n 1000000\n 0\n 0\n 0\n \n \n 2017-01-01\n 1000000\n 2017-01-01\n 1\n 2017-01-01\n 2017-01-01\n 0\n 99\n 2017-01-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n D7438\n 2\n D2\n 41\n 9404\n 21\n 10\n 2018-01-01\n CNY\n 450000\n 2018-06-30\n \n \n \n 2018-06-30\n \n 0\n \n \n 2\n \n 2018-06-30\n 0\n 2018-06-30\n 1\n 2018-01-01\n 2018-06-30\n 450000\n 10\n 2018-06-30\n 450000\n 0\n 0\n 0\n \n \n 2018-01-01\n 450000\n 2018-01-01\n 1\n 2018-01-01\n 2018-01-01\n 0\n 99\n 2018-01-01\n 0\n 0\n 0\n 0\n \n \n \n \n \n R0739\n 1\n R1\n 51\n 6829\n E510\n 16\n 10\n 2018-08-01\n CNY\n 1000000\n 2019-07-31\n 3\n 0\n 1\n 0\n \n 2018-10-01\n \n \n 2\n \n 2018-10-01\n 500000\n 2018-10-01\n 1\n 2018-08-01\n 2018-10-01\n 500000\n 22\n 2018-08-01\n 158000\n 0\n 0\n 0\n 11\n \n \n 2018-08-01\n 1000000\n 2018-08-01\n 1\n 2018-08-01\n 2018-08-01\n 0\n 31\n 2018-08-01\n 0\n 0\n 0\n 0\n 12\n \n \n \n \n \n R7226\n 2\n R1\n 51\n 6829\n \n 16\n 10\n 2016-01-01\n CNY\n 2000000\n 2016-12-31\n \n \n \n 0\n 2016-12-31\n \n \n \n 3\n \n 2016-12-31\n 0\n 2016-12-31\n 1\n 2016-01-01\n 2016-12-31\n 1000000\n 10\n 2016-12-31\n 1000000\n 0\n 0\n 0\n 0\n \n \n 2016-07-01\n 1000000\n 2016-07-01\n 1\n 2016-01-01\n 2016-07-01\n 1000000\n 10\n 2016-07-01\n 1000000\n 0\n 0\n 0\n 6\n \n \n 2016-01-01\n 2000000\n 2016-01-01\n 1\n 2016-01-01\n 2016-01-01\n 0\n 99\n 2016-01-01\n 0\n 0\n 0\n 0\n 12\n \n \n \n \n \n R0698\n 2\n R1\n 41\n 9404\n \n 16\n 20\n 2015-06-01\n CNY\n 800000\n 2015-12-31\n \n \n \n 0\n 2015-12-31\n \n \n \n 2\n \n 2015-12-31\n 0\n 2015-12-31\n 1\n 2015-06-01\n 2015-12-31\n 820000\n 10\n 2015-12-31\n 820000\n 0\n 0\n 0\n 0\n \n \n 2015-06-01\n 800000\n 2015-06-01\n 1\n 2015-06-01\n 2015-06-01\n 0\n 99\n 2015-06-01\n 800000\n 0\n 0\n 0\n 6\n \n \n \n \n \n C6885\n 1\n C1\n 11\n 9258\n 51\n 10\n 2015-01-01\n CNY\n 500000\n \n 2018-08-15\n 0\n \n \n 4\n \n 2018-08-15\n 380000\n 2018-08-15\n 4\n 2015-10-15\n 2018-08-15\n 20000\n 10\n \n \n 2018-01-15\n 400000\n 2018-01-15\n 4\n 2015-10-15\n 2018-01-15\n 50000\n 52\n \n \n 2017-04-16\n 450000\n 2017-04-16\n 4\n 2015-10-15\n 2017-04-16\n 50000\n 52\n \n \n 2015-01-01\n 500000\n 2015-01-01\n 2\n 2015-01-01\n 2015-01-01\n 0\n 99\n \n \n \n \n 1\n 51\n 6829\n 10\n 1\n 1\n 450000\n 0\n 0\n \n \n \n \n 2\n 51\n 6829\n 10\n 3\n 1\n 401600\n 105000\n 100000\n \n \n \n \n 3\n 41\n 9404\n 10\n 1\n \n \n \n \n 1\n 450000\n \n \n 4\n 51\n 6829\n 10\n 1\n \n \n \n \n 1\n 1000000\n \n \n \n \n \n F9205\n G3\n 41\n 9404\n \n 51\n 2017-08-01\n CNY\n 200000\n 2018-03-30\n \n \n \n \n \n \n 2\n \n 1\n \n 0\n 0\n 2018-03-30\n \n \n \n \n A6884\n G3\n 11\n 9258\n \n 61\n 2017-09-01\n CNY\n 200000\n 2017-12-30\n \n \n \n \n \n \n 2\n \n 1\n \n 1\n 0\n 2017-12-30\n \n \n \n \n G7476\n G3\n 51\n 6829\n \n 71\n 2017-09-01\n CNY\n 400000\n 2018-05-31\n \n \n \n \n \n \n 2\n \n 1\n \n 0\n 0\n 2018-05-31\n \n \n \n \n G8553\n G1\n 11\n 9258\n \n 71\n 2017-09-01\n CNY\n 300000\n 2018-02-28\n \n \n \n \n \n \n 2\n \n 1\n \n 1\n 0\n 2018-02-28\n \n \n \n \n F1170\n G3\n 41\n 9404\n \n 51\n 2018-08-01\n CNY\n 300000\n 2019-03-30\n 3\n 0\n 18\n \n \n 2018-08-01\n 1\n 300000\n 1\n 0\n \n 0\n \n \n \n \n \n F3465\n G3\n 41\n 9404\n \n 51\n 2018-09-01\n CNY\n 200000\n 2019-01-18\n 3\n 0\n 14\n \n \n 2018-09-01\n 1\n 60000\n 1\n 0\n \n 0\n \n \n \n \n \n A7704\n G3\n 11\n 9258\n \n 61\n 2018-08-01\n CNY\n 200000\n 2019-03-30\n 3\n 0\n 10\n \n \n 2018-08-01\n 1\n 200000\n 1\n 0\n \n 0\n \n \n \n \n \n A3607\n G3\n 11\n 9258\n \n 61\n 2018-10-01\n CNY\n 366000\n 2019-02-20\n 3\n 0\n 10\n \n \n 2018-10-01\n 1\n 366000\n 1\n 0\n \n 0\n \n \n \n \n \n A7763\n G3\n 11\n 9258\n \n 61\n 2018-09-01\n CNY\n 250000\n 2019-01-20\n 3\n 0\n 10\n \n \n 2018-09-01\n 1\n 250000\n 1\n 0\n \n 0\n \n \n \n \n \n A2720\n G3\n 11\n 9258\n \n 61\n 2018-08-01\n CNY\n 200000\n 2018-11-15\n 3\n 0\n 20\n \n \n 2018-08-01\n 1\n 200000\n 1\n 0\n \n 0\n \n \n \n \n \n G5781\n G1\n 11\n 9258\n \n 71\n 2018-08-01\n CNY\n 800000\n 2018-12-30\n 3\n 0\n 20\n \n \n 2018-10-01\n 1\n 667000\n 1\n 0\n \n 0\n \n \n \n \n \n G4482\n G3\n 51\n 6829\n \n 72\n 2018-08-01\n CNY\n 500000\n 2018-12-30\n 3\n 0\n 15\n \n \n 2018-10-01\n 1\n 395000\n 1\n 0\n \n 0\n \n \n \n \n 5\n 11\n 9258\n 61\n 1\n \n \n \n \n \n \n 1\n 1\n \n \n 6\n 41\n 9404\n 51\n 1\n \n \n \n \n \n \n 1\n 0\n \n \n 7\n 51\n 6829\n 71\n 1\n \n \n \n \n \n \n 1\n 0\n \n \n 8\n 11\n 9258\n 71\n 1\n \n \n \n \n \n \n 1\n 1\n \n \n 9\n 11\n 9258\n 61\n 1\n 4\n 1016000\n 816000\n 200000\n 0\n 0\n \n \n \n \n 10\n 41\n 9404\n 51\n 1\n 2\n 360000\n 60000\n 300000\n 0\n 0\n \n \n \n \n 11\n 11\n 9258\n 71\n 1\n 1\n 667000\n \n \n \n \n \n \n \n \n 12\n 51\n 6829\n 72\n 1\n 1\n 395000\n \n \n \n \n \n \n \n \n \n \n E066\n 51\n 6829\n 11\n 0\n CNY\n 5000000\n 2000000\n 20000000\n 4285\n 2016-01-01\n 2021-12-31\n 2018-07-02\n \n \n \n \n L8531\n 2\n D1\n 4\n CNY\n 3000000\n 11\n 9258\n 11\n 11\n 2015-06-01\n 2019-05-31\n CNY\n 375000\n 1\n 0\n 0\n 0\n \n \n 2018-09-02\n 375000\n \n \n \n \n C3218\n 2\n C1\n 2\n CNY\n 1000000\n 11\n 9258\n 41\n 10\n 2015-02-01\n \n CNY\n 200000\n 4\n \n \n \n \n \n 2018-05-16\n 200000\n \n P189\n \n \n 13\n 3\n 41\n 9404\n 10\n 3\n 150000\n 1\n 100000\n 30000\n 30000\n 150000\n \n \n \n 14\n 2\n 41\n 9404\n 10\n 1\n 1500000\n 2\n 300000\n 0\n 0\n 500000\n P346\n \n \n 15\n 9\n 41\n 9404\n 51\n 1\n 100000\n 2\n 60000\n 150000\n \n \n \n 16\n 2\n 51\n 6829\n 71\n 1\n 1000000\n 3\n 80000\n 100000\n P523\n \n \n \n \n \n H283\n 中国电信集团北京市电信公司\n 00\n 2\n 4300\n 2018-08\n \n \n 18\n \n 2018-08\n 2\n 7800\n 5000\n 4300\n \n \n 2018-07\n 2\n 6500\n 5000\n 1500\n \n \n 2018-06\n 2\n 7700\n 0\n 7700\n \n \n 2018-05\n 2\n 7600\n 0\n 7600\n \n \n 2018-04\n 1\n 6800\n 6800\n 0\n \n \n 2018-03\n 2\n 4400\n 1000\n 3400\n \n \n 2018-02\n 2\n 5800\n 0\n 5800\n \n \n 2018-01\n 2\n 5800\n 0\n 5800\n \n \n 2017-12\n 1\n 6500\n 6500\n 0\n \n \n 2017-11\n 1\n 6400\n 6400\n 0\n \n \n 2017-10\n 1\n 7600\n 7600\n 0\n \n \n 2017-09\n 1\n 6800\n 6800\n 0\n \n \n 2017-08\n 1\n 4400\n 4400\n 0\n \n \n 2017-07\n 1\n 7300\n 7300\n 0\n \n \n 2017-06\n 1\n 6500\n 6500\n 0\n \n \n 2017-05\n 1\n 6400\n 6400\n 0\n \n \n 2017-04\n 1\n 7600\n 7600\n 0\n \n \n 2017-03\n 1\n 6800\n 6800\n 0\n \n \n \n \n \n \n \n J687\n 四川省泸州市中级人民法院\n (2016)泸民终字第295号\n 2016-10-03\n 房地产合同纠纷\n 2\n 1\n 房屋\n 25000000\n 1\n 2017-02-05\n 驳回上诉,维持原判。限期被告中国有限责任公司支付原告四川王氏房地产开发有限公司违约金45万元。如果未按期履行给付金钱义务,应当依照法律规定,加倍支付债务利息。驳回原告的其他诉讼请求。\n \n \n K020\n 北京市西城区人民法院\n (2015)建执字第1573号\n 2015-09-25\n 货款\n 房屋\n 510000\n 2017年12月已结案\n 4\n 房屋\n 510000\n \n \n \n \n M945\n 北京市质量技术监督局\n (京)质技监罚字[2017]318号\n 生产伪造产地的建筑材料\n 该类产品停产\n 2017-05-13\n 500000\n 已缴纳罚款\n \n \n \n \n \n \n N839\n 2004-07\n 500\n 3000000\n 2018-09-27\n 2018-09\n 0\n \n 2018-09\n \n \n 18\n \n 2018-01\n 0\n 115035\n 115035\n \n \n \n 2018-06\n 0\n 109209\n 109209\n \n \n \n 2018-05\n 0\n 102460\n 102460\n \n \n \n 2018-09\n 0\n 105460\n 105460\n \n \n \n 2018-02\n 0\n 105460\n 105460\n \n \n \n 2017-09\n 0\n 149209\n 149209\n \n \n \n 2017-07\n 0\n 145030\n 145030\n \n \n \n 2018-04\n 0\n 125030\n 125030\n \n \n \n 2017-05\n 0\n 125460\n 125460\n \n \n \n 2017-06\n 0\n 149209\n 149209\n \n \n \n 2017-11\n 0\n 105460\n 105460\n \n \n \n 2017-03\n 0\n 129209\n 129209\n \n \n \n 2018-08\n 0\n 115030\n 115030\n \n \n \n 2017-12\n 0\n 102209\n 102209\n \n \n \n 2018-03\n 0\n 139219\n 139219\n \n \n \n 2017-04\n 0\n 125030\n 125030\n \n \n \n 2017-08\n 0\n 145460\n 145460\n \n \n \n 2017-10\n 0\n 155030\n 155030\n \n \n \n \n \n \n \n Q963\n 北京市环保局\n 环保审批\n 2017-01-01\n 2020-12-31\n 建设项目环境影响评价审批\n \n \n T813\n 北京市质量技术监督局\n 强制产品质量认证\n 2018-04-01\n 2020-03-31\n \n \n \n U218\n 北京市建设厅\n 建筑企业资质\n 2014-07-10\n 2020-07-09\n \n \n \n V767\n 北京市质量技术监督局\n 北京市名牌\n 2017-01-25\n 2020-12-31\n \n \n \n \n \n W979\n 国家质量检验检疫总局\n 棉麻制品\n 2016-01-01\n \n \n X283\n 国家质量检验检疫总局\n 棉麻制品\n 201801234\n 2020-12-31\n \n \n Y638\n 国家质量检验检疫总局\n 北京分局\n 1\n 2015-08-01\n 2024-07-31\n \n \n \n \n \n \n 3145\n 41\n 9404\n 2018\n 20\n 1\n \n \n \n 111111\n \n 111111\n 111111\n 111111\n 111111\n \n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 10\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 10\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 600000\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 100000\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 100000\n 200000\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 300000\n 600000\n \n \n \n \n 3418\n 11\n 9258\n 2017\n 10\n 2\n \n \n \n \n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n \n \n 5\n 11111111\n 11111111\n \n \n \n 11111111\n 11111111\n 11111111\n 11111111\n 11111111\n 11111111\n 11111111\n \n \n \n \n \n 5\n 10\n \n \n \n \n \n \n \n \n \n \n \n \n 3\n \n \n 6666\n \n \n \n \n 3\n 6\n \n \n \n \n \n 4\n 10\n \n \n \n \n 3785\n 41\n 9404\n 2017\n 10\n 1\n \n \n 7\n 7\n 7\n 7\n 7\n 7\n \n 7\n 7\n 7\n \n 7\n 7\n 7\n 7\n \n 7\n 7\n \n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n 7\n \n \n \n \n 3934\n 11\n 9258\n 2018\n 40\n 2\n \n \n 1\n 1\n 1\n \n \n \n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n 1\n \n \n \n \n 3180\n 41\n 9404\n 2017\n 10\n 1\n \n \n \n 100\n 45\n 1067\n 45\n 14\n 72\n 43\n 175\n 892\n \n 34\n 76\n \n 244\n 42\n \n 29\n 106\n 138\n \n 27\n 61\n 161\n 27\n 42\n 89\n 159\n 2\n 100\n 1133\n 201\n 12\n 23\n 34\n 56\n 67\n 78\n 89\n 51\n 59\n 21\n 43\n 72\n 12\n 32\n 34\n 892\n 12\n 23\n \n 26\n 1175\n 23\n 42\n 61\n 1234567891234567\n \n \n \n \n 3842\n 11\n 9258\n 2018\n 20\n 2\n \n \n \n \n \n 2\n \n \n 7\n \n 1\n 1\n \n \n 1088\n \n \n 5\n \n \n \n \n 4\n 1\n \n \n \n 5\n \n \n \n 4\n 1\n 1\n 4\n 5\n 9\n \n \n \n \n \n \n \n \n \n 111111\n 111111\n 111111\n 111111\n 111111\n 111111\n \n \n \n \n \n \n 1234567891011121\n 1234567891011121\n 1234567891011121\n \n \n \n 26\n \n \n \n \n \n", "inputValueValidateMessage" : null, @@ -4089,7 +5800,7 @@ "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "a0ee03d2-b4af-48e2-a072-5a8f00157e26", + "id" : "b448f178-26d8-4848-9493-46f78a40b4c5", "code" : "P1735521276667", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4098,7 +5809,7 @@ "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "b931b9e3-05ca-4007-86e5-aacc740e0c94", + "id" : "dc6466f7-8edd-490d-b2bb-a523e8635fab", "code" : "M1735521220273", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4106,10 +5817,19 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "f3eb8738-10aa-494e-90f7-914ee675a5e2", + "code" : "I1732074381040", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : "2019022208310062527930", + "testResult" : "UN_PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "ab41f007-d76f-4b58-b171-cd911616a57e", + "id" : "b3f534bc-d4ff-4970-9c0f-b589d37bda48", "code" : "M1735521220273", "name" : "特征", "description" : null, @@ -4120,7 +5840,7 @@ "children" : null, "parameters" : [ { "type" : "INDICATOR", - "id" : "78167136-d873-4208-a4ad-0d0e66e81ea1", + "id" : "89b9bd62-52f1-4474-8a5e-02c0ae2d4506", "code" : "I1732009101910", "name" : "报文", "description" : null, @@ -4138,7 +5858,7 @@ "indicatorCode" : "I1732009101910" }, { "type" : "INDICATOR", - "id" : "8d8c6f28-b199-4fa5-a255-6bd79304bbe0", + "id" : "aceee92a-76d5-4a94-a6d1-21c9cd0756dc", "code" : "I1732074381040", "name" : "征信报告编号", "description" : null, @@ -4156,7 +5876,7 @@ "indicatorCode" : "I1732074381040" }, { "type" : "OUT", - "id" : "e046ca73-ca33-4e5a-bb2e-0ee590ec9b88", + "id" : "64557e7f-0898-45d6-b670-7880d95babbe", "code" : "P1735521276667", "name" : "征信报工是否有效", "description" : null, @@ -4170,7 +5890,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "b1ea298b-b8cf-4c0b-8d60-e67b1d37d566", + "id" : "8bae0a06-e9b3-46bd-8e17-039bc795da53", "description" : null, "order" : 1, "enable" : true, @@ -4184,7 +5904,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "5c1c6a45-4019-411e-a2d4-a5676e1101fa", + "id" : "27e6fd95-2199-4c7d-b10c-fe1f858ae0f1", "code" : "M1735112567050", "name" : "执行流", "description" : null, @@ -4192,7 +5912,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "2315d837-62f9-41a1-a523-664e77c50321", + "id" : "b0f850cd-185c-4139-bccd-ae53708ae085", "code" : "M1735008434943", "name" : "013-执行流-冠军挑战者", "description" : null, @@ -4201,13 +5921,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "8cb9587e-78a2-4e9a-929e-4105942b4528", + "id" : "3ca134d3-9aa2-4d72-bf08-01088262ffba", "name" : "013-执行流-冠军挑战者", "description" : null, "lastTestDate" : "2025-04-23 16:58:15", "testResult" : "PASSED", "parameters" : [ { - "id" : "0b2a2f34-cbe3-4414-846d-fbf37da0ac76", + "id" : "2fb7a337-0ace-4b13-8f1d-ea7f892771f3", + "code" : "M1735008434943", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "39a6597e-98b7-4bf7-b9a9-ccdb3ebbdf56", "code" : "P1735011698621", "inputValue" : "20000", "inputValueValidateMessage" : null, @@ -4216,16 +5945,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "1a7be6ae-e215-40b3-9a53-dfb70e5d6950", - "code" : "M1735008434943", - "inputValue" : null, + "id" : "97dbc0d3-57c6-4dc7-9a53-ef3f0bd4f54b", + "code" : "P1735011685888", + "inputValue" : "30", "inputValueValidateMessage" : null, "expectValue" : null, - "resultValue" : null, + "resultValue" : "", "testResult" : null, "skipCheck" : false }, { - "id" : "8b8a54a6-387c-4dbf-96ab-5e8d8d174795", + "id" : "b27deb5b-2caf-445a-a262-69ec5a0e74c2", "code" : "P1735011716680", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4233,19 +5962,10 @@ "resultValue" : "9000.00", "testResult" : "PASSED", "skipCheck" : false - }, { - "id" : "f42fe37d-5730-4d73-a333-3d9e19254c55", - "code" : "P1735011685888", - "inputValue" : "30", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : "", - "testResult" : null, - "skipCheck" : false } ] } ], "model" : { - "id" : "b170b3e5-6daa-4c8c-9cae-42e9f9dc2d49", + "id" : "5a8716cc-b8e3-4e61-93e5-a3499ca6d0ce", "code" : "M1735008434943", "name" : "013-执行流-冠军挑战者", "description" : null, @@ -4256,7 +5976,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "d47d5981-6d28-4538-8c39-48069bb2f8e4", + "id" : "ea9b0c3c-3be9-494b-8d6e-e42aefa686d9", "code" : "P1735011685888", "name" : "年龄", "description" : null, @@ -4271,7 +5991,7 @@ "processors" : null }, { "type" : "IN", - "id" : "5f1779d7-d317-4a31-9c12-81e18226064a", + "id" : "1d0deb9c-3bb0-4c5b-82f6-389f68ed9999", "code" : "P1735011698621", "name" : "申请额度", "description" : null, @@ -4286,7 +6006,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "1797ae0b-387d-41c2-a360-64b43dae3c8e", + "id" : "225f68d2-a00c-4d70-9f45-9350a1fb1ca0", "code" : "P1735011716680", "name" : "批准额度", "description" : null, @@ -4300,7 +6020,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "aa6c0a4a-14d0-4b7d-8ddb-aacc441ea3e2", + "id" : "8ac320cb-53e3-45bc-9d44-ab25689a0f8d", "description" : null, "order" : 1, "enable" : true, @@ -4312,7 +6032,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "41ec9410-2821-4b49-aa18-1485d6c2489f", + "id" : "5c367766-b33f-4fef-b1b7-606ada2cdd9a", "code" : "M1735029732136", "name" : "013-执行流-可配置模型", "description" : null, @@ -4321,13 +6041,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "5770d7f4-b9fc-450e-98ee-0a4e55132eb6", + "id" : "3e7000e3-e5db-4cb5-94bb-f71ecca5bdb0", "name" : "013-执行流-可配置模型", "description" : null, "lastTestDate" : "2025-04-23 16:58:14", "testResult" : "PASSED", "parameters" : [ { - "id" : "5ce89cb2-6233-410e-9d24-85aef5745074", + "id" : "65c9ddc1-f31c-4371-a9e2-e08c911804ca", "code" : "M1735029732136", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4336,16 +6056,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "cb8e8531-d807-4334-b485-3c793e9aa66f", - "code" : "P1735029881862", - "inputValue" : "20000", + "id" : "691dc358-9cc8-44e9-915a-cd0d1f1191bb", + "code" : "P1735029897768", + "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "11000", + "resultValue" : "11000.00", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "da46a917-921e-45f7-8828-833836eaed7b", + "id" : "743bce93-5bab-4b8d-99a6-758ba6ef2eae", "code" : "P1735029868655", "inputValue" : "30", "inputValueValidateMessage" : null, @@ -4354,18 +6074,18 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "ef5f6ea2-d94e-4780-91ef-900c5ceb95cd", - "code" : "P1735029897768", - "inputValue" : null, + "id" : "ba21babe-adbf-40a6-ac20-131d17752f1e", + "code" : "P1735029881862", + "inputValue" : "20000", "inputValueValidateMessage" : null, - "expectValue" : "11000", - "resultValue" : "11000.00", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false } ] } ], "model" : { - "id" : "7a96a1d2-12be-4362-b49d-46886cfd90d3", + "id" : "004a877d-b766-4ba7-826c-c1f52b577b0a", "code" : "M1735029732136", "name" : "013-执行流-可配置模型", "description" : null, @@ -4376,7 +6096,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "b8bf8da4-a5d1-488a-b79b-7cff807d918f", + "id" : "73f70683-bd2d-4004-9ca6-e094e07b0dff", "code" : "P1735029868655", "name" : "年龄", "description" : null, @@ -4391,7 +6111,7 @@ "processors" : null }, { "type" : "IN", - "id" : "c625cd08-4c6a-4f87-94e4-a0b37c7083f2", + "id" : "abf7876b-b2c8-4bf1-b4ef-2208f8461b9f", "code" : "P1735029881862", "name" : "申请额度", "description" : null, @@ -4406,7 +6126,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "fd22b77a-06d3-4953-a626-a8d44ada676d", + "id" : "70b34227-547c-4043-829d-5512f73375f9", "code" : "P1735029897768", "name" : "批准额度", "description" : null, @@ -4420,7 +6140,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "14daa90a-370b-44c0-bb6a-81ea11a822d3", + "id" : "1c7b15e7-724a-4a87-8525-065d8f2f3c8e", "description" : null, "order" : 1, "enable" : true, @@ -4432,7 +6152,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "94e73eda-a6ee-4cc2-bdea-dc08e7042243", + "id" : "2499adf7-1be1-4d3d-b0b1-5feaa660def2", "code" : "M1735032161849", "name" : "013-执行流-输出调试信息", "description" : null, @@ -4441,22 +6161,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "80ff12bc-1d8d-4fe6-86ef-c29e28910be7", + "id" : "e760c3d9-45b3-4b02-b7ba-709aaf51dc9c", "name" : "013-执行流-输出调试信息", "description" : null, "lastTestDate" : "2025-04-23 16:58:14", - "testResult" : "PASSED", - "parameters" : [ { - "id" : "645b1d2d-3567-429c-b754-e644d203f920", - "code" : "M1735030799343", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "6e035df8-bf90-4db1-992a-9440fa882e13", + "testResult" : "PASSED", + "parameters" : [ { + "id" : "2225e31a-c9c0-49e5-a5d6-17275df05ee1", "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4465,26 +6176,26 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "77a80d14-6794-469c-8e35-d4be02bc18af", - "code" : "M1735032161849", - "inputValue" : null, + "id" : "346e1ec4-fa57-41be-b159-12410ca573df", + "code" : "P1735030834951", + "inputValue" : "A", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "77d88590-ba3d-41f5-a423-fc253f328622", - "code" : "P1735031008340", + "id" : "81f6bf98-9bc5-4163-be0d-2be0c3b6e341", + "code" : "M1735030791023", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : "PASSED", + "testResult" : null, "skipCheck" : false }, { - "id" : "89cd5415-22fa-47e7-898f-ef825ed92763", - "code" : "M1735030791023", + "id" : "849a5b2b-c727-48ca-b158-b57e8892ca85", + "code" : "M1735032161849", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4492,16 +6203,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "bf465c3f-a2f9-4494-8f30-b43a0affdb0f", - "code" : "P1735030834951", - "inputValue" : "A", + "id" : "d981b42c-1e88-4055-96f8-533188e83233", + "code" : "P1735031008340", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "ff66daf0-1b6b-4be3-9590-e2c3a58535f2", + "id" : "e06b1a9e-dec8-4c8f-b3f2-09919f1822d6", "code" : "P1735030849216", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4509,10 +6220,19 @@ "resultValue" : "AAA", "testResult" : "PASSED", "skipCheck" : false + }, { + "id" : "eec4f22e-8b35-4c14-84a0-5f16ed8df7fc", + "code" : "M1735030799343", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false } ] } ], "model" : { - "id" : "fc341929-689f-47c6-812b-34a3cfac1edf", + "id" : "de924843-12e8-475b-bcf1-b89fadb01046", "code" : "M1735032161849", "name" : "013-执行流-输出调试信息", "description" : null, @@ -4521,7 +6241,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "055e58d6-638a-4571-90ae-4eda1f033ccd", + "id" : "d7457005-8319-4eba-9fcf-b4563c17ea57", "code" : "M1735030791023", "name" : "子模型A", "description" : null, @@ -4532,7 +6252,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "81396c7a-48f5-4fd5-97df-91401bf99f13", + "id" : "496b77a7-439b-4a04-ae0f-0a85a644d3d6", "code" : "P1735030972300", "name" : "子模型A结果值", "description" : null, @@ -4546,7 +6266,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "904111ba-9184-4acd-916e-d66b9233fb95", + "id" : "57ea58d3-4aac-4a34-95eb-9d7bd79bc0d7", "description" : null, "order" : 1, "enable" : true, @@ -4554,7 +6274,7 @@ } ] } ] }, { - "id" : "6ff66434-9535-4f21-abaa-eda0c4620099", + "id" : "831d0a9d-ff2c-4508-a138-a9d1ee815c0e", "code" : "M1735030799343", "name" : "子模型B", "description" : null, @@ -4565,7 +6285,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "5f660c08-9ed0-462f-af15-55d6ed1620f0", + "id" : "dc403adf-6c14-4b9d-b0ff-e9acaa24988d", "code" : "P1735031008340", "name" : "子模型B结果值", "description" : null, @@ -4579,7 +6299,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "0efb1f90-5c1c-417d-8396-5ccce21c0f09", + "id" : "f5baa26d-cf82-477d-9405-a61890efc2a7", "description" : null, "order" : 1, "enable" : true, @@ -4589,7 +6309,7 @@ } ], "parameters" : [ { "type" : "IN", - "id" : "96a3f459-c015-46f3-a036-21034301f295", + "id" : "fd81e486-68df-4a8d-89ae-1dd67844149f", "code" : "P1735030834951", "name" : "需要调用的子模型名称", "description" : null, @@ -4604,7 +6324,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "477ed891-7c70-4f0b-9a6d-0d38fce7730a", + "id" : "8e552400-3532-4645-922d-bd7ace01552a", "code" : "P1735030849216", "name" : "结果值", "description" : null, @@ -4618,7 +6338,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "30580fad-144e-4aa6-bc6c-9eb860b6d9c6", + "id" : "2ab741d8-aa7f-4c14-be54-45abd30434cb", "description" : null, "order" : 1, "enable" : true, @@ -4630,7 +6350,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "660d7fb2-f113-4df4-8ab1-d7c2dc2fa755", + "id" : "0a807e0b-9f99-44b5-8767-11922caf911b", "code" : "M1735030765203", "name" : "013-执行流-子模型", "description" : null, @@ -4639,14 +6359,14 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "132b188b-9e49-4b0a-84e6-af6f2e1501c7", + "id" : "25993ba9-d519-4ffb-a943-171aef88af8e", "name" : "013-执行流-子模型", "description" : null, - "lastTestDate" : "2025-04-23 16:58:13", + "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "08b796aa-b34a-447e-a584-dedff31df14d", - "code" : "M1735030791023", + "id" : "11f00aae-36df-4777-a765-8ab75db4779a", + "code" : "M1735030799343", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4654,26 +6374,26 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "17e5139f-fb6b-4d39-ab26-40af8928b6fd", - "code" : "P1735031008340", + "id" : "286c549e-1b04-4e35-9d3f-c92747a83f2d", + "code" : "P1735030849216", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, + "expectValue" : "AAA", + "resultValue" : "AAA", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "60ff6943-d231-423e-b024-5896ce1246c0", - "code" : "P1735030972300", - "inputValue" : null, + "id" : "435b914b-37cb-49e2-9ac5-894c8bd2966a", + "code" : "P1735030834951", + "inputValue" : "A", "inputValueValidateMessage" : null, - "expectValue" : "AAA", - "resultValue" : "AAA", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "9320d63e-3d8e-4662-8733-96439f900283", - "code" : "M1735030765203", + "id" : "9a96d01e-d0b9-49b6-b161-75da0026962c", + "code" : "M1735030791023", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4681,8 +6401,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "aee54906-17a9-42e3-8a51-4ee913deac58", - "code" : "P1735030849216", + "id" : "a8dc5051-fa5b-46f8-a3f2-48a86fee3099", + "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : "AAA", @@ -4690,18 +6410,18 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "af1945b5-e123-4cfc-a6dd-f89f4b819d20", - "code" : "M1735030799343", + "id" : "dc965325-0659-44d5-92aa-83c5723e6732", + "code" : "P1735031008340", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "b29a8e95-8f38-4d55-8a1f-63d7a2a05de2", - "code" : "P1735030834951", - "inputValue" : "A", + "id" : "f9493357-0a36-4db7-911d-2e6314d032d1", + "code" : "M1735030765203", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -4710,22 +6430,22 @@ } ] }, { "type" : "MODEL", - "id" : "b670dd01-3d02-42b9-83ec-8e53e6e8c4c1", + "id" : "fc38a706-1f80-47bb-8e39-44100d7c5a12", "name" : "013-执行流-子模型", "description" : null, - "lastTestDate" : "2025-04-23 16:58:16", + "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "PASSED", "parameters" : [ { - "id" : "21b1f9af-67cb-4470-8307-5230d36bd271", - "code" : "P1735030849216", + "id" : "099e58cd-6b67-4853-a46c-210c9678b0f8", + "code" : "M1735030791023", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "AAA", - "resultValue" : "AAA", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "382dfe63-4ad6-4504-9f88-c186920e4810", + "id" : "0ae76e4f-1659-4f60-9a99-a5787d0d6f4b", "code" : "M1735030765203", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4734,7 +6454,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "46dcde8b-18fc-47bd-943a-460611ef1167", + "id" : "780c15d0-1b85-49cd-9645-71195c618b82", "code" : "P1735031008340", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4743,7 +6463,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "619bbded-ec89-4b90-bcb8-c7b6d4a47aca", + "id" : "82da4bf9-23a7-4a33-b5b4-fcc1ff4e6610", "code" : "M1735030799343", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4752,25 +6472,25 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "93b03faa-208b-4ed8-b391-5b7b86340e7b", - "code" : "P1735030834951", - "inputValue" : "A", + "id" : "82f854e5-0871-4bb4-b18f-01e6d495a0f8", + "code" : "P1735030849216", + "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "AAA", + "resultValue" : "AAA", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "c8475066-8b8b-4f61-a44a-50e788069e76", - "code" : "M1735030791023", - "inputValue" : null, + "id" : "dc593a90-b6cc-4066-815b-b0ee27d9da53", + "code" : "P1735030834951", + "inputValue" : "A", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "f6dbe128-d9b2-4296-a5b6-158827c4ef1f", + "id" : "eb6aaa9d-5142-4438-9504-1b04f39ff582", "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4781,7 +6501,7 @@ } ] } ], "model" : { - "id" : "0ea094d9-550e-41a0-8b48-89b8ef3351ee", + "id" : "a7356e32-2c40-4643-b21d-13d777453de5", "code" : "M1735030765203", "name" : "013-执行流-子模型", "description" : null, @@ -4790,7 +6510,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "58b052a4-1722-4e6d-993c-0d420864de43", + "id" : "2673e216-dfec-4221-8c2f-ca3ed78398d7", "code" : "M1735030791023", "name" : "子模型A", "description" : null, @@ -4801,7 +6521,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "be9ed023-941c-4e7a-addb-4b8048681c8c", + "id" : "b3e29c90-55f1-4791-9b77-2c41307bf90f", "code" : "P1735030972300", "name" : "子模型A结果值", "description" : null, @@ -4815,7 +6535,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "52bd32c0-5f9a-4b91-b710-c66a9055ec55", + "id" : "1483c8e0-eac5-4171-80d4-1be6458ac68d", "description" : null, "order" : 1, "enable" : true, @@ -4823,7 +6543,7 @@ } ] } ] }, { - "id" : "1cd31501-7af2-47ef-befc-2033974c550c", + "id" : "9effba4f-723e-4fca-82c0-4036b2014ace", "code" : "M1735030799343", "name" : "子模型B", "description" : null, @@ -4834,7 +6554,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "ccdc2535-450b-4849-9065-4626521cf5d6", + "id" : "a0927f6b-99f6-4ed7-b444-1dab5af19c34", "code" : "P1735031008340", "name" : "子模型B结果值", "description" : null, @@ -4848,7 +6568,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "74a4e8cd-3129-4b73-8ab5-cc40f6983626", + "id" : "16f78ae0-3567-4d59-afbd-d70d1c1a7000", "description" : null, "order" : 1, "enable" : true, @@ -4858,7 +6578,7 @@ } ], "parameters" : [ { "type" : "IN", - "id" : "59c9d6bf-6c1e-4967-80e7-e0fff7869739", + "id" : "4db1144a-a023-4498-9ee1-448a8a60b390", "code" : "P1735030834951", "name" : "需要调用的子模型名称", "description" : null, @@ -4873,7 +6593,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "38ae0f0f-53e9-404a-8ef4-ad818a8cf195", + "id" : "68417dcc-095f-4d14-a950-23d9885e227f", "code" : "P1735030849216", "name" : "结果值", "description" : null, @@ -4887,7 +6607,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "030426d9-9596-44cb-ad4b-ae9d0f1fdc95", + "id" : "6100798b-bccf-408d-994a-021e64e93358", "description" : null, "order" : 1, "enable" : true, @@ -4899,7 +6619,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "276c18f9-c687-4ddd-868c-e09ba151a934", + "id" : "922b017d-cc5d-47c8-81ba-3c02890e29f1", "code" : "M1736753880198", "name" : "零售准入审批策略", "description" : null, @@ -4908,7 +6628,7 @@ "children" : null, "testCases" : null, "model" : { - "id" : "2536dcba-f7da-41a3-93e1-2657fa8f21d6", + "id" : "6c89934f-8c7a-47bf-945f-e9d0c1b3c4a3", "code" : "M1736753880198", "name" : "零售准入审批策略", "description" : null, @@ -4917,7 +6637,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "956aa007-0041-432c-8e50-f6970f91e1d7", + "id" : "74ea4f86-9c06-43f6-903a-4f480687e0cf", "code" : "M1736753912864", "name" : "政策拒绝", "description" : null, @@ -4926,7 +6646,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "4cb15c12-0d26-48d1-a6ab-7f7c747086c6", + "id" : "20dd4d20-b998-4b67-864b-e9e84bdc97bc", "code" : "M1736753939646", "name" : "基本信息拒绝", "description" : null, @@ -4935,7 +6655,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "1f2b93bf-01f1-4b83-91c0-6a44bdb80c0f", + "id" : "aef63060-7fb3-4c15-8b5d-287018584d64", "code" : "M1736753955018", "name" : "申请人年龄拒绝", "description" : null, @@ -4946,7 +6666,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "d690b7ec-7bf3-4e03-ac23-c8155e6abbbb", + "id" : "97cdfc27-f445-46fd-bf9b-a389c8c0b47a", "code" : "P1736753969316", "name" : "申请人年龄", "description" : null, @@ -4961,7 +6681,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "51bac101-354a-4da7-a867-b8be15862bc6", + "id" : "428597c6-04cd-4b9e-a65a-6fd1c025fab2", "code" : "P1736753991037", "name" : "申请人年龄拒绝结果", "description" : null, @@ -4975,7 +6695,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "7eb0872f-c7cb-48ef-97d2-e4dd9dbbfc55", + "id" : "98f80012-ff25-428b-a323-063bd06e5b95", "description" : null, "order" : 1, "enable" : true, @@ -4985,7 +6705,7 @@ } ] } ] }, { - "id" : "d1ff5cd7-2dfe-4fbe-97d1-f0d39e04d4bf", + "id" : "136dc0a9-6f41-43d1-8085-4aa9baa0e6d4", "code" : "M1736754046043", "name" : "蚂蚁信用分拒绝", "description" : null, @@ -4996,7 +6716,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "01238fc7-b5c8-4293-81ac-91570e62dc53", + "id" : "d3d9dab7-e4d3-4508-91b2-ba05b55ec611", "code" : "P1736754057201", "name" : "蚂蚁信用分", "description" : null, @@ -5011,7 +6731,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "4c5c69c5-8f15-4e6a-b14a-39cfbefe397f", + "id" : "b2bcaa40-3406-4b4b-9cca-e5a54a439a6c", "code" : "P1736754067517", "name" : "蚂蚁信用分拒绝结果", "description" : null, @@ -5025,7 +6745,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "dbd15869-5e5d-46ad-97b2-186df333b551", + "id" : "c4bd1bd5-a6c2-4278-8127-8fecdff5664e", "description" : null, "order" : 1, "enable" : true, @@ -5037,7 +6757,7 @@ } ], "parameters" : [ { "type" : "OUT", - "id" : "5f89efb8-f2d3-4c71-8782-a78f415852e0", + "id" : "dca41a3f-2cac-41c8-b5c2-26eb2ba392e6", "code" : "P1736757848266", "name" : "基本信息拒绝结果", "description" : null, @@ -5051,7 +6771,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "0af20a5e-9da7-4fe0-983c-aba241bd30e9", + "id" : "4eb9b73a-56d6-42d9-8bbb-0aeb18e8314e", "description" : null, "order" : 1, "enable" : true, @@ -5059,7 +6779,7 @@ } ] } ] }, { - "id" : "61cda734-94e7-480b-b28a-a7e12ae9966a", + "id" : "0ea6fabf-4540-44eb-9132-e3c837757cf4", "code" : "M1736754103776", "name" : "黑名单拒绝", "description" : null, @@ -5070,7 +6790,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "78315662-5758-4bfa-ba23-ba1c024e6738", + "id" : "92b9536c-4088-4021-8cbf-633267043722", "code" : "P1736754115593", "name" : "是否在黑名单内", "description" : null, @@ -5085,7 +6805,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "b7595e6f-b464-48a1-a8fb-4f722e0b087c", + "id" : "47ccea35-5b8b-49b9-8642-afb43a87c2a7", "code" : "P1736754127383", "name" : "黑名单拒绝结果", "description" : null, @@ -5099,7 +6819,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "140482f9-93c7-4834-874e-8e927d4f856a", + "id" : "eddf9a06-9913-49e5-8fe4-bc553f5b00d9", "description" : null, "order" : 1, "enable" : true, @@ -5109,7 +6829,7 @@ } ] } ] }, { - "id" : "5183014f-8316-4d5a-afbb-116041366711", + "id" : "8efa8f7e-7a59-4e68-a6aa-c810c0e751c2", "code" : "M1736754231482", "name" : "征信信息拒绝", "description" : null, @@ -5118,7 +6838,7 @@ "category" : "OTHER", "executeMode" : "DOWN_UP", "children" : [ { - "id" : "052e792d-5cf5-414a-9454-52e544c78c51", + "id" : "21b20bc5-8662-4b08-998a-5ba7ef42569b", "code" : "M1736757455556", "name" : "24个月内贷款或贷记卡逾期次数过高", "description" : null, @@ -5129,7 +6849,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "a811dab2-41fe-4382-9468-3dbdb5e7cbfd", + "id" : "955c68b2-abd5-493a-a296-ddfc75aec200", "code" : "P1736757469718", "name" : "24个月内贷款或贷记卡逾期次数", "description" : null, @@ -5144,7 +6864,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "e21edad8-b921-455a-ae24-ba5eecafd6f1", + "id" : "bee435fb-5918-4123-bae8-5218a5efca45", "code" : "P1736757703465", "name" : "24个月内贷款或贷记卡逾期次数是否过高", "description" : null, @@ -5158,7 +6878,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "cfb930c4-c425-4131-b4f3-7c2166f9c6bb", + "id" : "7dc6a597-99a0-4bea-9784-8ca349c9f4d9", "description" : null, "order" : 1, "enable" : true, @@ -5168,7 +6888,7 @@ } ], "parameters" : [ { "type" : "OUT", - "id" : "61e36136-e67a-43cc-877a-5658dfef5ce0", + "id" : "f5f5c753-fdc7-409f-a8f8-faff4665af12", "code" : "P1736754265478", "name" : "征信信息拒绝结果", "description" : null, @@ -5182,7 +6902,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "f0780a69-2764-43a8-94e8-529b73170ec7", + "id" : "c1250117-0ebd-4e32-a898-2f833026365a", "description" : null, "order" : 1, "enable" : true, @@ -5192,7 +6912,7 @@ } ], "parameters" : [ { "type" : "OUT", - "id" : "70781f40-93eb-4474-a922-25d82a62a8b1", + "id" : "f7b15f23-cd65-4e2f-83fc-9b1602486ca1", "code" : "P1736754757882", "name" : "政策拒绝结果", "description" : null, @@ -5206,7 +6926,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "4d6f3f35-2414-4749-b434-8866d9d28b30", + "id" : "34998ed0-e6b4-4dcf-a046-82929b6cb177", "description" : null, "order" : 1, "enable" : true, @@ -5214,7 +6934,7 @@ } ] } ] }, { - "id" : "72fc49d0-8b4c-42c3-9e4f-91f2bf455712", + "id" : "3cf919e2-4c38-4f12-aae5-d5f326110592", "code" : "M1736754300848", "name" : "申请评分准入", "description" : null, @@ -5225,7 +6945,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "7c13bba1-0ce0-48fa-8894-61540675b184", + "id" : "8baa79d1-18ec-4509-9032-53e9304332f7", "code" : "P1736754794885", "name" : "申请人性别", "description" : null, @@ -5240,7 +6960,7 @@ "processors" : null }, { "type" : "IN", - "id" : "d4e7769e-e7cf-410f-b95b-50722e3721f9", + "id" : "f2c38737-56ba-49e6-bddf-992aada4a942", "code" : "P1736754812346", "name" : "个人月均收入", "description" : null, @@ -5255,7 +6975,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "7c8a309c-c532-4576-902d-2a9e3f04bb3e", + "id" : "6e51add0-2219-4dac-b671-b2a91702e793", "code" : "P1736754832724", "name" : "申请评分结果", "description" : null, @@ -5269,7 +6989,7 @@ "validators" : null, "processors" : [ { "type" : "SCORE_CARD", - "id" : "296cb758-3a90-4040-a89b-c240523634b7", + "id" : "c3ca05d1-963b-4a4e-92bc-3d3b09d7de45", "description" : null, "order" : 1, "enable" : true, @@ -5277,7 +6997,7 @@ } ] }, { "type" : "OUT", - "id" : "04f0ae84-87e1-483c-b3b3-3469128ec062", + "id" : "5a6ab075-ab2e-4273-a784-b8328d64db60", "code" : "P1736756913961", "name" : "申请评分等级", "description" : null, @@ -5291,7 +7011,7 @@ "validators" : null, "processors" : [ { "type" : "NUMBER_RANGE", - "id" : "c60c15f0-2490-4ac5-a52e-e2bc30e5f31b", + "id" : "1f093bc9-59b6-4137-abb6-b38fdcdcaa99", "description" : null, "order" : 1, "enable" : true, @@ -5300,7 +7020,7 @@ } ] }, { "type" : "OUT", - "id" : "fe5601fd-0e0f-4c44-bd89-c7b5a9c1115e", + "id" : "a089f7c5-a666-4ceb-9a6b-ed5b44223611", "code" : "P1736756891691", "name" : "申请评分准入结果", "description" : null, @@ -5314,7 +7034,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "c451d3c8-2d4b-46eb-a8b6-d6005689382c", + "id" : "0812fad1-38d1-4f8a-9d86-444584ad1980", "description" : null, "order" : 1, "enable" : true, @@ -5324,7 +7044,7 @@ } ] } ] }, { - "id" : "d61321d8-5d2b-4678-a59d-fa0d4b1cebbe", + "id" : "60dd90bb-d891-4bd7-a6de-15a013972888", "code" : "M1736757360424", "name" : "风险规则", "description" : null, @@ -5333,7 +7053,7 @@ "category" : "OTHER", "executeMode" : "DOWN_UP", "children" : [ { - "id" : "7bf32b08-d210-4b53-af89-33db8f69dd89", + "id" : "f4655077-7b2c-4f1c-8331-0dba78f8e43a", "code" : "M1736758436644", "name" : "贷记卡当前额度使用过高", "description" : null, @@ -5344,7 +7064,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "6c986809-a4ae-4051-997b-3676a5008c92", + "id" : "b368938a-71ef-4912-bd32-29729f67dad3", "code" : "P1736758448394", "name" : "贷记卡当前额度使用率", "description" : null, @@ -5359,7 +7079,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "e23613e2-b61c-4a4e-9df1-46c30273e86f", + "id" : "bdb262b8-61a6-4e50-9bde-55b114f08f77", "code" : "P1736758470890", "name" : "贷记卡当前额度使用过高结果", "description" : null, @@ -5373,7 +7093,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "de06c1a6-ccc0-4719-8edf-c7d971c7e70a", + "id" : "18195bcb-19eb-4a7f-af4d-7581f9cb86b5", "description" : null, "order" : 1, "enable" : true, @@ -5383,7 +7103,7 @@ } ] } ] }, { - "id" : "31ae6a96-c0aa-4ff8-883f-1f2b3f3de8e7", + "id" : "57fa0e28-e673-4cb9-b20b-dadc3533bbf7", "code" : "M1736758502818", "name" : "信用卡当前额度使用过高", "description" : null, @@ -5394,7 +7114,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "83ae7c72-0a7a-4368-8a59-e96171d2c7d1", + "id" : "b023d8e2-cbda-4f03-8bf4-9fd5f74cd1e3", "code" : "P1736758512698", "name" : "信用卡当前额度使用率", "description" : null, @@ -5409,7 +7129,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "e17ddf02-f20c-42dc-a4c2-73f9b2e8ab1b", + "id" : "4f6118f5-52e4-42a7-aea5-ad3404bc9046", "code" : "P1736758522754", "name" : "信用卡当前额度使用过高结果", "description" : null, @@ -5423,7 +7143,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "4d212953-8541-4744-8a3d-4315f7ac2dfe", + "id" : "97b06d0c-b6e5-4273-8daf-bbadd15561ed", "description" : null, "order" : 1, "enable" : true, @@ -5433,7 +7153,7 @@ } ] } ] }, { - "id" : "88dd2fba-3e9c-4d36-a51f-ec00276b8d6f", + "id" : "307f191b-8310-49c1-99f6-d087de754e43", "code" : "M1736758556018", "name" : "人行征信记录不足6个月", "description" : null, @@ -5444,7 +7164,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "ec3ed166-719f-4e25-b979-81541d163e8f", + "id" : "491d4fd5-37c5-4276-b1f1-5f74181eb481", "code" : "P1736758567366", "name" : "最久信贷征信记录距今月份数", "description" : null, @@ -5459,7 +7179,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "b1db7f6d-ac92-45bd-9b50-be784b334ffc", + "id" : "e2962068-abfb-4497-b3d6-a28ea179cf22", "code" : "P1736758579722", "name" : "人行征信记录不足6个月结果", "description" : null, @@ -5473,7 +7193,7 @@ "validators" : null, "processors" : [ { "type" : "TERNARY", - "id" : "f423d327-e29a-4608-a3e1-89c3e6b28ac5", + "id" : "d7adccef-d01b-425d-ba90-49a5a81e5567", "description" : null, "order" : 1, "enable" : true, @@ -5485,7 +7205,7 @@ } ], "parameters" : [ { "type" : "OUT", - "id" : "09913e7a-1186-4029-bba0-abb8a10c649f", + "id" : "455a399a-8d21-4c7e-a857-d0db7cfcac77", "code" : "P1736758645163", "name" : "风险规则命中个数", "description" : null, @@ -5499,7 +7219,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "4a0c6751-67d2-4805-a21e-9bbdb51fc532", + "id" : "dddb1542-b78e-46a3-b012-f7bd70cf4d2d", "description" : null, "order" : 1, "enable" : true, @@ -5507,7 +7227,7 @@ } ] } ] }, { - "id" : "1a932d09-db18-4136-a4b1-d2ec7a5939a0", + "id" : "53f2b2e5-a5c3-45ef-844c-11b76bb6d9da", "code" : "M1736758859464", "name" : "综合准入", "description" : null, @@ -5518,7 +7238,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "82e8bdee-df6d-4677-843c-b0acc9c8461b", + "id" : "3b5801ac-e313-4e69-b9f4-670fa3dc6cfe", "code" : "P1736758877231", "name" : "综合准入等级", "description" : null, @@ -5533,7 +7253,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "d19a3d84-b03b-4f17-94c9-f805f00c414f", + "id" : "3260e3a4-074d-41a8-a415-10ee8fadd981", "code" : "P1736759060626", "name" : "综合准入结果", "description" : null, @@ -5550,7 +7270,7 @@ } ], "parameters" : [ { "type" : "OUT", - "id" : "cea14a9b-b939-47bd-92b3-0aca59fd2516", + "id" : "3ff76158-73e3-498e-8776-64da297894f5", "code" : "P1736759184752", "name" : "准入审批策略结果", "description" : null, @@ -5564,7 +7284,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "c7dc431a-9d5c-4b00-ab93-1ebffd7ca125", + "id" : "63bf69b9-2a6d-47c6-ae30-3293e9ef1aed", "description" : null, "order" : 1, "enable" : true, @@ -5580,7 +7300,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "93935fc3-ad8a-4e42-a69f-6b3fcbed3a45", + "id" : "b732333c-5797-4f8d-aa7b-27da3d173ac7", "code" : "M1736303834155", "name" : "枚举", "description" : null, @@ -5588,7 +7308,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "e65616e0-9906-4162-8dc0-67775a450164", + "id" : "b240286b-1bd4-4539-a94e-dfea22ca33d2", "code" : "M1736303841282", "name" : "婚姻状况(字符串)", "description" : null, @@ -5597,13 +7317,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "0099d7dc-4df8-4811-95ea-d4c73e48c4ca", + "id" : "0510abbf-a35e-4402-ad97-5e997bddb539", "name" : "婚姻状况(字符串)-未婚", "description" : null, "lastTestDate" : "2025-04-23 16:58:12", "testResult" : "PASSED", "parameters" : [ { - "id" : "0765075b-8c5e-406e-ab32-659f93951d00", + "id" : "6e4f7f5a-7b36-4de6-94ff-852b823afc74", + "code" : "P1736472195456", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "未婚", + "resultValue" : "未婚", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "9796a6e1-efc7-40ef-985a-23c9af9cefcf", "code" : "M1736303841282", "inputValue" : null, "inputValueValidateMessage" : null, @@ -5612,7 +7341,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "0e51fe35-9261-4ee7-8007-a94c54ed9fba", + "id" : "d5dfb8e6-dec5-4c3e-8aea-82a75e50b14c", "code" : "P1736472140954", "inputValue" : "02", "inputValueValidateMessage" : null, @@ -5620,78 +7349,69 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false - }, { - "id" : "38be7b51-ab53-4910-af6b-96473a480012", - "code" : "P1736472195456", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "未婚", - "resultValue" : "未婚", - "testResult" : "PASSED", - "skipCheck" : false } ] }, { "type" : "MODEL", - "id" : "2029b730-3f69-4c39-a4f1-a135c8724b83", - "name" : "婚姻状况(字符串)-已婚", + "id" : "87bcb355-2352-40fc-a2e9-e67b18b13835", + "name" : "婚姻状况(字符串)-再婚", "description" : null, - "lastTestDate" : "2025-04-23 16:58:13", + "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "047f237d-7612-4b01-9ce6-1767eb60a561", - "code" : "P1736472140954", - "inputValue" : "01", + "id" : "36aa4bd5-fd5e-416b-87c4-f06e7eb62a83", + "code" : "M1736303841282", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "17b26f66-2d8d-4833-8b72-1803fd7ab917", - "code" : "P1736472195456", - "inputValue" : null, + "id" : "4be57249-e63b-49e0-97da-14650f8b5ff6", + "code" : "P1736472140954", + "inputValue" : "04", "inputValueValidateMessage" : null, - "expectValue" : "已婚", - "resultValue" : "已婚", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "cfe15c65-86e5-47b1-a623-68d55bc3eb48", - "code" : "M1736303841282", + "id" : "c2c492a5-4b2e-4783-a22e-625a1ee3251f", + "code" : "P1736472195456", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "再婚", + "resultValue" : "再婚", + "testResult" : "PASSED", "skipCheck" : false } ] }, { "type" : "MODEL", - "id" : "e9421eb8-41c2-4404-b6e4-04dfd4e7067f", - "name" : "婚姻状况(字符串)-再婚", + "id" : "b74c7d07-4538-4c7e-a055-257051c7cb82", + "name" : "婚姻状况(字符串)-已婚", "description" : null, - "lastTestDate" : "2025-04-23 16:58:16", + "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "PASSED", "parameters" : [ { - "id" : "08db2124-2e55-41b9-8f11-79d3586a3c84", + "id" : "0b4e71e1-3ece-4b1a-a7c8-c42135409cad", "code" : "P1736472140954", - "inputValue" : "04", + "inputValue" : "01", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "c6eed0dc-5c51-47e8-bd5c-5c6c9085561e", + "id" : "4dd6bec7-bf47-49ea-a775-da1e0d5cdab9", "code" : "P1736472195456", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "再婚", - "resultValue" : "再婚", + "expectValue" : "已婚", + "resultValue" : "已婚", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "fe4a5b89-205f-4e2f-baef-f20910f3292c", + "id" : "8202041e-cdb8-4250-bb8a-418febc7c96a", "code" : "M1736303841282", "inputValue" : null, "inputValueValidateMessage" : null, @@ -5702,7 +7422,7 @@ } ] } ], "model" : { - "id" : "90b672fb-261f-47fd-9dfc-f82131b9a8fb", + "id" : "0b038ce8-48b3-491a-b1b0-4d8f17519ae5", "code" : "M1736303841282", "name" : "婚姻状况(字符串)", "description" : null, @@ -5713,7 +7433,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "b30659fb-69e2-4da8-b170-3643dcbb98a3", + "id" : "7bbd236a-7fd9-49c0-b000-beffe9f71799", "code" : "P1736472140954", "name" : "婚姻状况", "description" : null, @@ -5728,7 +7448,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "32800775-c01a-45ff-a8b3-bfb81f330d64", + "id" : "c780e4cd-a89d-4bd5-8565-63effa042fde", "code" : "P1736472195456", "name" : "婚姻状况描述", "description" : null, @@ -5742,7 +7462,7 @@ "validators" : null, "processors" : [ { "type" : "CONDITION_RANGE", - "id" : "e4b864a7-0fe9-498b-99d2-522817b6d1a8", + "id" : "80d21329-2d2b-4148-b973-2b72f87bb47d", "description" : null, "order" : 1, "enable" : true, @@ -5754,7 +7474,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "e04725e2-1539-4919-b0f2-5c2d79a22d00", + "id" : "c146df23-69a8-418e-83fd-36b189036b28", "code" : "M1736327768064", "name" : "学历(整数)", "description" : null, @@ -5763,13 +7483,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "171f9e3a-6bdd-4780-b99d-b743407ca04d", + "id" : "82cd93e6-d008-443b-9aea-2487ab85bfcd", "name" : "学历(整数)-本科", "description" : null, "lastTestDate" : "2025-04-23 16:58:13", "testResult" : "PASSED", "parameters" : [ { - "id" : "252c46aa-fc15-4572-8422-4e29280b1261", + "id" : "46b89671-3d26-4e7c-be55-939a79f257eb", "code" : "P1736326926617", "inputValue" : null, "inputValueValidateMessage" : null, @@ -5778,18 +7498,18 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "8fccc150-2886-40ec-b011-955d6cd635a5", - "code" : "M1736327768064", - "inputValue" : null, + "id" : "6e88cc08-06d1-402d-b505-9b191ca4320c", + "code" : "P1736326905659", + "inputValue" : "3", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "d1d005a5-d284-4a52-ae0f-1228605823c5", - "code" : "P1736326905659", - "inputValue" : "3", + "id" : "8b926269-81a8-45d8-8f00-f7b7de72b58e", + "code" : "M1736327768064", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -5798,7 +7518,7 @@ } ] } ], "model" : { - "id" : "3b7e08e4-ad32-4c5b-9a8b-b1b40f8b457a", + "id" : "6252e1e5-b291-4e33-9a56-8a776ffe2f14", "code" : "M1736327768064", "name" : "学历(整数)", "description" : null, @@ -5809,7 +7529,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "56e5d060-fd68-4fb7-bdb6-dd59347a63c7", + "id" : "613e60df-8614-47af-80fc-76f93f338a7d", "code" : "P1736326905659", "name" : "学历", "description" : null, @@ -5824,7 +7544,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "8b653430-3a37-42c6-bcff-1d23dc55411e", + "id" : "e252b67a-973a-46c7-b38e-f3b6091955a1", "code" : "P1736326926617", "name" : "学历名称", "description" : null, @@ -5838,7 +7558,7 @@ "validators" : null, "processors" : [ { "type" : "CONDITION_RANGE", - "id" : "6b3c5fe0-cabe-4168-9123-83c6b8187e8b", + "id" : "96bbb9d4-8c88-4f5f-a9fd-0896975c0a12", "description" : null, "order" : 1, "enable" : true, @@ -5852,7 +7572,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "fcbbbf6e-e178-4211-a6c6-109874a9c61f", + "id" : "350d82e0-8137-42d8-bcfe-435bb023b690", "code" : "M1735784340303", "name" : "特殊值处理", "description" : null, @@ -5860,7 +7580,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "a80f4f04-38f8-4822-9cc8-2c7684b8ddd8", + "id" : "ffcfae5a-80cc-415c-b624-302d491f0d69", "code" : "M1735784375685", "name" : "输入值为空", "description" : null, @@ -5869,41 +7589,41 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "5bef9364-72ad-46b6-82d0-974d9cbb153e", - "name" : "输入值不为空", + "id" : "0bc3e7ca-d073-4127-9302-c435d55aa15b", + "name" : "输入值为空", "description" : null, - "lastTestDate" : "2025-04-23 16:58:14", + "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "16dccd79-55d2-4cd5-9cb1-d6f2f7170d00", - "code" : "P1735784441429", - "inputValue" : "1.2", + "id" : "53921922-faf3-4203-aee3-7d0a6c62e84d", + "code" : "P1735784466568", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "d8ffb95f-9feb-482d-a6cd-a82d89d4547c", - "code" : "M1735784375685", + "id" : "57520b0f-38b0-4f9c-856e-6c88d413346d", + "code" : "P1735784499971", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0", + "resultValue" : "0.00", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "e359d8d0-b3e7-4e08-aad9-7f3afe4dc92b", - "code" : "P1735784499971", + "id" : "5dfbcf7a-3dd8-475a-84a4-bda447553eba", + "code" : "M1735784375685", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "0.11", - "resultValue" : "0.11", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "f914090e-f821-430d-b624-de0bd5de681e", - "code" : "P1735784466568", + "id" : "c68bc8e9-27c7-491a-8cc0-391ebe0e3b91", + "code" : "P1735784441429", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -5913,41 +7633,41 @@ } ] }, { "type" : "MODEL", - "id" : "ce80b866-d8a5-4b8f-b99c-cc99c4666900", - "name" : "输入值为空", + "id" : "4890f892-3686-43be-9aaf-bd18138215cc", + "name" : "输入值不为空", "description" : null, - "lastTestDate" : "2025-04-23 16:58:16", + "lastTestDate" : "2025-04-23 16:58:14", "testResult" : "PASSED", "parameters" : [ { - "id" : "07d77ef7-e44a-4665-aec3-f46ea8fe8522", + "id" : "04291226-0013-4435-8177-3dae98da9d77", "code" : "P1735784441429", - "inputValue" : null, + "inputValue" : "1.2", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "3065fdb1-8653-4a84-9489-4e6b93416ac0", - "code" : "P1735784499971", + "id" : "6b7256fc-c993-48a4-87cc-7f63122b3c07", + "code" : "M1735784375685", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "0", - "resultValue" : "0.00", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "3e1f9c60-4ee1-465d-b00f-69155231b5ad", - "code" : "P1735784466568", + "id" : "a1b7f12b-d299-4cc3-8c1f-2a73c89a064d", + "code" : "P1735784499971", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0.11", + "resultValue" : "0.11", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "9844065a-40f2-47eb-b8b0-96697c710eef", - "code" : "M1735784375685", + "id" : "ca20314c-5481-409a-b46d-b766a41a6be2", + "code" : "P1735784466568", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -5957,7 +7677,7 @@ } ] } ], "model" : { - "id" : "b243b7a0-ca3c-4055-bd04-519aaf507966", + "id" : "974ae144-fff1-40d4-b925-c6cda49bbb88", "code" : "M1735784375685", "name" : "输入值为空", "description" : null, @@ -5968,7 +7688,7 @@ "children" : null, "parameters" : [ { "type" : "CONSTANT", - "id" : "ff0e3327-5479-4611-a772-f547db6269e4", + "id" : "8aa9c69a-ab66-48a4-b901-7f9b1070f6f0", "code" : "P1735784466568", "name" : "权重", "description" : null, @@ -5983,7 +7703,7 @@ "processors" : null }, { "type" : "IN", - "id" : "9d4967d0-b209-4228-9d11-0d0f2ede3f22", + "id" : "1bf54ad6-3fe9-486b-a6c0-2b1840038b3a", "code" : "P1735784441429", "name" : "输入值", "description" : null, @@ -5998,7 +7718,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "e633ed34-0f05-4af0-8436-84478ea11c7f", + "id" : "1d64364e-d23f-4a07-9cf8-e1f2d45fd1cd", "code" : "P1735784499971", "name" : "结果值", "description" : null, @@ -6012,7 +7732,7 @@ "validators" : null, "processors" : [ { "type" : "WHEN_THEN", - "id" : "e41fe1a4-1e44-4114-8165-d4e6c1da3b54", + "id" : "3de38708-eaf9-449c-b5a5-e88b1bb0a7c6", "description" : null, "order" : 1, "enable" : true, @@ -6021,7 +7741,7 @@ "isWhenThenShorted" : true }, { "type" : "ARITHMETIC", - "id" : "0f6134db-69cb-4d82-9a7e-261d305e4ee5", + "id" : "ae45d50a-b74d-4389-a7d3-50c9d997285f", "description" : null, "order" : 2, "enable" : true, @@ -6033,7 +7753,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "b1967579-3f87-4741-b9bd-d29870fc6bb4", + "id" : "04aec6d8-7bb7-4a7d-b9af-30e1c0148f7a", "code" : "M1735787092187", "name" : "小数精度", "description" : null, @@ -6042,22 +7762,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "c3ff891f-a972-4e4b-95a7-e43552dc3ecd", + "id" : "83583c80-1e3f-41d4-98fe-8c4c9dde1519", "name" : "小数精度", "description" : null, "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "26c77546-37d8-45bc-86c1-80839e1dd0f5", - "code" : "P1735787123362", - "inputValue" : "3", + "id" : "4687f977-3b43-49f2-8eae-136aa5d13172", + "code" : "M1735787092187", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "c48415f6-18f4-4467-8f70-542e59866eb5", + "id" : "480863f1-907d-416a-ab4e-b2b8cdb422e0", "code" : "P1735787134052", "inputValue" : null, "inputValueValidateMessage" : null, @@ -6066,18 +7786,18 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "c7e2facd-152d-438c-b777-bef6ce11c7b0", - "code" : "P1735787115074", - "inputValue" : "1", + "id" : "7c6f5b8f-fae4-4052-9b91-f150af829aff", + "code" : "P1735787123362", + "inputValue" : "3", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "d1a334b8-a33c-4f2b-9776-ad7e9221b1c3", - "code" : "M1735787092187", - "inputValue" : null, + "id" : "c6ae4527-e020-4ecb-80e7-6359e45a4c97", + "code" : "P1735787115074", + "inputValue" : "1", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -6086,7 +7806,7 @@ } ] } ], "model" : { - "id" : "f739e8c2-8199-4034-a5df-7a01a9d07ec8", + "id" : "71fa1992-e37f-4af5-aa1b-3d8263bf92e7", "code" : "M1735787092187", "name" : "小数精度", "description" : null, @@ -6097,7 +7817,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "8113eab7-edd6-4bb8-932c-3dfe3ea063ad", + "id" : "abf118a7-cfbd-4767-afcf-4305343df72e", "code" : "P1735787115074", "name" : "分子", "description" : null, @@ -6112,7 +7832,7 @@ "processors" : null }, { "type" : "IN", - "id" : "15f4abe4-5969-4efa-8d37-94aa095bee21", + "id" : "83973669-6298-46a0-af1a-1a19742228a9", "code" : "P1735787123362", "name" : "分母", "description" : null, @@ -6127,7 +7847,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "6a8d351a-ddfa-440c-8eed-557d34ca2387", + "id" : "374eea51-a591-44cf-9b3c-762aa678f135", "code" : "P1735787134052", "name" : "结果值", "description" : null, @@ -6141,7 +7861,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "839eab7d-b00b-427d-aa73-b8d1a2707607", + "id" : "9637eaca-557e-444c-92e0-dc3172627595", "description" : null, "order" : 1, "enable" : true, @@ -6155,7 +7875,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "f7cf0b06-a4ca-4871-b98d-d51ae2954d89", + "id" : "b047ed63-12b6-4462-9c12-6d62b041c6bc", "code" : "M1744083730219", "name" : "主标尺", "description" : null, @@ -6163,7 +7883,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "35565d8a-833d-4234-97eb-5c034999e82f", + "id" : "c0dc14ca-92f0-49cc-836f-0d14e5477ba3", "code" : "M1744080062911", "name" : "主标尺", "description" : null, @@ -6172,14 +7892,14 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "a67ae6cc-ed6d-4d18-8c1e-c04a863aec23", + "id" : "1439498c-024f-46e6-8258-3812a93de659", "name" : "主标尺(概率-->等级)", "description" : null, "lastTestDate" : "2025-04-23 16:58:16", "testResult" : "PASSED", "parameters" : [ { - "id" : "58fd0101-0aed-4f7a-863c-aeb4d6637886", - "code" : "M1744080062911", + "id" : "51331d30-b882-4588-b99d-088300951a80", + "code" : "P1744080089024", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -6187,8 +7907,8 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "7b30681b-15cc-4d8d-af63-b6e37b8232cb", - "code" : "P1744080089024", + "id" : "80447a5c-da89-4445-9b3d-01aec8f4e392", + "code" : "M1744080062911", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -6196,16 +7916,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "97cd01f5-7775-4ec4-819e-7e6532908afa", - "code" : "P1744080173123", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "AAA", - "resultValue" : "AAA", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "9f5fa42b-542e-4f31-8881-28878fc14329", + "id" : "9842d89f-31c0-493e-a19f-9aba32185529", "code" : "P1744080195962", "inputValue" : null, "inputValueValidateMessage" : null, @@ -6214,19 +7925,28 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "c0fc763a-7364-4e69-9b44-99e610952974", - "code" : "P1744080114359", - "inputValue" : "0.0013", + "id" : "d80eef3d-fed7-43a7-84f6-0ec8e278f5db", + "code" : "P1744080133804", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "eef33a4b-ecd3-4be2-a5ba-8c64f5362cb3", - "code" : "P1744080133804", + "id" : "e696e907-e3ef-4119-86ca-ba04d236db08", + "code" : "P1744080173123", "inputValue" : null, "inputValueValidateMessage" : null, + "expectValue" : "AAA", + "resultValue" : "AAA", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "fc7c73a7-b5b2-417a-b967-dc8ebc0d6a6f", + "code" : "P1744080114359", + "inputValue" : "0.0013", + "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, @@ -6234,22 +7954,31 @@ } ] }, { "type" : "MODEL", - "id" : "fe282ef4-5142-401a-ac35-787a76c65bb5", + "id" : "5547fb7f-d7d2-43e6-b4b7-b0c314929d61", "name" : "主标尺(等级-->概率)", "description" : null, "lastTestDate" : "2025-04-23 16:58:17", "testResult" : "PASSED", "parameters" : [ { - "id" : "1449fed6-a609-4ae3-b8ce-5daf543f38e3", - "code" : "P1744080173123", + "id" : "1b521041-9f1a-4b63-9122-40a47ff0f5b1", + "code" : "P1744080133804", + "inputValue" : "CCC", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "b50bc913-34bc-482b-b8f4-b4264df78d39", + "code" : "P1744080089024", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : "PASSED", + "testResult" : null, "skipCheck" : false }, { - "id" : "1b7ab1fd-5392-442e-a8ae-d5dad36a8b80", + "id" : "b692a1b8-4420-4311-96c7-3b3305a3be94", "code" : "P1744080195962", "inputValue" : null, "inputValueValidateMessage" : null, @@ -6258,17 +7987,8 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "5ee5ff94-efb5-4e38-9d5d-0a0c7422b68d", - "code" : "P1744080133804", - "inputValue" : "CCC", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "c32a57b9-004a-43c2-b344-2e48f8808ac6", - "code" : "P1744080089024", + "id" : "d4927570-ab2a-4bf3-ba17-d5e627f0522a", + "code" : "M1744080062911", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -6276,7 +7996,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "c392f60d-cc0a-4199-ad08-81a0a8b49cb0", + "id" : "dda07a09-a967-4675-85e6-9647c79ede3f", "code" : "P1744080114359", "inputValue" : null, "inputValueValidateMessage" : null, @@ -6285,18 +8005,18 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "f26add92-bbfe-4b91-865a-1f9ef453dd19", - "code" : "M1744080062911", + "id" : "e9f19cce-2bbe-4607-b6c8-d805ff0f67a2", + "code" : "P1744080173123", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "PASSED", "skipCheck" : false } ] } ], "model" : { - "id" : "ee72c635-1f33-4274-b4ea-4eea3192319d", + "id" : "2c3effbc-981a-4005-95d8-1ff29461ee0e", "code" : "M1744080062911", "name" : "主标尺", "description" : null, @@ -6307,7 +8027,7 @@ "children" : null, "parameters" : [ { "type" : "CONSTANT", - "id" : "4d763bc6-9fa1-4c7d-8ded-2c4a18a7bd23", + "id" : "3cc66beb-2908-4868-9cf6-2302c191ceb7", "code" : "P1744080089024", "name" : "主标尺配置", "description" : null, @@ -6322,7 +8042,7 @@ "processors" : null }, { "type" : "IN", - "id" : "f850c09b-337a-4bf0-8d5c-91154b7846b7", + "id" : "16a50bd1-882f-4090-954a-725a8f6c6c20", "code" : "P1744080114359", "name" : "违约概率", "description" : null, @@ -6337,7 +8057,7 @@ "processors" : null }, { "type" : "IN", - "id" : "28d17c48-efe2-4c9e-82e8-f5661aebf729", + "id" : "73753d1e-53eb-4209-9f98-5b097cefd85c", "code" : "P1744080133804", "name" : "评级等级", "description" : null, @@ -6352,7 +8072,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "086ed3e3-0000-4cb2-97d9-df47a8b80fab", + "id" : "7bf28090-2777-41c4-b6d4-9371b3e0cafa", "code" : "P1744080173123", "name" : "概率To等级", "description" : null, @@ -6366,7 +8086,7 @@ "validators" : null, "processors" : [ { "type" : "GROOVY_SCRIPT", - "id" : "abec6edf-0b5a-4903-bd38-06373d200160", + "id" : "826f68ac-d6f0-4b0c-bf8b-26e69e76a9ef", "description" : null, "order" : 1, "enable" : true, @@ -6374,7 +8094,7 @@ } ] }, { "type" : "OUT", - "id" : "9b494abe-790e-43ba-bbd9-39f99cba61c4", + "id" : "1b4d67cb-f855-4126-b31c-d210ec625182", "code" : "P1744080195962", "name" : "等级To概率", "description" : null, @@ -6388,7 +8108,7 @@ "validators" : null, "processors" : [ { "type" : "GROOVY_SCRIPT", - "id" : "ed8a2569-57a6-4249-958c-9956587e8699", + "id" : "6e8694ab-78c0-49a6-9953-344476a5631e", "description" : null, "order" : 1, "enable" : true, diff --git a/io.sc.engine.st.frontend/package.json b/io.sc.engine.st.frontend/package.json index bac61ca7..3d553ad2 100644 --- a/io.sc.engine.st.frontend/package.json +++ b/io.sc.engine.st.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.ai.frontend/package.json b/io.sc.platform.ai.frontend/package.json index 3b526c50..1bb33aea 100644 --- a/io.sc.platform.ai.frontend/package.json +++ b/io.sc.platform.ai.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.core.frontend/package.json b/io.sc.platform.core.frontend/package.json index 7482a254..8b583342 100644 --- a/io.sc.platform.core.frontend/package.json +++ b/io.sc.platform.core.frontend/package.json @@ -1,6 +1,6 @@ { "name": "platform-core", - "version": "8.2.80", + "version": "8.2.82", "description": "前端核心包,用于快速构建前端的脚手架", "//main": "库的主文件", "main": "dist/platform-core.js", diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/Digit.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/Digit.vue index b1a7942d..83a48715 100644 --- a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/Digit.vue +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/Digit.vue @@ -19,6 +19,26 @@ + + + + + + import { ref } from 'vue'; import Abs from './digit/Abs.vue'; +import Multiply from './digit/Multiply.vue'; +import Divide from './digit/Divide.vue'; import Square from './digit/Square.vue'; import Pow from './digit/Pow.vue'; import Exp from './digit/Exp.vue'; @@ -213,6 +235,8 @@ const props = defineProps({ }); const absRef = ref(); +const multiplyRef = ref(); +const divideRef = ref(); const squareRef = ref(); const powRef = ref(); const expRef = ref(); diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/String.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/String.vue index 2041b984..7eeceaa4 100644 --- a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/String.vue +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/String.vue @@ -90,6 +90,26 @@ > + + + + + + @@ -104,6 +124,8 @@ import Contains from './string/Contains.vue'; import StartsWith from './string/StartsWith.vue'; import EndsWith from './string/EndsWith.vue'; import Join from './string/Join.vue'; +import Substring from './string/Substring.vue'; +import Replace from './string/Replace.vue'; const modelValueRef = defineModel({ type: String, default: '' }); const props = defineProps({ @@ -118,4 +140,6 @@ const containsRef = ref(); const startsWithRef = ref(); const endsWithRef = ref(); const joinRef = ref(); +const substringRef = ref(); +const replaceRef = ref(); diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Divide.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Divide.vue new file mode 100644 index 00000000..f6a64140 --- /dev/null +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Divide.vue @@ -0,0 +1,54 @@ + + diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Multiply.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Multiply.vue new file mode 100644 index 00000000..ad35734f --- /dev/null +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Multiply.vue @@ -0,0 +1,54 @@ + + diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Pow.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Pow.vue index 26f0bb8b..73a10103 100644 --- a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Pow.vue +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Pow.vue @@ -20,9 +20,13 @@ const xmlData = ` pow ( + x + , + y + ) diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Root.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Root.vue index 6233f5f5..9dc2dbae 100644 --- a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Root.vue +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/digit/Root.vue @@ -20,9 +20,13 @@ const xmlData = ` root ( + x + , + y + ) @@ -39,7 +43,7 @@ const dragstart = (event) => { }; const append = () => { - props.sourceCodeEditor?.dispatch(props.sourceCodeEditor?.state?.replaceSelection('root(x)')); + props.sourceCodeEditor?.dispatch(props.sourceCodeEditor?.state?.replaceSelection('root(x,y)')); modelValueRef.value = modelValueRef.value + xmlData.replace('', ''); }; diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Replace.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Replace.vue new file mode 100644 index 00000000..4f74dcc6 --- /dev/null +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Replace.vue @@ -0,0 +1,58 @@ + + diff --git a/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Substring.vue b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Substring.vue new file mode 100644 index 00000000..f665102f --- /dev/null +++ b/io.sc.platform.core.frontend/src/platform/components/math/toolbar/functions/string/Substring.vue @@ -0,0 +1,52 @@ + + diff --git a/io.sc.platform.core.frontend/src/platform/i18n/messages.json b/io.sc.platform.core.frontend/src/platform/i18n/messages.json index 18562f51..50ca979a 100644 --- a/io.sc.platform.core.frontend/src/platform/i18n/messages.json +++ b/io.sc.platform.core.frontend/src/platform/i18n/messages.json @@ -202,11 +202,13 @@ "math.toolbar.functions.specialValue.infinite": "Infinite, when x is infinite, return y; else return x", "math.toolbar.functions.number": "Number", "math.toolbar.functions.number.abs": "Absolute value", - "math.toolbar.functions.number.square": "square to x", - "math.toolbar.functions.number.pow": "(y)th power of x", - "math.toolbar.functions.number.exp": "(x)th power of e", - "math.toolbar.functions.number.sqrt": "square root of x", - "math.toolbar.functions.number.root": "(y)th root of x", + "math.toolbar.functions.number.multiply": "x multiply y. default scale is 8, you can set scale like multiply(x,y,scale) or multiply(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.divide": "x divide y. default scale is 8, you can set scale like divide(x,y,scale) or divide(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.square": "square to x. default scale is 8, you can set scale like square(x,scale) or square(x,scale,RoundingMode)", + "math.toolbar.functions.number.pow": "(y)th power of x. default scale is 8, you can set scale like pow(x,y,scale) or pow(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.exp": "(x)th power of e. default scale is 8, you can set scale like exp(x,scale) or exp(x,scale,RoundingMode)", + "math.toolbar.functions.number.sqrt": "square root of x. default scale is 8, you can set scale like sqrt(x,scale) or sqrt(x,scale,RoundingMode)", + "math.toolbar.functions.number.root": "(y)th root of x. default scale is 8, you can set scale like root(x,y,scale) or root(x,y,scale,RoundingMode)", "math.toolbar.functions.number.max": "Maximum", "math.toolbar.functions.number.min": "Minimum", "math.toolbar.functions.number.sum": "Summation", @@ -226,6 +228,9 @@ "math.toolbar.functions.string.contains": "x contains y", "math.toolbar.functions.string.startsWith": "x start with y", "math.toolbar.functions.string.endsWith": "x end with y", + "math.toolbar.functions.string.substring": "Sub string of x. substring(x,start) 或 substring(x,start,end)", + "math.toolbar.functions.string.join": "concat a,b...n with x. join('-','a'): 'a'; join('-','a','b'): 'a-b'; join('-','a','b','c'): 'a-b-c'", + "math.toolbar.functions.string.replace": "replace t with r in x. replace('abc','a','x'): 'xbc'; join('abc','ab','de'): 'dec';", "math.toolbar.functions.date": "Date", "math.toolbar.functions.date.now": "Now", "math.toolbar.functions.date.between": "Between", diff --git a/io.sc.platform.core.frontend/src/platform/i18n/messages_tw_CN.json b/io.sc.platform.core.frontend/src/platform/i18n/messages_tw_CN.json index 3a4182a1..5682c940 100644 --- a/io.sc.platform.core.frontend/src/platform/i18n/messages_tw_CN.json +++ b/io.sc.platform.core.frontend/src/platform/i18n/messages_tw_CN.json @@ -202,11 +202,13 @@ "math.toolbar.functions.specialValue.infinite": "無窮處理, 當 x 為無窮時, 返回 y; 否則返回 x", "math.toolbar.functions.number": "數值處理函數", "math.toolbar.functions.number.abs": "絕對值", - "math.toolbar.functions.number.square": "x 的平方", - "math.toolbar.functions.number.pow": "x 的 y 次冪", - "math.toolbar.functions.number.exp": "e 的 x 冪", - "math.toolbar.functions.number.sqrt": "x 的平方根", - "math.toolbar.functions.number.root": "x 的 y 次方根", + "math.toolbar.functions.number.multiply": "x 乘以 y. 默認精度為 8 位, 可自定義精度: multiply(x,y,scale) 或 multiply(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.divide": "x 除以 y. 默認精度為 8 位, 可自定義精度: divide(x,y,scale) 或 divide(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.square": "x 的平方. 默認精度為 8 位, 可自定義精度: square(x,scale) 或 square(x,scale,RoundingMode)", + "math.toolbar.functions.number.pow": "x 的 y 次冪. 默認精度為 8 位, 可自定義精度: pow(x,y,scale) 或 pow(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.exp": "e 的 x 冪. 默認精度為 8 位, 可自定義精度: exp(x,scale) 或 exp(x,scale,RoundingMode)", + "math.toolbar.functions.number.sqrt": "x 的平方根. 默認精度為 8 位, 可自定義精度: sqrt(x,scale) 或 sqrt(x,scale,RoundingMode)", + "math.toolbar.functions.number.root": "x 的 y 次方根. 默認精度為 8 位, 可自定義精度: root(x,y,scale) 或 root(x,y,scale,RoundingMode)", "math.toolbar.functions.number.max": "最大值", "math.toolbar.functions.number.min": "最小值", "math.toolbar.functions.number.sum": "求和", @@ -226,6 +228,9 @@ "math.toolbar.functions.string.contains": "是否 x 包含 y", "math.toolbar.functions.string.startsWith": "x 是否以 y 開頭", "math.toolbar.functions.string.endsWith": "x 是否以 y 結尾", + "math.toolbar.functions.string.substring": "x 的子串. substring(x,start) 或 substring(x,start,end)", + "math.toolbar.functions.string.join": "採用 x 連接 a,b...n. join('-','a'): 'a'; join('-','a','b'): 'a-b'; join('-','a','b','c'): 'a-b-c'", + "math.toolbar.functions.string.replace": "用 r 替換 x 中的 t. replace('abc','a','x'): 'xbc'; join('abc','ab','de'): 'dec';", "math.toolbar.functions.date": "日期函數", "math.toolbar.functions.date.now": "當前日期", "math.toolbar.functions.date.between": "日期間隔", diff --git a/io.sc.platform.core.frontend/src/platform/i18n/messages_zh_CN.json b/io.sc.platform.core.frontend/src/platform/i18n/messages_zh_CN.json index 4597da32..66d4973d 100644 --- a/io.sc.platform.core.frontend/src/platform/i18n/messages_zh_CN.json +++ b/io.sc.platform.core.frontend/src/platform/i18n/messages_zh_CN.json @@ -202,11 +202,13 @@ "math.toolbar.functions.specialValue.infinite": "无穷处理, 当 x 为无穷时, 返回 y; 否则返回 x", "math.toolbar.functions.number": "数值处理函数", "math.toolbar.functions.number.abs": "绝对值", - "math.toolbar.functions.number.square": "x 的平方", - "math.toolbar.functions.number.pow": "x 的 y 次幂", - "math.toolbar.functions.number.exp": "e 的 x 幂", - "math.toolbar.functions.number.sqrt": "x 的平方根", - "math.toolbar.functions.number.root": "x 的 y 次方根", + "math.toolbar.functions.number.multiply": "x 乘以 y. 默认精度为 8 位, 可自定义精度: multiply(x,y,scale) 或 multiply(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.divide": "x 除以 y. 默认精度为 8 位, 可自定义精度: divide(x,y,scale) 或 divide(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.square": "x 的平方. 默认精度为 8 位, 可自定义精度: square(x,scale) 或 square(x,scale,RoundingMode)", + "math.toolbar.functions.number.pow": "x 的 y 次幂. 默认精度为 8 位, 可自定义精度: pow(x,y,scale) 或 pow(x,y,scale,RoundingMode)", + "math.toolbar.functions.number.exp": "e 的 x 幂. 默认精度为 8 位, 可自定义精度: exp(x,scale) 或 exp(x,scale,RoundingMode)", + "math.toolbar.functions.number.sqrt": "x 的平方根. 默认精度为 8 位, 可自定义精度: sqrt(x,scale) 或 sqrt(x,scale,RoundingMode)", + "math.toolbar.functions.number.root": "x 的 y 次方根. 默认精度为 8 位, 可自定义精度: root(x,y,scale) 或 root(x,y,scale,RoundingMode)", "math.toolbar.functions.number.max": "最大值", "math.toolbar.functions.number.min": "最小值", "math.toolbar.functions.number.sum": "求和", @@ -226,6 +228,9 @@ "math.toolbar.functions.string.contains": "是否 x 包含 y", "math.toolbar.functions.string.startsWith": "x 是否以 y 开头", "math.toolbar.functions.string.endsWith": "x 是否以 y 结尾", + "math.toolbar.functions.string.substring": "x 的子串. substring(x,start) 或 substring(x,start,end)", + "math.toolbar.functions.string.join": "采用 x 连接 a,b...n. join('-','a'): 'a'; join('-','a','b'): 'a-b'; join('-','a','b','c'): 'a-b-c'", + "math.toolbar.functions.string.replace": "用 r 替换 x 中的 t. replace('abc','a','x'): 'xbc'; join('abc','ab','de'): 'dec';", "math.toolbar.functions.date": "日期函数", "math.toolbar.functions.date.now": "当前日期", "math.toolbar.functions.date.between": "日期间隔", diff --git a/io.sc.platform.core.frontend/template-project/package.json b/io.sc.platform.core.frontend/template-project/package.json index d1abf267..69d28b6c 100644 --- a/io.sc.platform.core.frontend/template-project/package.json +++ b/io.sc.platform.core.frontend/template-project/package.json @@ -1,6 +1,6 @@ { "name": "platform-core", - "version": "8.2.80", + "version": "8.2.82", "description": "前端核心包,用于快速构建前端的脚手架", "private": false, "keywords": [], @@ -111,7 +111,7 @@ "mockjs": "1.1.0", "node-sql-parser": "5.3.6", "pinia": "2.3.0", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.developer.doc/package.json b/io.sc.platform.developer.doc/package.json index 98f170e2..5b393d79 100644 --- a/io.sc.platform.developer.doc/package.json +++ b/io.sc.platform.developer.doc/package.json @@ -28,7 +28,7 @@ "vuepress": "2.0.0-rc.15" }, "dependencies": { - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "vue": "3.5.13", "vue-i18n": "11.0.1" diff --git a/io.sc.platform.developer.frontend/package.json b/io.sc.platform.developer.frontend/package.json index 192f1a51..be5f2e94 100644 --- a/io.sc.platform.developer.frontend/package.json +++ b/io.sc.platform.developer.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.lcdp.frontend/package.json b/io.sc.platform.lcdp.frontend/package.json index 21213f8b..fad6ad51 100644 --- a/io.sc.platform.lcdp.frontend/package.json +++ b/io.sc.platform.lcdp.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.license.keygen.frontend/package.json b/io.sc.platform.license.keygen.frontend/package.json index 499c9756..2730d43e 100644 --- a/io.sc.platform.license.keygen.frontend/package.json +++ b/io.sc.platform.license.keygen.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.mvc.frontend/package.json b/io.sc.platform.mvc.frontend/package.json index 7dca89e2..787e75f4 100644 --- a/io.sc.platform.mvc.frontend/package.json +++ b/io.sc.platform.mvc.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.scheduler.manager.frontend/package.json b/io.sc.platform.scheduler.manager.frontend/package.json index 2051d94a..c3486078 100644 --- a/io.sc.platform.scheduler.manager.frontend/package.json +++ b/io.sc.platform.scheduler.manager.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.platform.system.frontend/package.json b/io.sc.platform.system.frontend/package.json index a1072caf..dd0b42f2 100644 --- a/io.sc.platform.system.frontend/package.json +++ b/io.sc.platform.system.frontend/package.json @@ -111,7 +111,7 @@ "mockjs": "1.1.0", "node-sql-parser": "5.3.6", "pinia": "2.3.0", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.standard.frontend/package.json b/io.sc.standard.frontend/package.json index dc4bcf1e..ca1ca991 100644 --- a/io.sc.standard.frontend/package.json +++ b/io.sc.standard.frontend/package.json @@ -112,7 +112,7 @@ "node-sql-parser": "5.3.6", "pinia": "2.3.0", "pinia-undo": "0.2.4", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7", diff --git a/io.sc.website/package.json b/io.sc.website/package.json index e72da2f8..b29a15e5 100644 --- a/io.sc.website/package.json +++ b/io.sc.website/package.json @@ -28,6 +28,6 @@ }, "dependencies": { "vue": "3.5.13", - "platform-core": "8.2.80" + "platform-core": "8.2.82" } } \ No newline at end of file diff --git a/wra.report.frontend/package.json b/wra.report.frontend/package.json index ce1ac053..699d12d2 100644 --- a/wra.report.frontend/package.json +++ b/wra.report.frontend/package.json @@ -111,7 +111,7 @@ "mockjs": "1.1.0", "node-sql-parser": "5.3.6", "pinia": "2.3.0", - "platform-core": "8.2.80", + "platform-core": "8.2.82", "quasar": "2.17.6", "sort-array": "5.0.0", "svg-path-commander": "2.1.7",