ludc
2024-02-24 156e136377680ac2dd5ad89735b7273db6f6d1d5
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/pagemodel/CodeImportResultVO.java
@@ -21,6 +21,7 @@
     * 是否成功的
     */
    private boolean success ;
    /**
     * 关键属性校验规则的信息
     */
@@ -30,10 +31,17 @@
     * 关键属性校验后,重复的行号
     */
    private Set<String> keyAttrRepeatRowIndexList  = new HashSet<>();
   /***
    * 关键属性相同的属性oid与其重复的数据oid
    */
   private Map<String,List<String>> keyAttrOkOidTORepeatOidMap=new HashMap<>();
   /***
    * 根据关键熟悉查询的重复的数据对象
    */
   private Map<String,  List<BaseModel>> indexTODataMap=new HashMap<>();
    /***
     * 根据关键熟悉查询的重复的数据对象
     */
@@ -101,6 +109,14 @@
   public void setIndexTODataMap(Map<String, List<BaseModel>> indexTODataMap) {
      this.indexTODataMap = indexTODataMap;
   }
   public Map<String, List<String>> getKeyAttrOkOidTORepeatOidMap() {
      return keyAttrOkOidTORepeatOidMap;
   }
   public void setKeyAttrOkOidTORepeatOidMap(Map<String, List<String>> keyAttrOkOidTORepeatOidMap) {
      this.keyAttrOkOidTORepeatOidMap = keyAttrOkOidTORepeatOidMap;
   }
   /*public Map<String,List<ClientBusinessObject>> getIndexTODataMap() {
        return indexTODataMap;
    }