You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
3.9 KiB
166 lines
3.9 KiB
4 years ago
|
package com.hai.service;
|
||
|
/**
|
||
|
* @ClassName: CommonService
|
||
|
* @Description:TODO(共用接口)
|
||
|
* @author: 杜江
|
||
|
* @date: 2020年07月07日 15:35:43
|
||
|
* @Copyright: 2018 www.shinwoten.com Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
import com.alibaba.fastjson.JSONObject;
|
||
|
import com.hai.entity.SecDictionary;
|
||
|
import com.hai.entity.SecRegion;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
*@ClassName CommonService
|
||
|
*@Description 共用接口
|
||
|
*@Author 杜江
|
||
|
*@Date 2020/7/7 15:35
|
||
|
*@Version 1.0
|
||
|
*/
|
||
|
public interface CommonService {
|
||
|
|
||
|
/**
|
||
|
* @Title: getDictionaries
|
||
|
* @Description: 获取所有的数据字典
|
||
|
* @author: 机器猫
|
||
|
* @param: @param codeType
|
||
|
* @param: @return
|
||
|
* @return: List<BaseDictionary>
|
||
|
* @throws
|
||
|
*/
|
||
|
Map<String, Map<String, SecDictionary>> getDictionaries();
|
||
|
|
||
|
/**
|
||
|
* @Title: getDictionary
|
||
|
* @Description: 精确查找数据字典值
|
||
|
* @author: 机器猫
|
||
|
* @param: @param codeType
|
||
|
* @param: @param codeValue
|
||
|
* @param: @return
|
||
|
* @param: @throws Exception
|
||
|
* @return: SysDictionary
|
||
|
* @throws
|
||
|
*/
|
||
|
String getDictionaryCodeName(String codeType, String codeValue);
|
||
|
|
||
|
/**
|
||
|
* @Title: mappingSysCode
|
||
|
* @Description: 根据codetype,codevalue获取系统字典数据
|
||
|
* @author: 机器猫
|
||
|
* @param: @param codeType
|
||
|
* @param: @param codeValue
|
||
|
* @param: @return
|
||
|
* @param: @throws Exception
|
||
|
* @return: SysDictionary
|
||
|
* @throws
|
||
|
*/
|
||
|
SecDictionary mappingSysCode(String codeType, String codeValue);
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: mappingSysName
|
||
|
* @Description: 根据codetype,codeName获取系统字典数据
|
||
|
* @author: 杜江
|
||
|
* @Date: 2020/8/21 14:13
|
||
|
* @param: [codeType, codeName]
|
||
|
* @return: com.shinwoten.train.entity.SecDictionary
|
||
|
* @throws
|
||
|
*/
|
||
|
SecDictionary mappingSysName(String codeType, String codeName);
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 根据codeType获取该类的所有字典数据
|
||
|
* @param codeType
|
||
|
* @return
|
||
|
*/
|
||
|
List<SecDictionary> getDictionarys(String codeType);
|
||
|
|
||
|
/**
|
||
|
* 根据codeType获取该类的所有字典数据
|
||
|
* @param codeType
|
||
|
* @return
|
||
|
*/
|
||
|
List<SecDictionary> getDictionarysAndExt(String codeType, String ext1);
|
||
|
|
||
|
List<JSONObject> getIdAndName(String codeType);
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: getProvinces
|
||
|
* @Description: 获取城市信息
|
||
|
* @author: 机器猫
|
||
|
* @param: @return
|
||
|
* @return: List<BaseRegion>
|
||
|
* @throws
|
||
|
*/
|
||
|
List<SecRegion> getCities();
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: getCities
|
||
|
* @Description: 根据parentID获取地市列表
|
||
|
* @author: 机器猫
|
||
|
* @param: @param provinceId
|
||
|
* @param: @return
|
||
|
* @return: List<BaseRegion>
|
||
|
* @throws
|
||
|
*/
|
||
|
List<SecRegion> getRegionsByParentId(Long parentId);
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: getCities
|
||
|
* @Description: 根据regionId 查询
|
||
|
* @author: 胡锐
|
||
|
* @param: @param provinceId
|
||
|
* @param: @return
|
||
|
* @return: List<BaseRegion>
|
||
|
* @throws
|
||
|
*/
|
||
|
SecRegion getRegionsById(Long regionId);
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: getParentInfoByRegionId
|
||
|
* @Description: 根据区域Id获取父级目录
|
||
|
* @author: 机器猫
|
||
|
* @param: @param regionId
|
||
|
* @param: @return
|
||
|
* @return: Map<String,BaseRegion> key:province,city,region
|
||
|
* @throws
|
||
|
*/
|
||
|
Map<String, SecRegion> getParentInfoByRegionId(Long regionId);
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: getRegionName
|
||
|
* @Description: 组装区域名称
|
||
|
* @author: 杜江
|
||
|
* @Date: 2020/7/8 17:37
|
||
|
* @param: [regionId]
|
||
|
* @return: java.lang.String
|
||
|
* @throws
|
||
|
*/
|
||
|
String getRegionName(Long regionId);
|
||
|
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Title: findByName
|
||
|
* @Description: 通过区域名称查询
|
||
|
* @author: 杜江
|
||
|
* @Date: 2020/7/10 15:43
|
||
|
* @param: [name]
|
||
|
* @return: java.util.List<com.shinwoten.plat.entity.SecRegion>
|
||
|
* @throws
|
||
|
*/
|
||
|
List<SecRegion> findByName(String name);
|
||
|
|
||
|
|
||
|
}
|