kongzy
2023-09-22 3124f3a5b7f45d043b228829b6b3a2e541b31574
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.nms.swspkmas_standalone.service;
 
import com.nms.swspkmas_standalone.entity.vo.AccountVO;
 
import java.util.List;
 
/**
 * <p>
 * 账号 服务类
 * </p>
 *
 * @author kzy
 * @since 2023-09-19 16:30:35
 */
public interface CommonService {
 
    /**
     * 新疆地区列表
     */
    public List<String> areaListOfXinJiang();
 
}