| | |
| | | package com.vci.ubcs.code.vo.pagemodel; |
| | | |
| | | import plm.bs.bom.clientobject.ClientBusinessObject; |
| | | |
| | | import com.vci.ubcs.starter.revision.model.BaseModel; |
| | | |
| | | import java.util.*; |
| | | |
| | |
| | | * 是否成功的 |
| | | */ |
| | | private boolean success ; |
| | | |
| | | /** |
| | | * 关键属性校验规则的信息 |
| | | */ |
| | | private String keyAttrRuleInfo; |
| | | |
| | | /** |
| | | * 近义词查询属性校验规则的信息 |
| | | */ |
| | | private String synonymRuleInfo; |
| | | |
| | | /** |
| | | * 关键属性校验后,重复的行号 |
| | | */ |
| | | private Set<String> keyAttrRepeatRowIndexList = new HashSet<>(); |
| | | |
| | | /*** |
| | | * 关键属性相同的属性oid与其重复的数据oid |
| | | */ |
| | | private Map<String,List<String>> keyAttrOkOidTORepeatOidMap=new HashMap<>(); |
| | | |
| | | /*** |
| | | * 根据关键熟悉查询的重复的数据对象 |
| | | */ |
| | | private Map<String, List<BaseModel>> indexTODataMap=new HashMap<>(); |
| | | |
| | | /*** |
| | | * 根据关键熟悉查询的重复的数据对象 |
| | | */ |
| | | private Map<String, List<ClientBusinessObject>> indexTODataMap=new HashMap<>(); |
| | | //private Map<String, List<ClientBusinessObject>> indexTODataMap=new HashMap<>(); |
| | | |
| | | /** |
| | | * excel自身重复的行号 |
| | |
| | | */ |
| | | private Set<String> unPassVerifyRowIndexSet = new HashSet<>(); |
| | | |
| | | public Set<String> getUnPassVerifyRowIndexSet() { |
| | | public void setSuccess(boolean success) { |
| | | this.success = success; |
| | | } |
| | | |
| | | public void setSynonymRuleInfo(String synonymRuleInfo) { |
| | | this.synonymRuleInfo = synonymRuleInfo; |
| | | } |
| | | |
| | | public boolean isSuccess() { |
| | | return success; |
| | | } |
| | | |
| | | public String getSynonymRuleInfo() { |
| | | return synonymRuleInfo; |
| | | } |
| | | |
| | | public Set<String> getUnPassVerifyRowIndexSet() { |
| | | return unPassVerifyRowIndexSet; |
| | | } |
| | | |
| | |
| | | this.selfRepeatRowIndexList = selfRepeatRowIndexList; |
| | | } |
| | | |
| | | public Map<String,List<ClientBusinessObject>> getIndexTODataMap() { |
| | | public Map<String, List<BaseModel>> getIndexTODataMap() { |
| | | return indexTODataMap; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | |
| | | ", nullRowIndexList=" + nullRowIndexList + |
| | | ", unPassVerifyRowIndexSet=" + unPassVerifyRowIndexSet + |
| | | '}'; |
| | | } |
| | | }*/ |
| | | |
| | | |
| | | } |