TAreaMapper.java 443 Bytes
Newer Older
wzp's avatar
wzp committed
1 2 3 4 5
package cn.wisenergy.chnmuseum.party.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import cn.wisenergy.chnmuseum.party.model.TArea;

wzp's avatar
wzp committed
6 7 8
import java.util.List;
import java.util.Map;

wzp's avatar
wzp committed
9 10 11 12 13 14 15 16 17 18
/**
 * <pre>
 * 区域表 Mapper 接口
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-24
 */
public interface TAreaMapper extends BaseMapper<TArea> {

wzp's avatar
wzp committed
19
    List<Map<String,String>> languageInfo();
wzp's avatar
wzp committed
20 21

    String selectParent(String areaId);
wzp's avatar
wzp committed
22
}