IDistrictPlanningService.java 284 Bytes
Newer Older
wanghao's avatar
wanghao committed
1 2
package com.zehong.system.service;

3 4 5 6
import com.zehong.system.domain.TCountyLevelRegion;

import java.util.List;

wanghao's avatar
wanghao committed
7 8 9 10 11 12 13 14
/**
 * 行政区规划service
 *
 * @author zehong
 * @date 2024-07-01
 */
public interface IDistrictPlanningService {

15
    List<TCountyLevelRegion> listCountyByDict();
wanghao's avatar
wanghao committed
16
}