diff --git a/build-version.gradle b/build-version.gradle index 6a5f9c5a..36742105 100755 --- a/build-version.gradle +++ b/build-version.gradle @@ -15,6 +15,7 @@ ext['PlatformDependencyVersions'] =[ "org.codehaus.groovy:groovy-json" : "${groovy_version}", "org.codehaus.groovy:groovy-sql" : "${groovy_version}", "org.codehaus.groovy:groovy-xml" : "${groovy_version}", + "mysql:mysql-connector-java" : "${jdbc_mysql_version}", ]; /*********************************************************************** diff --git a/build.gradle b/build.gradle index e272a38f..9628b211 100644 --- a/build.gradle +++ b/build.gradle @@ -59,7 +59,7 @@ subprojects { // exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" // exclude group: "org.slf4j", module: "slf4j-jdk14" exclude group: "org.slf4j", module: "slf4j-nop" - exclude group: "com.mysql", module: "mysql-connector-j" + //exclude group: "com.mysql", module: "mysql-connector-j" if(PlatformDependencyVersions!=null && PlatformDependencyVersions.size()>0) { resolutionStrategy.eachDependency { DependencyResolveDetails detail -> diff --git a/erm.frontend/package.json b/erm.frontend/package.json index cf60fb8a..d15f710b 100644 --- a/erm.frontend/package.json +++ b/erm.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/gradle.properties b/gradle.properties index dd0ec5e8..7e35e8da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ application_version=1.0.0 platform_group=io.sc platform_version=8.2.7 platform_plugin_version=8.2.7 -platform_core_frontend_version=8.2.31 +platform_core_frontend_version=8.2.33 ########################################################### # dependencies version diff --git a/io.sc.engine.mv.frontend/package.json b/io.sc.engine.mv.frontend/package.json index 016b0918..9f38ecd9 100644 --- a/io.sc.engine.mv.frontend/package.json +++ b/io.sc.engine.mv.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgCustomerDistribution.java b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgCustomerDistribution.java index d53b56bf..c2bf4fe9 100644 --- a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgCustomerDistribution.java +++ b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgCustomerDistribution.java @@ -28,13 +28,13 @@ public class CfgCustomerDistribution extends AuditorEntity { private String id; //截断点配置名称 - @Column(name="FD_NAME", length=254) - @Size(max=254) + @Column(name="FD_NAME", length=255) + @Size(max=255) private String name; //截断点起始值 diff --git a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgDataExtractor.java b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgDataExtractor.java index 82218e6a..89c50c18 100644 --- a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgDataExtractor.java +++ b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgDataExtractor.java @@ -23,11 +23,11 @@ public class CfgDataExtractor extends AuditorEntity { private String id; //名称 - @Column(name="FD_NAME", length=254) + @Column(name="FD_NAME", length=255) private String name; //是否可用 - @Column(name="FD_ENABLE", length=254) + @Column(name="FD_ENABLE", length=255) @Convert(converter= NumericBooleanConverter.class) private Boolean enable =true; diff --git a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgThreshold.java b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgThreshold.java index acaf72be..e31f075e 100644 --- a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgThreshold.java +++ b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/configure/jpa/entity/CfgThreshold.java @@ -24,27 +24,27 @@ public class CfgThreshold extends AuditorEntity { private String id; //阈值名称 - @Column(name="FD_NAME", length=254) + @Column(name="FD_NAME", length=255) private String name; //等级(越大越好) - @Column(name="FD_LEVEL", length=254) + @Column(name="FD_LEVEL", length=255) private Integer level; //颜色 - @Column(name="FD_COLOR", length=254) + @Column(name="FD_COLOR", length=255) private String color; //阈值范围 - @Column(name="FD_RANGE", length=254) + @Column(name="FD_RANGE", length=255) private String range; //阈值范围(定量) - @Column(name="FD_QUANTITATIVE_RANGE", length=254) + @Column(name="FD_QUANTITATIVE_RANGE", length=255) private String quantitativeRange; //阈值范围(定性) - @Column(name="FD_QUALITATIVE_RANGE", length=254) + @Column(name="FD_QUALITATIVE_RANGE", length=255) private String qualitativeRange; public CfgThreshold(){} diff --git a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/viewer/jpa/entity/RuntimeParameter.java b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/viewer/jpa/entity/RuntimeParameter.java index 026a0cc3..66e75c68 100644 --- a/io.sc.engine.mv/src/main/java/io/sc/engine/mv/viewer/jpa/entity/RuntimeParameter.java +++ b/io.sc.engine.mv/src/main/java/io/sc/engine/mv/viewer/jpa/entity/RuntimeParameter.java @@ -24,11 +24,11 @@ public class RuntimeParameter extends BaseEntity { //运行时参数名称 @Id - @Column(name="FD_PARAM_NAME", length=254) + @Column(name="FD_PARAM_NAME", length=255) private String name; //运行时参数值 - @Column(name="FD_PARAM_VALUE", length=254) + @Column(name="FD_PARAM_VALUE", length=255) private String value; //参数显示顺序号 diff --git a/io.sc.engine.rule.frontend/package.json b/io.sc.engine.rule.frontend/package.json index 95f74c87..6de361e6 100644 --- a/io.sc.engine.rule.frontend/package.json +++ b/io.sc.engine.rule.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue b/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue index 55a16e0d..cd266028 100644 --- a/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue +++ b/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue @@ -198,7 +198,7 @@ return arg.selected; }, click: (arg) => { - Downloader.get(Environment.apiContextPath('/api/re/dictionary/export/' + arg.selected.id)); + Downloader.get(Environment.apiContextPath('/api/re/dictionary/export/' + arg.selected.id), { loading: true }); }, }, ]" diff --git a/io.sc.engine.rule.frontend/src/views/lib/LibGrid.vue b/io.sc.engine.rule.frontend/src/views/lib/LibGrid.vue index 8aa2f964..62afc56c 100644 --- a/io.sc.engine.rule.frontend/src/views/lib/LibGrid.vue +++ b/io.sc.engine.rule.frontend/src/views/lib/LibGrid.vue @@ -175,7 +175,7 @@ return args.selected; }, click: (args: any) => { - Downloader.get(Environment.apiContextPath('/api/re/lib/export/' + args.selected.id)); + Downloader.get(Environment.apiContextPath('/api/re/lib/export/' + args.selected.id), { loading: true }); }, }, ]" diff --git a/io.sc.engine.rule.frontend/src/views/resources/designer/Parameter.vue b/io.sc.engine.rule.frontend/src/views/resources/designer/Parameter.vue index d1674348..c7f2261e 100644 --- a/io.sc.engine.rule.frontend/src/views/resources/designer/Parameter.vue +++ b/io.sc.engine.rule.frontend/src/views/resources/designer/Parameter.vue @@ -34,6 +34,7 @@ icon: 'bi-tag', afterClick: (args: any) => { args.grid.getEditorForm().setFieldValue('type', 'CONSTANT'); + args.grid.getEditorForm().setFieldValue('code', null); }, }, 'separator', @@ -44,6 +45,7 @@ icon: 'bi-terminal', afterClick: (args: any) => { args.grid.getEditorForm().setFieldValue('type', 'IN'); + args.grid.getEditorForm().setFieldValue('code', null); }, }, { @@ -53,6 +55,7 @@ icon: 'bi-list-check', afterClick: (args: any) => { args.grid.getEditorForm().setFieldValue('type', 'IN_OPTION'); + args.grid.getEditorForm().setFieldValue('code', null); args.grid.getEditorForm().setFieldValue('valueTypeSelect', 'java.lang.String'); }, }, @@ -72,6 +75,7 @@ icon: 'bi-superscript', afterClick: (args: any) => { args.grid.getEditorForm().setFieldValue('type', 'INTERMEDIATE'); + args.grid.getEditorForm().setFieldValue('code', null); }, }, { @@ -81,6 +85,7 @@ icon: 'bi-shuffle', afterClick: (args: any) => { args.grid.getEditorForm().setFieldValue('type', 'OUT'); + args.grid.getEditorForm().setFieldValue('code', null); }, }, 'separator', diff --git a/io.sc.engine.rule.frontend/src/views/shared/processors/NumberRange.ts b/io.sc.engine.rule.frontend/src/views/shared/processors/NumberRange.ts index 0773e55e..48451bf5 100644 --- a/io.sc.engine.rule.frontend/src/views/shared/processors/NumberRange.ts +++ b/io.sc.engine.rule.frontend/src/views/shared/processors/NumberRange.ts @@ -148,7 +148,7 @@ class NumberRange extends Processor { { name: 'minIncluded', label: $t('include'), type: 'w-checkbox' }, { name: 'max', label: $t('maxValue'), type: 'w-text', colSpan: 3 }, { name: 'maxIncluded', label: $t('include'), type: 'w-checkbox' }, - { name: 'value', label: $t('value'), type: 'w-number', colSpan: 3 }, + { name: 'value', label: $t('value'), type: 'w-text', colSpan: 3 }, ], }, }, diff --git a/io.sc.engine.rule.frontend/src/views/shared/processors/ScoreCard.ts b/io.sc.engine.rule.frontend/src/views/shared/processors/ScoreCard.ts index 1b0bc7b5..026d4fbd 100644 --- a/io.sc.engine.rule.frontend/src/views/shared/processors/ScoreCard.ts +++ b/io.sc.engine.rule.frontend/src/views/shared/processors/ScoreCard.ts @@ -20,9 +20,11 @@ class ScoreCard extends Processor { this.#numberRange = new NumberRange(Processor.SCORE_CARD, context); if (this.targetType === Processor.PARAMETER) { - axios.get(Environment.apiContextPath('/api/re/model/parameter/listParemtersByParameterId/' + this.context.target.id)).then((response) => { - this.#parameterOptionsRef.value = Tools.objects2Options(response.data, 'name', 'code'); - }); + axios + .get(Environment.apiContextPath('/api/re/model/parameter/findParametersAndParentParametersByParameterId?parameterId=' + this.context.target.id)) + .then((response) => { + this.#parameterOptionsRef.value = Tools.objects2Options(response.data, 'name', 'code'); + }); } } @@ -156,7 +158,7 @@ class ScoreCard extends Processor { fields: [ { name: 'type', label: $t('type'), type: 'w-text', showIf: false }, { colSpan: 7, name: 'code', label: $t('name'), type: 'w-select', options: this.#parameterOptionsRef.value }, - { colSpan: 5, name: 'weight', label: $t('weight'), type: 'w-number', precision: 6 }, + { colSpan: 5, name: 'weight', label: $t('weight'), type: 'w-number', precision: 6, defaultValue: 1.0 }, ...this.#conditionRange.getEditorFields(), ...this.#numberRange.getEditorFields(), ], diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/DictionaryEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/DictionaryEntity.java index 71c71e2a..c49d33e9 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/DictionaryEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/DictionaryEntity.java @@ -45,13 +45,13 @@ public class DictionaryEntity extends CorporationAuditorEntity imp protected String id; //代码 - @Column(name="CODE_", length=254) - @Size(max=254) + @Column(name="CODE_", length=255) + @Size(max=255) protected String code; //名称 - @Column(name="NAME_", length=254) - @Size(max=254) + @Column(name="NAME_", length=255) + @Size(max=255) protected String name; //名称(字母) diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/controller/ParameterWebController.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/controller/ParameterWebController.java index 4ab04de7..c12c68c7 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/controller/ParameterWebController.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/controller/ParameterWebController.java @@ -37,6 +37,11 @@ public class ParameterWebController extends RestCrudController findParametersAndParentParametersByParameterId(@RequestParam(name="parameterId",required = false)String parameterId) throws Exception { + return EntityVoUtil.toVo(service.findParametersAndParentParametersByParameterId(parameterId)); + } + // @Override // protected ResponseWrapper iscFetch(HttpServletRequest request, HttpServletResponse response,ParameterEntity queryExampleEntity, QueryParameter queryParameter) throws Exception { // List result =new ArrayList(); diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterValidatorEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterValidatorEntity.java index 8aa6a099..e7178740 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterValidatorEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterValidatorEntity.java @@ -53,8 +53,8 @@ public class ParameterValidatorEntity extends CorporationAuditorEntity findParametersByParameterId(String parameterId) throws Exception; + /** + * 通过参数ID查找参数列表及其父模型包含的输入参数列表 + * @param parameterId 参数ID + * @return 参数实体列表 + * @throws Exception 违例 + */ + public List findParametersAndParentParametersByParameterId(String parameterId) throws Exception; + /** * 深度克隆模型参数实体 * @param parameterId 模型参数ID diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/service/impl/ParameterServiceImpl.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/service/impl/ParameterServiceImpl.java index f3b717f3..a37c55f5 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/service/impl/ParameterServiceImpl.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/service/impl/ParameterServiceImpl.java @@ -6,6 +6,7 @@ import io.sc.engine.rule.core.po.lib.Indicator; import io.sc.engine.rule.core.util.CodeConvertor; import io.sc.engine.rule.core.util.ExpressionReplacer; import io.sc.engine.rule.core.util.ValueTypeUtil; +import io.sc.engine.rule.server.common.service.support.Parameter; import io.sc.engine.rule.server.dictionary.entity.DictionaryEntity; import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassDictionaryEntity; import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassFieldEntity; @@ -33,6 +34,7 @@ import io.sc.platform.core.Environment; import io.sc.platform.orm.entity.support.EntityChangedEventType; import io.sc.platform.orm.service.impl.DaoServiceImpl; import io.sc.platform.orm.util.EntityVoUtil; +import io.sc.platform.util.CollectionUtil; import io.sc.platform.util.FileUtil; import org.dmg.pmml.DataType; import org.dmg.pmml.PMML; @@ -102,6 +104,37 @@ public class ParameterServiceImpl extends DaoServiceImpl findParametersAndParentParametersByParameterId(String parameterId) throws Exception { + List result =new ArrayList<>(); + + if(!StringUtils.hasText(parameterId)){ + return Collections.emptyList(); + } + ParameterEntity parameterEntity =this.findById(parameterId); + if(parameterEntity==null){ + return Collections.emptyList(); + } + ModelEntity modelEntity =parameterEntity.getModel(); + if(modelEntity==null){ + return Collections.emptyList(); + } + result.addAll(findParametersByModelId(modelEntity.getId())); + + //父模型参数 + ModelEntity parentModelEntity =modelEntity.getParent(); + while(parentModelEntity!=null){ + List parentParameterEntities =parentModelEntity.getParameters(); + if(CollectionUtil.hasElements(parentParameterEntities)){ + for(ParameterEntity entity : parentParameterEntities) { + result.add(entity); + } + } + parentModelEntity =parentModelEntity.getParent(); + } + return result; + } + @Override @Transactional public ParameterEntity add(ParameterEntity entity) throws Exception { diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/vo/ParameterVo.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/vo/ParameterVo.java index 39b8ba8e..db6ac07e 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/vo/ParameterVo.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/vo/ParameterVo.java @@ -42,7 +42,7 @@ public class ParameterVo extends CorporationAuditorVo { protected Boolean valueTypeIsList; //默认值 - @Column(name="FD_DEFAULT_VALUE", length=254) + @Column(name="FD_DEFAULT_VALUE", length=255) protected String defaultValue; //排序 diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/ResourceEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/ResourceEntity.java index cb4e6da2..ee9ad6fc 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/ResourceEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/ResourceEntity.java @@ -8,6 +8,7 @@ import io.sc.engine.rule.core.enums.ResourceType; import io.sc.engine.rule.server.resource.vo.ResourceVo; import io.sc.engine.rule.server.testcase.entity.ResourceTestCaseEntity; import io.sc.platform.core.util.PinyinUtil; +import io.sc.platform.core.constraints.IdentifierConstraint; import io.sc.platform.orm.DeepClone; import io.sc.platform.orm.IdClearable; import io.sc.platform.orm.entity.CorporationAuditorEntity; @@ -49,13 +50,14 @@ public class ResourceEntity extends CorporationAuditorEntity impleme protected ResourceType type; //代码 - @Column(name="CODE_", length=254) - @Size(max=254) + @Column(name="CODE_", length=255) + @Size(max=255) + @IdentifierConstraint protected String code; //名称 - @Column(name="NAME_", length=254) - @Size(max=254) + @Column(name="NAME_", length=255) + @Size(max=255) protected String name; //名称 diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseEntity.java index 85464ae4..3ba8294c 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseEntity.java @@ -49,13 +49,13 @@ public class TestCaseEntity extends CorporationAuditorEntity impleme protected String id; //名称 - @Column(name="NAME_", length=254) - @Size(max=254) + @Column(name="NAME_", length=255) + @Size(max=255) protected String name; //描述 - @Column(name="DESCRIPTION_", length=254) - @Size(max=254) + @Column(name="DESCRIPTION_", length=255) + @Size(max=255) protected String description; //最近一次执行测试用例的日期 diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseParameterEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseParameterEntity.java index 04c2b5f8..28d2f78a 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseParameterEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/TestCaseParameterEntity.java @@ -29,8 +29,8 @@ public class TestCaseParameterEntity extends CorporationAuditorEntity\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, - "expectValue" : null, - "resultValue" : "\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", - "testResult" : "UN_PASSED", - "skipCheck" : false - }, { - "id" : "3ee8e56c-3ce7-4b95-ba39-2fa1c60a0cb0", + "id" : "08ea0123-5271-41d5-898d-131a755907c7", "code" : "M1735521220273", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3532,16 +3523,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "4a973b52-95c0-4f39-befe-954b8db1d26f", - "code" : "I1732074381040", - "inputValue" : null, + "id" : "78a49e45-359e-4490-a5d2-b20f97f603ff", + "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, "expectValue" : null, - "resultValue" : "2019022208310062527930", + "resultValue" : "\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", "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "8a6a1eb7-b146-4df6-a07d-af743dfcf278", + "id" : "9916e446-31c3-4e69-ab2c-ab8103e4a805", "code" : "P1735521276667", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3549,10 +3540,19 @@ "resultValue" : "true", "testResult" : "UN_PASSED", "skipCheck" : false + }, { + "id" : "9b2e2cc1-a41c-47e0-87c7-2d2ccc1668c8", + "code" : "I1732074381040", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : "2019022208310062527930", + "testResult" : "UN_PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "8ae02201-c49e-46c9-b2c2-2ed19754cd21", + "id" : "a66f87f0-4732-4680-b192-88596ec46819", "code" : "M1735521220273", "name" : "特征", "description" : null, @@ -3563,7 +3563,7 @@ "children" : null, "parameters" : [ { "type" : "INDICATOR", - "id" : "dc4dfe0a-c5eb-496c-aaa4-a977fdc7add8", + "id" : "8a5be8e0-a8ef-4daa-b107-c0baad637df5", "code" : "I1732009101910", "name" : "报文", "description" : null, @@ -3581,7 +3581,7 @@ "indicatorCode" : "I1732009101910" }, { "type" : "INDICATOR", - "id" : "4d316321-bb1f-491c-91a7-0986eb1a5402", + "id" : "ec1d2e18-bea6-477b-8862-72e6c98869a5", "code" : "I1732074381040", "name" : "征信报告编号", "description" : null, @@ -3599,7 +3599,7 @@ "indicatorCode" : "I1732074381040" }, { "type" : "OUT", - "id" : "cb258b81-1393-417f-91ab-ac2ed123615a", + "id" : "d842d337-7d62-4735-a882-d3ae3f26d976", "code" : "P1735521276667", "name" : "征信报工是否有效", "description" : null, @@ -3613,7 +3613,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "da6187ec-9796-4c30-8899-98fff606fd3b", + "id" : "c3804355-d1f7-4d93-87e3-91010bde91a8", "description" : null, "order" : 1, "enable" : true, @@ -3627,7 +3627,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "5fc8bc93-b2b5-4723-b0a4-e1b2d8b4c4a5", + "id" : "fa7a49dc-3169-4987-b9b5-45f5738895c5", "code" : "M1735112567050", "name" : "执行流", "description" : null, @@ -3635,7 +3635,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "7d63f40c-7cea-43cd-8b7f-7d979959e0aa", + "id" : "503f2b64-0d56-4313-90b1-ec9939a8bcbb", "code" : "M1735008434943", "name" : "013-执行流-冠军挑战者", "description" : null, @@ -3644,22 +3644,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "aa5af3c4-6745-4734-8bcd-99cdd1cd3da7", + "id" : "42cd1cd5-36f0-456d-a528-0aabe39bbdfc", "name" : "013-执行流-冠军挑战者", "description" : null, "lastTestDate" : "2025-01-10 09:25:39", "testResult" : "UN_PASSED", "parameters" : [ { - "id" : "195e7f2d-6b6b-4b36-baf1-f3f66c5dc72c", - "code" : "M1735008434943", - "inputValue" : null, + "id" : "0b7cb502-8ec4-46f4-8f89-d13a00344902", + "code" : "P1735011685888", + "inputValue" : "30", "inputValueValidateMessage" : null, "expectValue" : null, - "resultValue" : null, + "resultValue" : "", "testResult" : null, "skipCheck" : false }, { - "id" : "59c9e898-a421-4530-8d04-12d32b38c3bb", + "id" : "3a17ff2b-2354-408c-95af-b15ddfbe7bbb", "code" : "P1735011716680", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3668,7 +3668,7 @@ "testResult" : "UN_PASSED", "skipCheck" : false }, { - "id" : "8ee20f01-6835-4475-8bc6-3c0ce3e74c48", + "id" : "634d3f82-3d2f-4dae-a4e0-cbbda49f148c", "code" : "P1735011698621", "inputValue" : "20000", "inputValueValidateMessage" : null, @@ -3677,18 +3677,18 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "ea4f1714-bcb8-4df7-97eb-f7b25ca54a0a", - "code" : "P1735011685888", - "inputValue" : "30", + "id" : "ea8a21ad-1d9b-4fe1-b8ae-bce5a643ebbe", + "code" : "M1735008434943", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, - "resultValue" : "", + "resultValue" : null, "testResult" : null, "skipCheck" : false } ] } ], "model" : { - "id" : "8e6a70ef-95e8-409f-b128-68b506e2a268", + "id" : "3606ac5a-be59-45f7-9a77-c21ab4bdebeb", "code" : "M1735008434943", "name" : "013-执行流-冠军挑战者", "description" : null, @@ -3699,7 +3699,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "0ef83e76-912f-42fb-9a50-89e021a17966", + "id" : "b7d7b43b-4b4d-40ea-845f-1a22ad377f89", "code" : "P1735011685888", "name" : "年龄", "description" : null, @@ -3714,7 +3714,7 @@ "processors" : null }, { "type" : "IN", - "id" : "b54133f2-c077-4096-8c43-dab17d30d37d", + "id" : "6b626dce-a7aa-46f6-817e-d9a2df56b508", "code" : "P1735011698621", "name" : "申请额度", "description" : null, @@ -3729,7 +3729,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "8c53fafe-8efb-439a-aa1f-80207a028cb9", + "id" : "b5f61c8f-4b65-4e4f-8717-7a08e29118e7", "code" : "P1735011716680", "name" : "批准额度", "description" : null, @@ -3743,7 +3743,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "34772323-22d0-4faa-a2ad-f83ccad2476c", + "id" : "40352629-0ed4-4e58-85b4-82fdf8aca0b8", "description" : null, "order" : 1, "enable" : true, @@ -3755,7 +3755,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "a8316dd2-9346-453a-bdeb-378ac22d36b1", + "id" : "13a988e6-b19d-434f-9d03-8878134ccfaa", "code" : "M1735029732136", "name" : "013-执行流-可配置模型", "description" : null, @@ -3764,13 +3764,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "610fbd40-48f0-44ea-8abe-ab6860c316fd", + "id" : "b68b1416-76e8-4012-9cb6-bf2e9ff757d7", "name" : "013-执行流-可配置模型", "description" : null, "lastTestDate" : "2025-01-10 09:25:33", "testResult" : "PASSED", "parameters" : [ { - "id" : "84e6f23f-c21d-4d9f-b4e9-27502536dd10", + "id" : "8bb27bd1-f762-468c-aec1-38143358b40e", + "code" : "P1735029897768", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "11000", + "resultValue" : "11000.00", + "testResult" : "PASSED", + "skipCheck" : false + }, { + "id" : "bedf9240-f948-4dd5-9cf6-27663ab8e1d6", "code" : "P1735029868655", "inputValue" : "30", "inputValueValidateMessage" : null, @@ -3779,36 +3788,27 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "9ac4d505-7333-45c2-8558-3168086b4edf", - "code" : "P1735029881862", - "inputValue" : "20000", + "id" : "e3c4b76d-fa7f-47ab-b01f-7dac69aa6d48", + "code" : "M1735029732136", + "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false }, { - "id" : "eb49c0f4-8fd5-4cbf-b28b-629646c12f33", - "code" : "M1735029732136", - "inputValue" : null, + "id" : "fc649a9f-a46d-43a8-9d7c-9ab4dd32d190", + "code" : "P1735029881862", + "inputValue" : "20000", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, "testResult" : null, "skipCheck" : false - }, { - "id" : "ee4c5c1e-d2a4-44ca-9aa1-171cd26df5e0", - "code" : "P1735029897768", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "11000", - "resultValue" : "11000.00", - "testResult" : "PASSED", - "skipCheck" : false } ] } ], "model" : { - "id" : "6ee24167-3c4b-4a9b-b397-32f0a056bd10", + "id" : "6210a433-50f0-4e84-b930-14f6ab9ab12c", "code" : "M1735029732136", "name" : "013-执行流-可配置模型", "description" : null, @@ -3819,7 +3819,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "85496056-911e-459d-a069-f76d65dfeebd", + "id" : "9efc519c-8887-4526-b5cf-a86a5e569eb3", "code" : "P1735029868655", "name" : "年龄", "description" : null, @@ -3834,7 +3834,7 @@ "processors" : null }, { "type" : "IN", - "id" : "dbe7173c-8461-4326-8069-42652f1ed581", + "id" : "350cd020-fff6-480f-93ea-f1122125d25d", "code" : "P1735029881862", "name" : "申请额度", "description" : null, @@ -3849,7 +3849,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "105ebbb6-4b36-474b-82fd-3c7f0d810735", + "id" : "ec53c726-0116-4551-9088-b20ad1101a6a", "code" : "P1735029897768", "name" : "批准额度", "description" : null, @@ -3863,7 +3863,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "6fbfcc20-7b3a-4619-9230-f80d4cda065a", + "id" : "a5d53585-0ddc-4785-86db-3191dcb3a1c2", "description" : null, "order" : 1, "enable" : true, @@ -3875,7 +3875,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "35eb7be6-be9d-450a-b32f-cc3672c4038f", + "id" : "a8f37e70-142d-4421-95f6-bdd9a057ce50", "code" : "M1735032161849", "name" : "013-执行流-输出调试信息", "description" : null, @@ -3884,13 +3884,31 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "ddabcc0d-3a6e-4127-baf9-a6b764754345", + "id" : "fa6a5550-2c0b-464a-ae91-6f8b5cc065f0", "name" : "013-执行流-输出调试信息", "description" : null, "lastTestDate" : "2025-01-10 09:25:40", "testResult" : "PASSED", "parameters" : [ { - "id" : "0432b0ca-bf50-49a9-ab85-b8016a4a712d", + "id" : "3e5d30ae-0a6b-4bb5-9ec6-1a3a0c2a8975", + "code" : "M1735030791023", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "6c662573-58e4-4c5d-bec7-824a09eadcea", + "code" : "M1735030799343", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "6ee3e0eb-8289-4d67-a6ce-b767bcdbc220", "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3899,7 +3917,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "1d641b68-94b2-4a4f-83cc-8c2d2dc04f9b", + "id" : "9ac889ba-3ad7-4113-8688-5f01e4d7eb95", "code" : "P1735030849216", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3908,7 +3926,7 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "73aab321-0b58-4439-a152-c892aee7a18b", + "id" : "b2cf558c-a159-4ec4-b222-a07f99743192", "code" : "M1735032161849", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3917,25 +3935,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "8dbaf2fd-9372-466a-aa0b-8cc490d0d6f9", - "code" : "M1735030791023", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "8ecfd44d-b8c5-4c43-8b21-b82a6e4f4049", - "code" : "P1735030834951", - "inputValue" : "A", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "9ad6ea50-9872-4449-accd-1336d0d4b8ae", + "id" : "c8807d58-bb47-4e4d-b148-a56792a2d1f3", "code" : "P1735031008340", "inputValue" : null, "inputValueValidateMessage" : null, @@ -3944,9 +3944,9 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "b4b37af9-6a2f-4075-89f9-5cbef6e4c97c", - "code" : "M1735030799343", - "inputValue" : null, + "id" : "e1d2489c-6db7-45a0-a9cf-2863721e2cb4", + "code" : "P1735030834951", + "inputValue" : "A", "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, @@ -3955,7 +3955,7 @@ } ] } ], "model" : { - "id" : "a76d567f-dfac-49b8-9915-8d644972f4d5", + "id" : "0aac78f0-ace1-41d4-88df-1ccb0cd7b139", "code" : "M1735032161849", "name" : "013-执行流-输出调试信息", "description" : null, @@ -3964,7 +3964,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "37460fb8-a069-42b4-b307-ee9fb20cd395", + "id" : "72971a6a-c5ae-43dc-ad34-85cce6b12e78", "code" : "M1735030791023", "name" : "子模型A", "description" : null, @@ -3975,7 +3975,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "da823c6b-a9f7-4562-9c2b-36574abf3191", + "id" : "a1f3a03d-49cf-4043-a5ba-3e5911fee345", "code" : "P1735030972300", "name" : "子模型A结果值", "description" : null, @@ -3989,7 +3989,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "0b9e2ae3-5adb-459d-9656-37c67efd40b3", + "id" : "d6eab30c-4a95-4309-9379-763179aa903f", "description" : null, "order" : 1, "enable" : true, @@ -3997,7 +3997,7 @@ } ] } ] }, { - "id" : "317b9a44-f000-4fcf-b57e-9c7fbc01023d", + "id" : "75aa9b09-c496-4ba3-a4ee-ad7ac709b634", "code" : "M1735030799343", "name" : "子模型B", "description" : null, @@ -4008,7 +4008,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "ba1d7857-12ba-4a3c-9554-71332ad093dc", + "id" : "6d827ba3-81b2-4ea7-b320-0c5d95871180", "code" : "P1735031008340", "name" : "子模型B结果值", "description" : null, @@ -4022,7 +4022,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "a7314a46-d077-4c87-9afb-1ddbfaf22217", + "id" : "aa082d0f-9fb5-42d3-b205-fa22610bc87e", "description" : null, "order" : 1, "enable" : true, @@ -4032,7 +4032,7 @@ } ], "parameters" : [ { "type" : "IN", - "id" : "7c5bc058-603b-4139-bf41-9f2947f7c0e9", + "id" : "8aed9ab3-640e-4076-9cb2-facf345f88ef", "code" : "P1735030834951", "name" : "需要调用的子模型名称", "description" : null, @@ -4047,7 +4047,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "f66fdd23-7dfb-4b7e-a096-acd00b424e93", + "id" : "3fd88927-52ab-415d-9f48-feb91dae72f7", "code" : "P1735030849216", "name" : "结果值", "description" : null, @@ -4061,7 +4061,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "f853d14a-327b-40d2-8b41-1a8c70a2f2ee", + "id" : "712d557d-febf-4147-aff3-5f8e7579db16", "description" : null, "order" : 1, "enable" : true, @@ -4073,7 +4073,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "fee739bb-a6ae-46a3-b966-fcd98e2f00d0", + "id" : "a622e378-7ef4-453c-806c-8bcb9e357ff5", "code" : "M1735030765203", "name" : "013-执行流-子模型", "description" : null, @@ -4082,23 +4082,23 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "78df8bcf-1b03-42be-b09c-470126527269", + "id" : "20bb9b7a-73bc-4151-a149-72075bda3c18", "name" : "013-执行流-子模型", "description" : null, - "lastTestDate" : "2025-01-10 09:25:34", + "lastTestDate" : "2025-01-10 09:25:35", "testResult" : "PASSED", "parameters" : [ { - "id" : "081c1838-b0c0-4ac1-be77-77ae4e1c7418", - "code" : "P1735031008340", + "id" : "05993bea-4b49-4290-9125-f68587c6ed49", + "code" : "M1735030791023", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : "PASSED", + "testResult" : null, "skipCheck" : false }, { - "id" : "16ef4fa0-51cd-4d91-82b1-fb5626fb7460", - "code" : "M1735030799343", + "id" : "1d8426f6-1273-477b-ac2a-af1e255b7e69", + "code" : "M1735030765203", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4106,7 +4106,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "29f6c641-8c77-4e72-aa8c-2ae54488e71f", + "id" : "388c867a-0d57-4cf5-b490-a91970b157d2", + "code" : "P1735030834951", + "inputValue" : "A", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "475d7cdb-e78e-4879-ba6f-106d4b4669bb", "code" : "P1735030849216", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4115,17 +4124,17 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "65751040-329b-492a-a723-18902ac6c85d", - "code" : "M1735030765203", + "id" : "8e4a18f2-22d7-4af5-8954-a5fdb6f70785", + "code" : "P1735031008340", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "7a784f79-2f4b-4a91-8819-0b28984c7916", - "code" : "M1735030791023", + "id" : "9112ef0a-d9a7-43e4-b14f-402e1b1ee79a", + "code" : "M1735030799343", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4133,16 +4142,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "c0375f00-d15e-4fd7-92d7-9a2822fc7230", - "code" : "P1735030834951", - "inputValue" : "A", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "c21de2e5-4b97-4c3d-870a-f7baa46d98cf", + "id" : "ad263e8c-7a8c-4d4e-85b7-b3120b26743a", "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4153,40 +4153,40 @@ } ] }, { "type" : "MODEL", - "id" : "7c08d9fd-ada1-4615-a81b-47ca81be4da8", + "id" : "546a23bf-ab29-4a15-858c-156a7dd96f03", "name" : "013-执行流-子模型", "description" : null, - "lastTestDate" : "2025-01-10 09:25:35", + "lastTestDate" : "2025-01-10 09:25:34", "testResult" : "PASSED", "parameters" : [ { - "id" : "0b99b813-e487-4645-bcae-121339866393", - "code" : "P1735030972300", + "id" : "458fd043-29e5-4f59-973f-91a71e7d178c", + "code" : "M1735030791023", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "AAA", - "resultValue" : "AAA", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false }, { - "id" : "143a60b3-46e2-4a39-a651-143d1ab3dd78", - "code" : "M1735030799343", + "id" : "91f52e17-29b1-46ba-9838-121b271b6707", + "code" : "P1735031008340", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : null, + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "26ee9133-9219-4a8b-ab58-66430924e502", - "code" : "P1735031008340", + "id" : "9a15aa9d-1d37-499f-9b60-5261e0371a10", + "code" : "M1735030765203", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, "resultValue" : null, - "testResult" : "PASSED", + "testResult" : null, "skipCheck" : false }, { - "id" : "2ede9494-7354-41d7-8dbc-4ceb2d5eac65", + "id" : "9a323575-5cee-4eb9-bf8a-e48c665933dc", "code" : "P1735030849216", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4195,17 +4195,17 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "3a64a0e0-6760-41a6-ac5c-053be32cda96", - "code" : "M1735030765203", + "id" : "c0f7d661-fd07-4617-a951-22596c4424c3", + "code" : "P1735030972300", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "AAA", + "resultValue" : "AAA", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "4ac8ec5d-931d-4a46-b019-dd40b3cca461", - "code" : "M1735030791023", + "id" : "cc5e1eac-670d-4acc-88a5-f26e0614bb94", + "code" : "M1735030799343", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4213,7 +4213,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "a1334825-694e-4090-a551-52f50f565eab", + "id" : "e11b2f9c-7f84-4919-b61d-8d856b77caa3", "code" : "P1735030834951", "inputValue" : "A", "inputValueValidateMessage" : null, @@ -4224,7 +4224,7 @@ } ] } ], "model" : { - "id" : "36aea8d7-566c-4cb8-b135-35f78b8dc38e", + "id" : "bb68f4c0-f913-481e-a065-b0fa0aac6d2a", "code" : "M1735030765203", "name" : "013-执行流-子模型", "description" : null, @@ -4233,7 +4233,7 @@ "category" : "OTHER", "executeMode" : "UP_DOWN", "children" : [ { - "id" : "db8548dd-06bf-4976-9937-3f18f05d4966", + "id" : "3ea019fd-25bc-4773-b281-349c8a695d6c", "code" : "M1735030791023", "name" : "子模型A", "description" : null, @@ -4244,7 +4244,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "0407068e-7371-45ce-b4f5-db91a53367b9", + "id" : "6ba891f3-a5dc-43cf-b12c-fd7b7966d53e", "code" : "P1735030972300", "name" : "子模型A结果值", "description" : null, @@ -4258,7 +4258,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "a8944475-5120-43c4-8d3d-231c00e14cb0", + "id" : "9ca56abc-6fa9-4339-a402-e1746e36f517", "description" : null, "order" : 1, "enable" : true, @@ -4266,7 +4266,7 @@ } ] } ] }, { - "id" : "871dbd01-59e8-49ac-a785-effd11ecf21d", + "id" : "2719c6f5-d742-4161-9194-47119b7e6bc3", "code" : "M1735030799343", "name" : "子模型B", "description" : null, @@ -4277,7 +4277,7 @@ "children" : null, "parameters" : [ { "type" : "OUT", - "id" : "311b4515-3b05-4f41-97c1-31570da003fd", + "id" : "168f67d0-1fc5-4d3f-8630-092d074ec346", "code" : "P1735031008340", "name" : "子模型B结果值", "description" : null, @@ -4291,7 +4291,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "7d00d615-f5f3-43b9-a947-655b5e0d36f0", + "id" : "0fab9bb4-0a2d-4e6c-ad09-0e7257f678cc", "description" : null, "order" : 1, "enable" : true, @@ -4301,7 +4301,7 @@ } ], "parameters" : [ { "type" : "IN", - "id" : "af2243a2-2ab6-450e-99ea-62e1b8d683ca", + "id" : "ec117ef6-61b5-4e72-853a-68f7b65d7e63", "code" : "P1735030834951", "name" : "需要调用的子模型名称", "description" : null, @@ -4316,7 +4316,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "796c30f1-bd77-4173-afd8-029204397c42", + "id" : "ced4b87a-0e80-4b51-ae3b-351369fb5845", "code" : "P1735030849216", "name" : "结果值", "description" : null, @@ -4330,7 +4330,7 @@ "validators" : null, "processors" : [ { "type" : "EXECUTION_FLOW", - "id" : "cfe6106d-6995-4c33-8c41-7623a9a0f853", + "id" : "b8aed4a9-9b10-40fd-8bbb-ded47246e294", "description" : null, "order" : 1, "enable" : true, @@ -4340,13 +4340,690 @@ }, "effectiveDate" : null, "imports" : "" + }, { + "type" : "MODEL", + "id" : "44edb644-0fd0-425e-8ea0-d8097539f291", + "code" : "M1736753880198", + "name" : "零售准入审批策略", + "description" : null, + "version" : 1, + "status" : "SKETCH", + "children" : null, + "testCases" : null, + "model" : { + "id" : "8f3aada3-a483-46e2-9217-7adcf1f00f46", + "code" : "M1736753880198", + "name" : "零售准入审批策略", + "description" : null, + "enable" : true, + "order" : 0, + "category" : "OTHER", + "executeMode" : "UP_DOWN", + "children" : [ { + "id" : "f385c216-387e-442b-a148-df761216d1e8", + "code" : "M1736753912864", + "name" : "政策拒绝", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "UP_DOWN", + "children" : [ { + "id" : "ef0d67fa-fbe4-4bbb-89c2-6db12c3ce079", + "code" : "M1736753939646", + "name" : "基本信息拒绝", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "UP_DOWN", + "children" : [ { + "id" : "b69ea989-2162-4fcb-b48b-3dffe230c2a4", + "code" : "M1736753955018", + "name" : "申请人年龄拒绝", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "031fa716-630f-4a33-87bb-93a08d8d6b90", + "code" : "P1736753969316", + "name" : "申请人年龄", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "48a6c495-f0eb-4577-9eca-4bbf26848e45", + "code" : "P1736753991037", + "name" : "申请人年龄拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "d570fb36-7278-444c-b189-d4559602f8db", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736753969316}<18 || ${P1736753969316}>59", + "ternaryTrue" : "true", + "ternaryFalse" : "false" + } ] + } ] + }, { + "id" : "e36e767d-9344-40af-be2c-c6b755543630", + "code" : "M1736754046043", + "name" : "蚂蚁信用分拒绝", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "3dcb93e9-f016-4d44-bb39-0a849d36a1d0", + "code" : "P1736754057201", + "name" : "蚂蚁信用分", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "aed42ac7-032b-424f-a0fa-68d54a0f9125", + "code" : "P1736754067517", + "name" : "蚂蚁信用分拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "7d4254df-e715-4929-b97b-96d38c165d8d", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736754057201}<550", + "ternaryTrue" : "true", + "ternaryFalse" : "false" + } ] + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "78c4243b-60ce-4753-a152-3e3fffd691de", + "code" : "P1736757848266", + "name" : "基本信息拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "EXECUTION_FLOW", + "id" : "3d1c8e9c-a42d-4160-81a0-e7b9907c7ff1", + "description" : null, + "order" : 1, + "enable" : true, + "executionFlow" : "\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 \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" + } ] + } ] + }, { + "id" : "e12df769-1308-4c93-b918-c76073148921", + "code" : "M1736754103776", + "name" : "黑名单拒绝", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "9bfa122c-6eaa-4eaf-b1b2-0c0ddfded7fd", + "code" : "P1736754115593", + "name" : "是否在黑名单内", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "bfebc5a4-b326-4bae-a767-5f42902533dd", + "code" : "P1736754127383", + "name" : "黑名单拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "864fc8e8-2ba9-461f-98de-712bc62fbe33", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736754115593}", + "ternaryTrue" : "true", + "ternaryFalse" : "false" + } ] + } ] + }, { + "id" : "7a920f56-28a0-461b-a017-42b0da23f0d4", + "code" : "M1736754231482", + "name" : "征信信息拒绝", + "description" : null, + "enable" : true, + "order" : 3, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "bde2a5db-9759-44d8-8266-fb09db507a0d", + "code" : "M1736757455556", + "name" : "24个月内贷款或贷记卡逾期次数过高", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "6e3107a5-8eb0-4c5d-93fc-fba85a6dfd29", + "code" : "P1736757469718", + "name" : "24个月内贷款或贷记卡逾期次数", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "b7b3de09-ecc9-4b7c-b434-3862ac00da1b", + "code" : "P1736757703465", + "name" : "24个月内贷款或贷记卡逾期次数是否过高", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "2ec06dd3-9ef3-4652-8e17-25e9cb2e51e8", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1736757469718}>2" + } ] + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "10eb1a95-47d3-4152-a1b8-0903b74caad1", + "code" : "P1736754265478", + "name" : "征信信息拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "f78a60c6-451e-4075-af0f-cdde86adcab2", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1736757703465}" + } ] + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "dd74c497-54fb-4185-9a72-41ffd52183d3", + "code" : "P1736754757882", + "name" : "政策拒绝结果", + "description" : null, + "valueType" : "java.lang.Boolean", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "EXECUTION_FLOW", + "id" : "a549f629-6ff8-435e-b5f2-8558111d1a25", + "description" : null, + "order" : 1, + "enable" : true, + "executionFlow" : "\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 \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" + } ] + } ] + }, { + "id" : "f505d4f9-7336-4e9c-bac6-70fc57220f78", + "code" : "M1736754300848", + "name" : "申请评分准入", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "6e75f591-4988-49a5-b2bb-e8080dd48940", + "code" : "P1736754794885", + "name" : "申请人性别", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "IN", + "id" : "84d636b9-b27f-4f68-97c0-e0a1797c085a", + "code" : "P1736754812346", + "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" : "fa8b7192-55b6-42aa-9f71-7d1fae0a5fb3", + "code" : "P1736754832724", + "name" : "申请评分结果", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 3, + "validators" : null, + "processors" : [ { + "type" : "SCORE_CARD", + "id" : "35b148ed-d7e8-48c1-b057-988c4d64dd1c", + "description" : null, + "order" : 1, + "enable" : true, + "scoreCard" : "[ {\n \"code\" : \"P1736753969316\",\n \"weight\" : 1.0,\n \"type\" : \"NUMBER_RANGE\",\n \"conditionRange\" : null,\n \"numberRange\" : [ {\n \"minIncluded\" : false,\n \"min\" : null,\n \"max\" : 25,\n \"maxIncluded\" : false,\n \"value\" : \"0\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 25,\n \"max\" : 35,\n \"maxIncluded\" : false,\n \"value\" : \"5\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 35,\n \"max\" : 45,\n \"maxIncluded\" : false,\n \"value\" : \"16\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 45,\n \"max\" : null,\n \"maxIncluded\" : false,\n \"value\" : \"10\"\n } ]\n}, {\n \"code\" : \"P1736754794885\",\n \"weight\" : 1.0,\n \"type\" : \"CONDITION_RANGE\",\n \"conditionRange\" : [ {\n \"condition\" : \"${P1736754794885}=='女'\",\n \"value\" : \"14\"\n }, {\n \"condition\" : \"${P1736754794885}=='男'\",\n \"value\" : \"0\"\n } ],\n \"numberRange\" : null\n}, {\n \"code\" : \"P1736754812346\",\n \"weight\" : 1.0,\n \"type\" : \"NUMBER_RANGE\",\n \"conditionRange\" : null,\n \"numberRange\" : [ {\n \"minIncluded\" : false,\n \"min\" : null,\n \"max\" : 5000,\n \"maxIncluded\" : false,\n \"value\" : \"0\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 5000,\n \"max\" : 10000,\n \"maxIncluded\" : false,\n \"value\" : \"5\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 10000,\n \"max\" : 20000,\n \"maxIncluded\" : false,\n \"value\" : \"10\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 20000,\n \"max\" : 30000,\n \"maxIncluded\" : false,\n \"value\" : \"15\"\n }, {\n \"minIncluded\" : true,\n \"min\" : 30000,\n \"max\" : null,\n \"maxIncluded\" : false,\n \"value\" : \"20\"\n } ]\n} ]" + } ] + }, { + "type" : "OUT", + "id" : "1b62bf75-201f-4651-b6a0-cc8893b22a21", + "code" : "P1736756913961", + "name" : "申请评分等级", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 4, + "validators" : null, + "processors" : [ { + "type" : "NUMBER_RANGE", + "id" : "61c142ef-63f0-4e17-ac19-b62958b569e5", + "description" : null, + "order" : 1, + "enable" : true, + "numberRangeVar" : "${P1736754832724}", + "numberRange" : "[{\"minIncluded\":false,\"min\":null,\"max\":\"10\",\"maxIncluded\":false,\"value\":\"E\"},{\"minIncluded\":true,\"min\":\"10\",\"max\":\"20\",\"maxIncluded\":false,\"value\":\"D\"},{\"minIncluded\":true,\"min\":\"20\",\"max\":\"30\",\"maxIncluded\":false,\"value\":\"C\"},{\"minIncluded\":true,\"min\":\"30\",\"max\":\"40\",\"maxIncluded\":false,\"value\":\"B\"},{\"minIncluded\":true,\"min\":\"40\",\"max\":null,\"maxIncluded\":false,\"value\":\"A\"}]" + } ] + }, { + "type" : "OUT", + "id" : "d16faeed-035b-4014-ad76-d715e7187012", + "code" : "P1736756891691", + "name" : "申请评分准入结果", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 5, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "4708ffc3-e6d9-4859-8b39-b5eff08f209c", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736754832724}=='E'", + "ternaryTrue" : "拒绝", + "ternaryFalse" : "通过" + } ] + } ] + }, { + "id" : "be884f19-6302-496c-a9cc-c97f992a96c8", + "code" : "M1736757360424", + "name" : "风险规则", + "description" : null, + "enable" : true, + "order" : 3, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : [ { + "id" : "9452a369-1c8c-4a0c-8c46-593dc5955b2c", + "code" : "M1736758436644", + "name" : "贷记卡当前额度使用过高", + "description" : null, + "enable" : true, + "order" : 1, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "5f42a6b3-f743-43af-9a88-77f6a8a06c5b", + "code" : "P1736758448394", + "name" : "贷记卡当前额度使用率", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "3ec66672-7a00-422e-96b7-ac4584175a28", + "code" : "P1736758470890", + "name" : "贷记卡当前额度使用过高结果", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "21f7b40b-606e-4c17-8b84-6e1b56174c1f", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736758448394}>0.8", + "ternaryTrue" : "1", + "ternaryFalse" : "0" + } ] + } ] + }, { + "id" : "3fe0c422-d65c-4578-ad8f-f4afa4bb3bfa", + "code" : "M1736758502818", + "name" : "信用卡当前额度使用过高", + "description" : null, + "enable" : true, + "order" : 2, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "206c90c0-abcc-43a6-a80a-f18c283c7dd5", + "code" : "P1736758512698", + "name" : "信用卡当前额度使用率", + "description" : null, + "valueType" : "java.math.BigDecimal", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "6db9cf9f-9e22-48e9-af06-d0ad5592fa79", + "code" : "P1736758522754", + "name" : "信用卡当前额度使用过高结果", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "6b12a8bb-027c-4872-a426-fe5a9043c66e", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736758512698}>0.8", + "ternaryTrue" : "1", + "ternaryFalse" : "0" + } ] + } ] + }, { + "id" : "c3d962ae-8a8d-44fc-bff8-2851a3a75743", + "code" : "M1736758556018", + "name" : "人行征信记录不足6个月", + "description" : null, + "enable" : true, + "order" : 3, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "IN", + "id" : "c8c349f4-50af-4b18-9fd2-c4d4f3bad8b7", + "code" : "P1736758567366", + "name" : "最久信贷征信记录距今月份数", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : null + }, { + "type" : "OUT", + "id" : "31ed97c5-d576-407f-a942-42154cac04ed", + "code" : "P1736758579722", + "name" : "人行征信记录不足6个月结果", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : [ { + "type" : "TERNARY", + "id" : "7c502aa1-4051-48b6-9a9a-a94c36e7842a", + "description" : null, + "order" : 1, + "enable" : true, + "ternaryCondition" : "${P1736758567366}<6", + "ternaryTrue" : "1", + "ternaryFalse" : "0" + } ] + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "4a43b0a0-78ed-4861-b0cc-7289ba538408", + "code" : "P1736758645163", + "name" : "风险规则命中个数", + "description" : null, + "valueType" : "java.lang.Long", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "ARITHMETIC", + "id" : "8551e2c1-b2bd-41a7-ae0b-857f8831756e", + "description" : null, + "order" : 1, + "enable" : true, + "arithmetic" : "${P1736758522754} + ${P1736758470890} + ${P1736758579722}" + } ] + } ] + }, { + "id" : "33fd9b05-536b-4bcb-bf38-95cee1ed18a1", + "code" : "M1736758859464", + "name" : "综合准入", + "description" : null, + "enable" : true, + "order" : 4, + "category" : "OTHER", + "executeMode" : "DOWN_UP", + "children" : null, + "parameters" : [ { + "type" : "OUT", + "id" : "323e3fad-36db-47ab-9298-2bc5f0e80b6f", + "code" : "P1736758877231", + "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" : "b4d7d881-e8e6-401a-a7d1-67ed917506de", + "code" : "P1736759060626", + "name" : "综合准入结果", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 2, + "validators" : null, + "processors" : null + } ] + } ], + "parameters" : [ { + "type" : "OUT", + "id" : "6abb6814-7439-412a-85b6-4f5c41ae2396", + "code" : "P1736759184752", + "name" : "准入审批策略结果", + "description" : null, + "valueType" : "java.lang.String", + "valueTypeVersion" : null, + "valueScale" : 2, + "valueRoundingMode" : "HALF_UP", + "valueTypeIsList" : false, + "defaultValue" : "", + "order" : 1, + "validators" : null, + "processors" : [ { + "type" : "EXECUTION_FLOW", + "id" : "d681d1a2-6860-48f4-9a9b-0d857614bd19", + "description" : null, + "order" : 1, + "enable" : true, + "executionFlow" : "\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 \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 } ], "testCases" : null }, { "type" : "FOLDER", - "id" : "187749bc-ccfb-40d5-adf2-2475ad8fc8da", + "id" : "052c7760-94f4-4d42-a53f-c38817a4b2a3", "code" : "M1736303834155", "name" : "枚举", "description" : null, @@ -4354,7 +5031,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "198a7d45-9c1f-4400-8288-66306f4f8217", + "id" : "c3acc58d-b569-4117-903b-8b85c62b36a2", "code" : "M1736303841282", "name" : "婚姻状况(字符串)", "description" : null, @@ -4363,22 +5040,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "8817c0e8-2bd9-4152-b568-ba2f02adb038", + "id" : "918c7a1a-a512-4f9a-8149-086ff221ded5", "name" : "婚姻状况(字符串)-未婚", "description" : null, "lastTestDate" : "2025-01-10 09:31:39", "testResult" : "PASSED", "parameters" : [ { - "id" : "2a393c81-597d-4d44-9f97-269d5c182fe4", - "code" : "P1736472140954", - "inputValue" : "02", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "bd97d3c0-4ca4-47b3-9c83-d94cc1650d00", + "id" : "05e2371f-9558-4982-b1e7-86ec08e80228", "code" : "P1736472195456", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4387,7 +5055,16 @@ "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "c7b9f1b0-355e-4d8c-921c-de713a1ff944", + "id" : "68eaa016-7019-4f0a-987f-84ed769ebbac", + "code" : "P1736472140954", + "inputValue" : "02", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "734eac8f-80cf-403d-ab07-3463ad9f6bec", "code" : "M1736303841282", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4398,31 +5075,22 @@ } ] }, { "type" : "MODEL", - "id" : "e1e1f6fd-58aa-49cd-b869-7d90d749834f", - "name" : "婚姻状况(字符串)-再婚", + "id" : "dcdf5f7c-969a-45fa-a3a2-2bfd6b6e3636", + "name" : "婚姻状况(字符串)-已婚", "description" : null, "lastTestDate" : "2025-01-10 09:31:39", "testResult" : "PASSED", "parameters" : [ { - "id" : "6c2174a2-1ae8-4d6e-98a7-0d5447d5d5ee", - "code" : "P1736472140954", - "inputValue" : "04", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "b3100971-91ac-45f9-9f02-fcf93bcbe1ac", + "id" : "27021048-b303-4740-80e4-adffa2b66220", "code" : "P1736472195456", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "再婚", - "resultValue" : "再婚", + "expectValue" : "已婚", + "resultValue" : "已婚", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "cf871458-0193-48a2-b2a4-423b10737b9a", + "id" : "5e261d97-a8ed-4582-ad9e-cb7615475e1d", "code" : "M1736303841282", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4430,25 +5098,43 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "fd9b10cb-50c0-4fa8-94c1-223dd52ec68d", + "code" : "P1736472140954", + "inputValue" : "01", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false } ] }, { "type" : "MODEL", - "id" : "e95d3bac-9d44-42ee-b786-662495747c9d", - "name" : "婚姻状况(字符串)-已婚", + "id" : "f061c99e-3e7c-45e4-9df5-ee92050e6d10", + "name" : "婚姻状况(字符串)-再婚", "description" : null, "lastTestDate" : "2025-01-10 09:31:39", "testResult" : "PASSED", "parameters" : [ { - "id" : "74700265-224a-44dd-9e49-f73b660d4327", + "id" : "924f8f29-8a50-42e8-82b5-11b529b41464", + "code" : "P1736472140954", + "inputValue" : "04", + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false + }, { + "id" : "9c1fbb8d-8af9-4111-a73a-90ce9d23240b", "code" : "P1736472195456", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "已婚", - "resultValue" : "已婚", + "expectValue" : "再婚", + "resultValue" : "再婚", "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "df0b9ed8-8751-4c85-9dbf-abf33fb8e849", + "id" : "c83a15b0-5341-4342-9d2d-f4163051609b", "code" : "M1736303841282", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4456,19 +5142,10 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false - }, { - "id" : "f5841b3f-454a-4198-965c-ce5b4821a5cd", - "code" : "P1736472140954", - "inputValue" : "01", - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false } ] } ], "model" : { - "id" : "4b8076e3-cb40-4142-9b98-1d65c2b31a61", + "id" : "85d9c995-1c51-437b-b567-bcaa21289fec", "code" : "M1736303841282", "name" : "婚姻状况(字符串)", "description" : null, @@ -4479,7 +5156,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "e839119a-60ef-4249-99c5-12a99a14bb9b", + "id" : "07ab3b4b-7456-4444-be1d-ae2f8a293463", "code" : "P1736472140954", "name" : "婚姻状况", "description" : null, @@ -4494,7 +5171,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "7df3670d-d79b-429e-a41b-8cba7a6dc6a5", + "id" : "b3f3e699-3189-4ea9-8686-99af92c2ba2b", "code" : "P1736472195456", "name" : "婚姻状况描述", "description" : null, @@ -4508,7 +5185,7 @@ "validators" : null, "processors" : [ { "type" : "CONDITION_RANGE", - "id" : "753844f8-6aa5-41f2-802d-38b41cc92913", + "id" : "7f800f27-a0ba-4e9a-9725-2654631afbdd", "description" : null, "order" : 1, "enable" : true, @@ -4520,7 +5197,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "b1ed7af4-c09e-4592-8b34-baec26a77b21", + "id" : "4d523648-bd5b-4c43-aa58-ee3c2eb3269e", "code" : "M1736327768064", "name" : "学历(整数)", "description" : null, @@ -4529,22 +5206,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "c451be13-3f00-4e09-89f0-af7a76bcc88c", + "id" : "92d1405d-acfa-439d-b155-79502c5dc63a", "name" : "学历(整数)-本科", "description" : null, "lastTestDate" : "2025-01-10 09:25:39", "testResult" : "PASSED", "parameters" : [ { - "id" : "a5629d70-7a6a-4d56-aaa5-c99d9d17cdd4", - "code" : "M1736327768064", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, - "skipCheck" : false - }, { - "id" : "e1222c3e-b680-45c9-97e6-13fc4cbe8639", + "id" : "8f56d3a0-9548-44fb-ab28-7274d74c65b6", "code" : "P1736326905659", "inputValue" : "3", "inputValueValidateMessage" : null, @@ -4553,7 +5221,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "fb32ace0-90ca-43f2-be47-b1677a7b4f1d", + "id" : "8feba4db-98dd-4d25-8874-400d815163ec", "code" : "P1736326926617", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4561,10 +5229,19 @@ "resultValue" : "本科", "testResult" : "PASSED", "skipCheck" : false + }, { + "id" : "f32e1a3f-f2f2-466a-a0bf-c7308a4a8251", + "code" : "M1736327768064", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : null, + "resultValue" : null, + "testResult" : null, + "skipCheck" : false } ] } ], "model" : { - "id" : "82013be8-2f8c-41cd-95f9-7383b913e548", + "id" : "dc31c640-8ff6-4dc4-93bb-37df340e2276", "code" : "M1736327768064", "name" : "学历(整数)", "description" : null, @@ -4575,7 +5252,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "765ab8f2-5526-4f01-a036-e135c6445b93", + "id" : "32f9aac8-8c54-46eb-a7da-78b7829c0aa9", "code" : "P1736326905659", "name" : "学历", "description" : null, @@ -4590,7 +5267,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "f57e05a0-f282-47e8-9306-70339e657933", + "id" : "0b157238-0507-4e88-a54b-e3877911ef2d", "code" : "P1736326926617", "name" : "学历名称", "description" : null, @@ -4604,7 +5281,7 @@ "validators" : null, "processors" : [ { "type" : "CONDITION_RANGE", - "id" : "6bb647a1-037d-4d23-acf0-620a7c20caa1", + "id" : "379b1a70-5ef6-4a07-ab70-545c0a9f1b99", "description" : null, "order" : 1, "enable" : true, @@ -4618,7 +5295,7 @@ "testCases" : null }, { "type" : "FOLDER", - "id" : "e73ba95e-3a5c-42e6-9905-a3def14c08a3", + "id" : "009e702e-40ba-43df-9895-36e4c685d248", "code" : "M1735784340303", "name" : "特殊值处理", "description" : null, @@ -4626,7 +5303,7 @@ "status" : null, "children" : [ { "type" : "MODEL", - "id" : "58c4f50b-c273-4ae6-80c7-45ddaf9c7d34", + "id" : "52d7fd54-41d6-4b2d-9216-92398c583506", "code" : "M1735784375685", "name" : "输入值为空", "description" : null, @@ -4635,22 +5312,22 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "19f4736c-cbf5-4c27-90fa-7ea99e8ce088", + "id" : "5c30ef6a-6ebf-4ba1-8dcf-880375a676e2", "name" : "输入值为空", "description" : null, "lastTestDate" : "2025-01-10 09:25:29", "testResult" : "PASSED", "parameters" : [ { - "id" : "30cd3a71-296b-4997-a583-ab616ddac2f5", - "code" : "M1735784375685", + "id" : "60b99e1e-2ab6-4d51-8529-85f9ba31755b", + "code" : "P1735784499971", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0", + "resultValue" : "0.00", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "4362a080-c9bc-4b08-a8a6-2ed0e3244cac", + "id" : "9630ad9b-0280-442c-87c8-4f5ea94ac245", "code" : "P1735784441429", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4659,7 +5336,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "db93b0cd-5825-40dc-9ef5-1645b6df3998", + "id" : "e87e50c7-f926-4383-92b7-3085d1e4bf53", "code" : "P1735784466568", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4668,25 +5345,25 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "f47f0ff8-378c-4231-a7e1-25696b82713b", - "code" : "P1735784499971", + "id" : "ecbc5165-663f-430b-8dc5-309c1688c15c", + "code" : "M1735784375685", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "0", - "resultValue" : "0.00", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false } ] }, { "type" : "MODEL", - "id" : "cd9b80d4-68ec-49d9-87d7-350b358266a0", + "id" : "6f6d2d74-c724-479d-ae79-32fcfd57c003", "name" : "输入值不为空", "description" : null, "lastTestDate" : "2025-01-10 09:25:39", "testResult" : "PASSED", "parameters" : [ { - "id" : "19715c40-cf84-46bb-a762-1069c8b80fd3", - "code" : "P1735784466568", + "id" : "0526d462-6d69-4a96-a8c2-db545f6cacfe", + "code" : "M1735784375685", "inputValue" : null, "inputValueValidateMessage" : null, "expectValue" : null, @@ -4694,16 +5371,16 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "2a3cd321-4932-4276-aeba-3db5bc739b31", - "code" : "M1735784375685", + "id" : "40922f8a-05b0-403f-bbc2-0ed85f24a979", + "code" : "P1735784499971", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : null, - "resultValue" : null, - "testResult" : null, + "expectValue" : "0.11", + "resultValue" : "0.11", + "testResult" : "PASSED", "skipCheck" : false }, { - "id" : "c926071b-5813-42af-917e-0e3dca968f3c", + "id" : "83963cfd-448e-4ebe-a208-3f1ccfd42564", "code" : "P1735784441429", "inputValue" : "1.2", "inputValueValidateMessage" : null, @@ -4712,18 +5389,18 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "ff355754-6322-4b34-b846-685288eefffb", - "code" : "P1735784499971", + "id" : "af78f4f6-3b1c-4d5a-b22b-e33f5eb4db5d", + "code" : "P1735784466568", "inputValue" : null, "inputValueValidateMessage" : null, - "expectValue" : "0.11", - "resultValue" : "0.11", - "testResult" : "PASSED", + "expectValue" : null, + "resultValue" : null, + "testResult" : null, "skipCheck" : false } ] } ], "model" : { - "id" : "f3765735-e9f1-4fa0-865c-e4cbdcb880f7", + "id" : "58f37bc4-96da-4c7f-82b7-2e0ef75e66b1", "code" : "M1735784375685", "name" : "输入值为空", "description" : null, @@ -4734,7 +5411,7 @@ "children" : null, "parameters" : [ { "type" : "CONSTANT", - "id" : "4cbfcebf-18c1-4655-b7b6-512008b99f5e", + "id" : "ee316dfc-7aa2-4bf1-8a72-e2833b98c1e0", "code" : "P1735784466568", "name" : "权重", "description" : null, @@ -4749,7 +5426,7 @@ "processors" : null }, { "type" : "IN", - "id" : "5c2fead0-aa18-4459-b0a5-f9c4024994f4", + "id" : "c34a7df5-76c7-4e31-a55e-9249abd14483", "code" : "P1735784441429", "name" : "输入值", "description" : null, @@ -4764,7 +5441,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "d8e4b96e-9fb1-480b-a082-0c405f669dfd", + "id" : "e66662b9-a9a7-45ec-b947-b84ba089c081", "code" : "P1735784499971", "name" : "结果值", "description" : null, @@ -4778,7 +5455,7 @@ "validators" : null, "processors" : [ { "type" : "WHEN_THEN", - "id" : "877b9e01-abee-4582-b95f-9cf243aecbbf", + "id" : "8d7c55e6-8b28-4927-ab2a-6c041f8c5cc8", "description" : null, "order" : 1, "enable" : true, @@ -4787,7 +5464,7 @@ "isWhenThenShorted" : true }, { "type" : "ARITHMETIC", - "id" : "11995ee3-9241-4d37-aabb-4e7bdbf705a2", + "id" : "f1d9434d-fc3f-4437-be7a-9e1da5d6410b", "description" : null, "order" : 2, "enable" : true, @@ -4799,7 +5476,7 @@ "imports" : "" }, { "type" : "MODEL", - "id" : "056c5caf-5b08-4dc7-85d5-d9861b0d15e6", + "id" : "a19181f1-763b-4ab7-aec6-fb05af3c43b7", "code" : "M1735787092187", "name" : "小数精度", "description" : null, @@ -4808,13 +5485,13 @@ "children" : null, "testCases" : [ { "type" : "MODEL", - "id" : "fbbe39c2-2223-4bfd-8463-1809dfb01303", + "id" : "24ebe604-94b4-4b1c-8023-b02ea707720f", "name" : "小数精度", "description" : null, "lastTestDate" : "2025-01-10 09:25:41", "testResult" : "PASSED", "parameters" : [ { - "id" : "32d44cf4-f2a4-4155-afd1-7cc2f2cb814c", + "id" : "6a43a946-7e1c-46db-a50b-26898f495176", "code" : "P1735787123362", "inputValue" : "3", "inputValueValidateMessage" : null, @@ -4823,7 +5500,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "6d8ce5f4-6b73-4ac3-a3f8-7c710eb85ce9", + "id" : "9910cedd-98ea-4277-879c-96160af10587", "code" : "M1735787092187", "inputValue" : null, "inputValueValidateMessage" : null, @@ -4832,16 +5509,7 @@ "testResult" : null, "skipCheck" : false }, { - "id" : "a18b1283-5c01-4465-b3c4-dc5740e640b3", - "code" : "P1735787134052", - "inputValue" : null, - "inputValueValidateMessage" : null, - "expectValue" : "0.3333", - "resultValue" : "0.3333", - "testResult" : "PASSED", - "skipCheck" : false - }, { - "id" : "d535ba83-d0cc-4a31-ae66-ab58775fca7a", + "id" : "c533ad49-662d-42dd-adc6-117c837eb917", "code" : "P1735787115074", "inputValue" : "1", "inputValueValidateMessage" : null, @@ -4849,10 +5517,19 @@ "resultValue" : null, "testResult" : null, "skipCheck" : false + }, { + "id" : "f4189034-0050-4204-bcf1-48afd259aed1", + "code" : "P1735787134052", + "inputValue" : null, + "inputValueValidateMessage" : null, + "expectValue" : "0.3333", + "resultValue" : "0.3333", + "testResult" : "PASSED", + "skipCheck" : false } ] } ], "model" : { - "id" : "0595cf4d-bf3a-4c41-8ec9-1516be842553", + "id" : "c690da6e-aa8a-4de3-9c84-e89c77fb751a", "code" : "M1735787092187", "name" : "小数精度", "description" : null, @@ -4863,7 +5540,7 @@ "children" : null, "parameters" : [ { "type" : "IN", - "id" : "b3d2df6e-285c-4fcc-8781-338bbc168640", + "id" : "83c80406-1b02-4e8f-9291-625e3c9c309c", "code" : "P1735787115074", "name" : "分子", "description" : null, @@ -4878,7 +5555,7 @@ "processors" : null }, { "type" : "IN", - "id" : "dac8b90b-0e0b-460e-9b4a-0b47ea991d5f", + "id" : "3b29c357-a970-4a3f-a8bd-dc733d976ea1", "code" : "P1735787123362", "name" : "分母", "description" : null, @@ -4893,7 +5570,7 @@ "processors" : null }, { "type" : "OUT", - "id" : "63f9ce3c-4956-42d4-b138-f142da3f8a41", + "id" : "03ca5e31-e7aa-4e52-baa1-2f7f8ebcebd1", "code" : "P1735787134052", "name" : "结果值", "description" : null, @@ -4907,7 +5584,7 @@ "validators" : null, "processors" : [ { "type" : "ARITHMETIC", - "id" : "a9998ac3-2234-4b1a-9ac2-adb3a68ccf39", + "id" : "83bbf6c5-469f-4f62-8227-eff2d62c0c48", "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 f8ed12f7..022dcc99 100644 --- a/io.sc.engine.st.frontend/package.json +++ b/io.sc.engine.st.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.platform.core.frontend/package.json b/io.sc.platform.core.frontend/package.json index a9cd4062..54165c51 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.31", + "version": "8.2.33", "description": "前端核心包,用于快速构建前端的脚手架", "//main": "库的主文件", "main": "dist/platform-core.js", diff --git a/io.sc.platform.core.frontend/src/platform/plugin/manager/SessionManager.ts b/io.sc.platform.core.frontend/src/platform/plugin/manager/SessionManager.ts index d8272dc7..a5085b0c 100644 --- a/io.sc.platform.core.frontend/src/platform/plugin/manager/SessionManager.ts +++ b/io.sc.platform.core.frontend/src/platform/plugin/manager/SessionManager.ts @@ -22,7 +22,7 @@ class SessionManager { * @returns 会话是否超时 */ public static isTimeout() { - return new Date().getTime() - SessionManager.#lastRequestDatetime > 30 * 60 * 1000; + return new Date().getTime() - SessionManager.#lastRequestDatetime > Environment.getConfigure().setting.sessionTimeout * 4 * 1000; } /** diff --git a/io.sc.platform.core.frontend/src/platform/types/ConfigureType.ts b/io.sc.platform.core.frontend/src/platform/types/ConfigureType.ts index ca11a73f..da618c66 100644 --- a/io.sc.platform.core.frontend/src/platform/types/ConfigureType.ts +++ b/io.sc.platform.core.frontend/src/platform/types/ConfigureType.ts @@ -51,6 +51,7 @@ export type ConfigureType = { // 前端设置 // --------------------------------------------- setting: { + sessionTimeout: number; //会话过期时间,单位:秒 notifyTimeout: number; // 通知提示框显示时间单位:毫秒 homePage: string; // 首页路由 path i18n: { diff --git a/io.sc.platform.core.frontend/src/platform/utils/Downloader.ts b/io.sc.platform.core.frontend/src/platform/utils/Downloader.ts index 41219a16..5c670bb6 100644 --- a/io.sc.platform.core.frontend/src/platform/utils/Downloader.ts +++ b/io.sc.platform.core.frontend/src/platform/utils/Downloader.ts @@ -1,8 +1,13 @@ import { blobAxios } from '@/platform'; class Downloader { - public static get(url: string) { - blobAxios.get(url, { responseType: 'blob' }).then((response) => { + public static get(url: string, option: any) { + if (option) { + option.responseType = 'blob'; + } else { + option = { responseType: 'blob' }; + } + blobAxios.get(url, option).then((response) => { Downloader.download(response); }); } @@ -21,7 +26,7 @@ class Downloader { }); } - private static download(response) { + private static download(response: any) { if (response) { const { data, headers } = response; let fileName = headers['content-disposition-url-encode'].match(/filename=(.*)/)[1]; diff --git a/io.sc.platform.core.frontend/template-project/package.json b/io.sc.platform.core.frontend/template-project/package.json index 2cc0c98e..616af3a8 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.31", + "version": "8.2.33", "description": "前端核心包,用于快速构建前端的脚手架", "private": false, "keywords": [], @@ -110,7 +110,7 @@ "mockjs": "1.1.0", "node-sql-parser": "5.3.4", "pinia": "2.2.6", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/IdentifierConstraint.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/IdentifierConstraint.java new file mode 100644 index 00000000..9b14935e --- /dev/null +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/IdentifierConstraint.java @@ -0,0 +1,20 @@ +package io.sc.platform.core.constraints; + +import io.sc.platform.core.constraints.validator.IdentifierConstraintValidator; + +import javax.validation.Constraint; +import javax.validation.Payload; +import java.lang.annotation.*; + +/** + * 约束限制(代码) + */ +@Documented +@Target({ElementType.METHOD, ElementType.FIELD}) +@Retention(RetentionPolicy.RUNTIME) +@Constraint(validatedBy= IdentifierConstraintValidator.class) +public @interface IdentifierConstraint { + String message() default "{io.sc.platform.core.constraints.IdentifierConstraint.message}"; + Class[] groups() default { }; + Class[] payload() default { }; +} diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/validator/IdentifierConstraintValidator.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/validator/IdentifierConstraintValidator.java new file mode 100644 index 00000000..bf6869f6 --- /dev/null +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/constraints/validator/IdentifierConstraintValidator.java @@ -0,0 +1,40 @@ +package io.sc.platform.core.constraints.validator; + +import io.sc.platform.core.constraints.IdentifierConstraint; +import org.springframework.util.StringUtils; + +import javax.validation.ConstraintValidator; +import javax.validation.ConstraintValidatorContext; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/** + * 代码限制验证器 + */ +public class IdentifierConstraintValidator implements ConstraintValidator { + // 标识符: 字母、数字和下划线,且首字符必须为字母 + private static final Pattern pattern =Pattern.compile("[A-Za-z][A-Za-z0-9_]*"); + private IdentifierConstraint constraintAnnotation; + + @Override + public void initialize(IdentifierConstraint constraintAnnotation) { + this.constraintAnnotation =constraintAnnotation; + } + + @Override + public boolean isValid(String value, ConstraintValidatorContext context) { + if(!StringUtils.hasText(value)) { return true; } + Matcher matcher = pattern.matcher(value); + if(matcher.find()) { + int start =matcher.start(); + int end =matcher.end(); + if(start==0 && end==value.length()){ + return true; + }else{ + return false; + } + }else{ + return false; + } + } +} diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/CodeValidator.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/CodeValidator.java deleted file mode 100644 index 507e6a2d..00000000 --- a/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/CodeValidator.java +++ /dev/null @@ -1,21 +0,0 @@ -package io.sc.platform.core.validation; - -import io.sc.platform.core.validation.annotation.Code; - -import javax.validation.ConstraintValidator; -import javax.validation.ConstraintValidatorContext; - -public class CodeValidator implements ConstraintValidator { - @Override - public void initialize(Code constraintAnnotation) { - ConstraintValidator.super.initialize(constraintAnnotation); - } - - @Override - public boolean isValid(String value, ConstraintValidatorContext context) { - System.out.println(">>>>>>>>" + value); - return false; - } - - -} diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/annotation/Code.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/annotation/Code.java deleted file mode 100644 index d9515779..00000000 --- a/io.sc.platform.core/src/main/java/io/sc/platform/core/validation/annotation/Code.java +++ /dev/null @@ -1,43 +0,0 @@ -package io.sc.platform.core.validation.annotation; - -import io.sc.platform.core.validation.CodeValidator; - -import javax.validation.Constraint; -import javax.validation.Payload; -import javax.validation.constraints.Pattern; -import java.lang.annotation.Documented; -import java.lang.annotation.Repeatable; -import java.lang.annotation.Retention; -import java.lang.annotation.Target; - -import static java.lang.annotation.ElementType.*; -import static java.lang.annotation.RetentionPolicy.RUNTIME; - -@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) -@Retention(RUNTIME) -@Repeatable(Code.List.class) -@Documented -@Constraint(validatedBy= CodeValidator.class) -public @interface Code { - /** - * @return the error message template - */ - String message() default "{javax.validation.constraints.Pattern.message}"; - - /** - * @return the groups the constraint belongs to - */ - Class[] groups() default { }; - - /** - * @return the payload associated to the constraint - */ - Class[] payload() default { }; - - @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) - @Retention(RUNTIME) - @Documented - @interface List { - Code[] value(); - } -} diff --git a/io.sc.platform.core/src/main/resources/META-INF/platform/plugins/messages.json b/io.sc.platform.core/src/main/resources/META-INF/platform/plugins/messages.json index 16aefb5f..27da394a 100644 --- a/io.sc.platform.core/src/main/resources/META-INF/platform/plugins/messages.json +++ b/io.sc.platform.core/src/main/resources/META-INF/platform/plugins/messages.json @@ -1,5 +1,6 @@ { "includes":[ + "io/sc/platform/core/i18n/constraints", "io/sc/platform/core/i18n/enums", "io/sc/platform/core/i18n/exception", "io/sc/platform/core/i18n/language", diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints.properties new file mode 100644 index 00000000..dc59ec56 --- /dev/null +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints.properties @@ -0,0 +1 @@ +io.sc.platform.core.constraints.IdentifierConstraint.message=Contains only letters, numbers, or underscores, Note: The first character must be a letter. \ No newline at end of file diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_tw_CN.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_tw_CN.properties new file mode 100644 index 00000000..07e7295b --- /dev/null +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_tw_CN.properties @@ -0,0 +1 @@ +io.sc.platform.core.constraints.IdentifierConstraint.message=\u50C5\u5305\u542B\u5B57\u6BCD\u3001\u6578\u5B57\u6216\u4E0B\u5283\u7DDA, \u6CE8\u610F: \u9996\u5B57\u6BCD\u5FC5\u9808\u70BA\u5B57\u6BCD\u3002 \ No newline at end of file diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_zh_CN.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_zh_CN.properties new file mode 100644 index 00000000..ec006427 --- /dev/null +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/constraints_zh_CN.properties @@ -0,0 +1 @@ +io.sc.platform.core.constraints.IdentifierConstraint.message=\u4EC5\u5305\u542B\u5B57\u6BCD\u3001\u6570\u5B57\u6216\u4E0B\u5212\u7EBF, \u6CE8\u610F: \u9996\u5B57\u7B26\u5FC5\u987B\u4E3A\u5B57\u6BCD\u3002 \ No newline at end of file diff --git a/io.sc.platform.developer.doc/package.json b/io.sc.platform.developer.doc/package.json index 434cb7ab..334e6612 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.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "vue": "3.5.13", "vue-i18n": "10.0.4" diff --git a/io.sc.platform.developer.frontend/package.json b/io.sc.platform.developer.frontend/package.json index 078a4d2a..0769aa88 100644 --- a/io.sc.platform.developer.frontend/package.json +++ b/io.sc.platform.developer.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.platform.gradle/templates/pgp/setup/build-version.gradle b/io.sc.platform.gradle/templates/pgp/setup/build-version.gradle index 6a5f9c5a..36742105 100755 --- a/io.sc.platform.gradle/templates/pgp/setup/build-version.gradle +++ b/io.sc.platform.gradle/templates/pgp/setup/build-version.gradle @@ -15,6 +15,7 @@ ext['PlatformDependencyVersions'] =[ "org.codehaus.groovy:groovy-json" : "${groovy_version}", "org.codehaus.groovy:groovy-sql" : "${groovy_version}", "org.codehaus.groovy:groovy-xml" : "${groovy_version}", + "mysql:mysql-connector-java" : "${jdbc_mysql_version}", ]; /*********************************************************************** diff --git a/io.sc.platform.gradle/templates/pgp/setup/build.gradle.txt b/io.sc.platform.gradle/templates/pgp/setup/build.gradle.txt index e272a38f..9628b211 100644 --- a/io.sc.platform.gradle/templates/pgp/setup/build.gradle.txt +++ b/io.sc.platform.gradle/templates/pgp/setup/build.gradle.txt @@ -59,7 +59,7 @@ subprojects { // exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" // exclude group: "org.slf4j", module: "slf4j-jdk14" exclude group: "org.slf4j", module: "slf4j-nop" - exclude group: "com.mysql", module: "mysql-connector-j" + //exclude group: "com.mysql", module: "mysql-connector-j" if(PlatformDependencyVersions!=null && PlatformDependencyVersions.size()>0) { resolutionStrategy.eachDependency { DependencyResolveDetails detail -> diff --git a/io.sc.platform.gradle/templates/pgp/setup/gradle.properties b/io.sc.platform.gradle/templates/pgp/setup/gradle.properties index dd0ec5e8..7e35e8da 100644 --- a/io.sc.platform.gradle/templates/pgp/setup/gradle.properties +++ b/io.sc.platform.gradle/templates/pgp/setup/gradle.properties @@ -38,7 +38,7 @@ application_version=1.0.0 platform_group=io.sc platform_version=8.2.7 platform_plugin_version=8.2.7 -platform_core_frontend_version=8.2.31 +platform_core_frontend_version=8.2.33 ########################################################### # dependencies version diff --git a/io.sc.platform.lcdp.frontend/package.json b/io.sc.platform.lcdp.frontend/package.json index ba93b277..34d30659 100644 --- a/io.sc.platform.lcdp.frontend/package.json +++ b/io.sc.platform.lcdp.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.platform.lcdp.frontend/src/components/index.ts b/io.sc.platform.lcdp.frontend/src/components/index.ts index 0dd56a71..7d6fb245 100644 --- a/io.sc.platform.lcdp.frontend/src/components/index.ts +++ b/io.sc.platform.lcdp.frontend/src/components/index.ts @@ -6,9 +6,9 @@ import component_lcdp_Frontend from '@/views/Frontend.vue'; import component_lcdp_Theme from '@/views/Theme.vue'; import component_lcdp_bpm from '@/views/bpm/Bpm.vue'; import component_lcdp_form_page from '@/views/form/Page.vue'; -import component_lcdp_excel_report from '@/views/excel_template/ExcelReport.vue'; +import component_lcdp_excel_report from '@/views/excel-template/ExcelReport.vue'; import component_lcdp_formConfig from '@/views/form/FormConfig.vue'; -import component_lcdp_excel_template from '@/views/excel_template/TemplateGrid.vue'; +import component_lcdp_excel_template from '@/views/excel-template/TemplateGrid.vue'; const localComponents = { 'component.lcdp.Frontend': component_lcdp_Frontend, diff --git a/io.sc.platform.lcdp.frontend/src/routes/routes.json b/io.sc.platform.lcdp.frontend/src/routes/routes.json index fb8ee9ed..0b68e09b 100644 --- a/io.sc.platform.lcdp.frontend/src/routes/routes.json +++ b/io.sc.platform.lcdp.frontend/src/routes/routes.json @@ -54,7 +54,7 @@ "path": "lcdp/excel/report", "priority": 0, "component": "component.lcdp.excel.report", - "componentPath": "@/views/excel_template/ExcelReport.vue", + "componentPath": "@/views/excel-template/ExcelReport.vue", "redirect": null, "meta": { "permissions": ["/example/**/*"] @@ -68,6 +68,7 @@ "component": "component.lcdp.formConfig", "componentPath": "@/views/form/FormConfig.vue", "meta": { + "permissions": ["/example/**/*"] }, "children": [] }, @@ -76,8 +77,9 @@ "name": "route.lcdp.excel.template", "path": "lcdp/excel/template", "component": "component.lcdp.excel.template", - "componentPath": "@/views/excel_template/TemplateGrid.vue", + "componentPath": "@/views/excel-template/TemplateGrid.vue", "meta": { + "permissions": ["/example/**/*"] }, "children": [] } diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/ExcelReport.vue b/io.sc.platform.lcdp.frontend/src/views/excel-template/ExcelReport.vue similarity index 99% rename from io.sc.platform.lcdp.frontend/src/views/excel_template/ExcelReport.vue rename to io.sc.platform.lcdp.frontend/src/views/excel-template/ExcelReport.vue index 17937e22..f93a6259 100644 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/ExcelReport.vue +++ b/io.sc.platform.lcdp.frontend/src/views/excel-template/ExcelReport.vue @@ -12,7 +12,7 @@ - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateConfigDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateConfigDialog.vue deleted file mode 100644 index 6a2ffe12..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateConfigDialog.vue +++ /dev/null @@ -1,358 +0,0 @@ - - - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateGrid.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateGrid.vue deleted file mode 100644 index 1d6b6587..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateGrid.vue +++ /dev/null @@ -1,131 +0,0 @@ - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsDialog.vue deleted file mode 100644 index f6424126..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsDialog.vue +++ /dev/null @@ -1,464 +0,0 @@ - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsSelectDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsSelectDialog.vue deleted file mode 100644 index c4a04514..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateParamsSelectDialog.vue +++ /dev/null @@ -1,234 +0,0 @@ - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateReportDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateReportDialog.vue deleted file mode 100644 index 197a3368..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateReportDialog.vue +++ /dev/null @@ -1,34 +0,0 @@ - - - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetColumnParamsDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetColumnParamsDialog.vue deleted file mode 100644 index 714ac7c3..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetColumnParamsDialog.vue +++ /dev/null @@ -1,91 +0,0 @@ - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetForeachPropsDialog.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetForeachPropsDialog.vue deleted file mode 100644 index e7284e72..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/TemplateSetForeachPropsDialog.vue +++ /dev/null @@ -1,250 +0,0 @@ - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/LuckySheet.vue b/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/LuckySheet.vue deleted file mode 100644 index fc1b7033..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/LuckySheet.vue +++ /dev/null @@ -1,339 +0,0 @@ - - - - - diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/export.js b/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/export.js deleted file mode 100644 index b3ba380c..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/luckysheet/export.js +++ /dev/null @@ -1,319 +0,0 @@ -import Excel from 'exceljs'; -import FileSaver from 'file-saver'; - -const exportExcel = function (luckysheet, value) { - // 参数为luckysheet.getluckysheetfile()获取的对象 - // 1.创建工作簿,可以为工作簿添加属性 - const workbook = new Excel.Workbook(); - // 2.创建表格,第二个参数可以配置创建什么样的工作表 - if (Object.prototype.toString.call(luckysheet) === '[object Object]') { - luckysheet = [luckysheet]; - } - luckysheet.forEach(function (table) { - if (table.data.length === 0) return true; - // ws.getCell('B2').fill = fills. - const worksheet = workbook.addWorksheet(table.name); - const merge = (table.config && table.config.merge) || {}; - const borderInfo = (table.config && table.config.borderInfo) || {}; - // 3.设置单元格合并,设置单元格边框,设置单元格样式,设置值 - setStyleAndValue(table.data, worksheet); - setMerge(merge, worksheet); - setBorder(borderInfo, worksheet); - return true; - }); - - // return - // 4.写入 buffer - const buffer = workbook.xlsx.writeBuffer().then((data) => { - // console.log('data', data) - const blob = new Blob([data], { - type: 'application/vnd.ms-excel;charset=utf-8', - }); - console.log('导出成功!'); - FileSaver.saveAs(blob, `${value}.xlsx`); - }); - return buffer; -}; - -var setMerge = function (luckyMerge = {}, worksheet) { - const mergearr = Object.values(luckyMerge); - mergearr.forEach(function (elem) { - // elem格式:{r: 0, c: 0, rs: 1, cs: 2} - // 按开始行,开始列,结束行,结束列合并(相当于 K10:M12) - worksheet.mergeCells(elem.r + 1, elem.c + 1, elem.r + elem.rs, elem.c + elem.cs); - }); -}; - -var setBorder = function (luckyBorderInfo, worksheet) { - if (!Array.isArray(luckyBorderInfo)) return; - // console.log('luckyBorderInfo', luckyBorderInfo) - luckyBorderInfo.forEach(function (elem) { - // 现在只兼容到borderType 为range的情况 - // console.log('ele', elem) - if (elem.rangeType === 'range') { - let border = borderConvert(elem.borderType, elem.style, elem.color); - let rang = elem.range[0]; - // console.log('range', rang) - let row = rang.row; - let column = rang.column; - for (let i = row[0] + 1; i < row[1] + 2; i++) { - for (let y = column[0] + 1; y < column[1] + 2; y++) { - worksheet.getCell(i, y).border = border; - } - } - } - if (elem.rangeType === 'cell') { - // col_index: 2 - // row_index: 1 - // b: { - // color: '#d0d4e3' - // style: 1 - // } - const { col_index, row_index } = elem.value; - const borderData = Object.assign({}, elem.value); - delete borderData.col_index; - delete borderData.row_index; - let border = addborderToCell(borderData, row_index, col_index); - // console.log('bordre', border, borderData) - worksheet.getCell(row_index + 1, col_index + 1).border = border; - } - // console.log(rang.column_focus + 1, rang.row_focus + 1) - // worksheet.getCell(rang.row_focus + 1, rang.column_focus + 1).border = border - }); -}; -var setStyleAndValue = function (cellArr, worksheet) { - if (!Array.isArray(cellArr)) return; - cellArr.forEach(function (row, rowid) { - row.every(function (cell, columnid) { - if (!cell) return true; - let fill = fillConvert(cell.bg); - - let font = fontConvert(cell.ff, cell.fc, cell.bl, cell.it, cell.fs, cell.cl, cell.ul); - let alignment = alignmentConvert(cell.vt, cell.ht, cell.tb, cell.tr); - let value = ''; - - if (cell.f) { - value = { formula: cell.f, result: cell.v }; - } else if (!cell.v && cell.ct && cell.ct.s) { - // xls转为xlsx之后,内部存在不同的格式,都会进到富文本里,即值不存在与cell.v,而是存在于cell.ct.s之后 - // value = cell.ct.s[0].v - cell.ct.s.forEach((arr) => { - value += arr.v; - }); - } else { - value = cell.v; - } - // style 填入到_value中可以实现填充色 - let letter = createCellPos(columnid); - let target = worksheet.getCell(letter + (rowid + 1)); - // console.log('1233', letter + (rowid + 1)) - for (const key in fill) { - target.fill = fill; - break; - } - target.font = font; - target.alignment = alignment; - target.value = value; - - return true; - }); - }); -}; - -var fillConvert = function (bg) { - if (!bg) { - return {}; - } - // const bgc = bg.replace('#', '') - let fill = { - type: 'pattern', - pattern: 'solid', - fgColor: { argb: bg.replace('#', '') }, - }; - return fill; -}; - -var fontConvert = function (ff = 0, fc = '#000000', bl = 0, it = 0, fs = 10, cl = 0, ul = 0) { - // luckysheet:ff(样式), fc(颜色), bl(粗体), it(斜体), fs(大小), cl(删除线), ul(下划线) - const luckyToExcel = { - 0: '微软雅黑', - 1: '宋体(Song)', - 2: '黑体(ST Heiti)', - 3: '楷体(ST Kaiti)', - 4: '仿宋(ST FangSong)', - 5: '新宋体(ST Song)', - 6: '华文新魏', - 7: '华文行楷', - 8: '华文隶书', - 9: 'Arial', - 10: 'Times New Roman ', - 11: 'Tahoma ', - 12: 'Verdana', - num2bl: function (num) { - return num === 0 ? false : true; - }, - }; - // 出现Bug,导入的时候ff为luckyToExcel的val - - let font = { - name: typeof ff === 'number' ? luckyToExcel[ff] : ff, - family: 1, - size: fs, - color: { argb: fc.replace('#', '') }, - bold: luckyToExcel.num2bl(bl), - italic: luckyToExcel.num2bl(it), - underline: luckyToExcel.num2bl(ul), - strike: luckyToExcel.num2bl(cl), - }; - - return font; -}; - -var alignmentConvert = function (vt = 'default', ht = 'default', tb = 'default', tr = 'default') { - // luckysheet:vt(垂直), ht(水平), tb(换行), tr(旋转) - const luckyToExcel = { - vertical: { - 0: 'middle', - 1: 'top', - 2: 'bottom', - default: 'top', - }, - horizontal: { - 0: 'center', - 1: 'left', - 2: 'right', - default: 'left', - }, - wrapText: { - 0: false, - 1: false, - 2: true, - default: false, - }, - textRotation: { - 0: 0, - 1: 45, - 2: -45, - 3: 'vertical', - 4: 90, - 5: -90, - default: 0, - }, - }; - - let alignment = { - vertical: luckyToExcel.vertical[vt], - horizontal: luckyToExcel.horizontal[ht], - wrapText: luckyToExcel.wrapText[tb], - textRotation: luckyToExcel.textRotation[tr], - }; - return alignment; -}; - -var borderConvert = function (borderType, style = 1, color = '#000') { - // 对应luckysheet的config中borderinfo的的参数 - if (!borderType) { - return {}; - } - const luckyToExcel = { - type: { - 'border-all': 'all', - 'border-top': 'top', - 'border-right': 'right', - 'border-bottom': 'bottom', - 'border-left': 'left', - }, - style: { - 0: 'none', - 1: 'thin', - 2: 'hair', - 3: 'dotted', - 4: 'dashDot', // 'Dashed', - 5: 'dashDot', - 6: 'dashDotDot', - 7: 'double', - 8: 'medium', - 9: 'mediumDashed', - 10: 'mediumDashDot', - 11: 'mediumDashDotDot', - 12: 'slantDashDot', - 13: 'thick', - }, - }; - let template = { - style: luckyToExcel.style[style], - color: { argb: color.replace('#', '') }, - }; - let border = {}; - if (luckyToExcel.type[borderType] === 'all') { - border['top'] = template; - border['right'] = template; - border['bottom'] = template; - border['left'] = template; - } else { - border[luckyToExcel.type[borderType]] = template; - } - // console.log('border', border) - return border; -}; - -function addborderToCell(borders, row_index, col_index) { - let border = {}; - const luckyExcel = { - type: { - l: 'left', - r: 'right', - b: 'bottom', - t: 'top', - }, - style: { - 0: 'none', - 1: 'thin', - 2: 'hair', - 3: 'dotted', - 4: 'dashDot', // 'Dashed', - 5: 'dashDot', - 6: 'dashDotDot', - 7: 'double', - 8: 'medium', - 9: 'mediumDashed', - 10: 'mediumDashDot', - 11: 'mediumDashDotDot', - 12: 'slantDashDot', - 13: 'thick', - }, - }; - // console.log('borders', borders) - for (const bor in borders) { - // console.log(bor) - if (borders[bor].color.indexOf('rgb') === -1) { - border[luckyExcel.type[bor]] = { - style: luckyExcel.style[borders[bor].style], - color: { argb: borders[bor].color.replace('#', '') }, - }; - } else { - border[luckyExcel.type[bor]] = { - style: luckyExcel.style[borders[bor].style], - color: { argb: borders[bor].color }, - }; - } - } - - return border; -} - -function createCellPos(n) { - let ordA = 'A'.charCodeAt(0); - - let ordZ = 'Z'.charCodeAt(0); - let len = ordZ - ordA + 1; - let s = ''; - while (n >= 0) { - s = String.fromCharCode((n % len) + ordA) + s; - - n = Math.floor(n / len) - 1; - } - return s; -} - -export { exportExcel }; diff --git a/io.sc.platform.lcdp.frontend/src/views/excel_template/template.ts b/io.sc.platform.lcdp.frontend/src/views/excel_template/template.ts deleted file mode 100644 index 246690d7..00000000 --- a/io.sc.platform.lcdp.frontend/src/views/excel_template/template.ts +++ /dev/null @@ -1,27 +0,0 @@ -const cellFormatMap = new Map(); -// 纯文本 -cellFormatMap.set('1', { fa: '@', t: 's' }); -// 数字格式-整数 -cellFormatMap.set('2', { fa: '0', t: 'n' }); -// 数字格式-两位小数 -cellFormatMap.set('3', { fa: '0.00', t: 'n' }); -// 数字格式-四位小数 -cellFormatMap.set('4', { fa: '0.0000', t: 'n' }); -// 百分比整数 -cellFormatMap.set('5', { fa: '0%', t: 'n' }); -// 百分比两位小数 -cellFormatMap.set('6', { fa: '0.00%', t: 'n' }); -// 万元两位小数(示例:12万3456.00) -cellFormatMap.set('7', { fa: 'w0.00', t: 'n' }); -// 千位符整数(示例:1,235) -cellFormatMap.set('8', { fa: '#,##0', t: 'n' }); -// 千位符两位小数(示例:1,234.56) -cellFormatMap.set('9', { fa: '#,##0.00', t: 'n' }); - -/** - * 根据下拉框所选值获取单元格格式化对象 - * @param index - */ -export function getExcelCellFormatObject(index: string) { - return cellFormatMap.get(index); -} diff --git a/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/api/Setting.java b/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/api/Setting.java index ebf38eea..dcb4fe7b 100644 --- a/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/api/Setting.java +++ b/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/api/Setting.java @@ -1,10 +1,19 @@ package io.sc.platform.lcdp.configure.api; public class Setting { + private long sessionTimeout =30 * 60; // 会话过期时间(单位:秒) private String homePage ="/home"; // 首页路由 path private I18n i18n =new I18n(); // 多语言国际化 private boolean isMultiCorporationMode =false; // 是否是多法人模式 + public long getSessionTimeout() { + return sessionTimeout; + } + + public void setSessionTimeout(long sessionTimeout) { + this.sessionTimeout = sessionTimeout; + } + public String getHomePage() { return homePage; } diff --git a/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/service/impl/ConfigureServiceImpl.java b/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/service/impl/ConfigureServiceImpl.java index cc9f7c03..1c8fbba0 100644 --- a/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/service/impl/ConfigureServiceImpl.java +++ b/io.sc.platform.lcdp/src/main/java/io/sc/platform/lcdp/configure/service/impl/ConfigureServiceImpl.java @@ -1,21 +1,24 @@ package io.sc.platform.lcdp.configure.service.impl; +import io.sc.platform.lcdp.configure.api.Configure; import io.sc.platform.lcdp.configure.api.Oauth2; import io.sc.platform.lcdp.configure.api.Setting; import io.sc.platform.lcdp.configure.api.Theme; import io.sc.platform.lcdp.configure.jpa.entity.ConfigureEntity; import io.sc.platform.lcdp.configure.jpa.repository.ConfigureRepository; import io.sc.platform.lcdp.configure.service.ConfigureService; -import io.sc.platform.lcdp.configure.api.Configure; import io.sc.platform.mvc.service.SystemParameterService; import io.sc.platform.orm.service.impl.DaoServiceImpl; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.autoconfigure.session.SessionProperties; import org.springframework.core.env.Environment; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; import javax.transaction.Transactional; +import java.time.Duration; +import java.time.temporal.TemporalUnit; @Service("io.sc.platform.lcdp.configure.service.impl.ConfigureServiceImpl") public class ConfigureServiceImpl extends DaoServiceImpl implements ConfigureService { @@ -42,6 +45,13 @@ public class ConfigureServiceImpl extends DaoServiceImpl { private String id; //代码 - @Column(name="CODE_",nullable=false,length=254) - @Size(max=254) + @Column(name="CODE_",nullable=false,length=255) + @Size(max=255) private String code; //名称 - @Column(name="NAME_", length=254) + @Column(name="NAME_", length=255) @Size(min=1,max=255) private String name; //描述 - @Column(name="DESCRIPTION_", length=254) - @Size(max=254) + @Column(name="DESCRIPTION_", length=255) + @Size(max=255) private String description; //是否可用 diff --git a/io.sc.platform.system/src/main/java/io/sc/platform/system/role/jpa/entity/RoleEntity.java b/io.sc.platform.system/src/main/java/io/sc/platform/system/role/jpa/entity/RoleEntity.java index 5125ceff..8b2fe96a 100644 --- a/io.sc.platform.system/src/main/java/io/sc/platform/system/role/jpa/entity/RoleEntity.java +++ b/io.sc.platform.system/src/main/java/io/sc/platform/system/role/jpa/entity/RoleEntity.java @@ -33,18 +33,18 @@ public class RoleEntity extends CorporationAuditorEntity { private String id; //代码 - @Column(name="CODE_",nullable=false,length=254) - @Size(max=254) + @Column(name="CODE_",nullable=false,length=255) + @Size(max=255) private String code; //名称 - @Column(name="NAME_", length=254) + @Column(name="NAME_", length=255) @Size(min=1,max=255) private String name; //描述 - @Column(name="DESCRIPTION_", length=254) - @Size(max=254) + @Column(name="DESCRIPTION_", length=255) + @Size(max=255) private String description; //是否可用 @@ -53,8 +53,8 @@ public class RoleEntity extends CorporationAuditorEntity { private Boolean enable; //默认首页面模版路径 - @Column(name="INDEX_PAGE_URL_", length=254) - @Size(max=254) + @Column(name="INDEX_PAGE_URL_", length=255) + @Size(max=255) private String indexPageUrl; //角色包含的用户集合 diff --git a/io.sc.standard.frontend/package.json b/io.sc.standard.frontend/package.json index f55a5513..e145f6d8 100644 --- a/io.sc.standard.frontend/package.json +++ b/io.sc.standard.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.4", "pinia": "2.2.6", "pinia-undo": "0.2.4", - "platform-core": "8.2.31", + "platform-core": "8.2.33", "quasar": "2.17.4", "sort-array": "5.0.0", "svg-path-commander": "2.1.5", diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java index d3a57ad5..d7731d4b 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java @@ -17,8 +17,8 @@ public class IndustryEntity extends AuditorEntity { @Size(max=5) private String code; - @Column(name="NAME_", length=254) - @Size(max=254) + @Column(name="NAME_", length=255) + @Size(max=255) private String name; @Column(name="DESCRIPTION_", length=1024) diff --git a/io.sc.website/package.json b/io.sc.website/package.json index 7ccc010b..a5b59451 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.31" + "platform-core": "8.2.33" } } \ No newline at end of file