15 lines
254 B
15 lines
254 B
1 year ago
|
package com.bs.system.mapper;
|
||
|
|
||
|
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||
1 year ago
|
import com.bs.system.domain.DfArea;
|
||
1 year ago
|
|
||
|
/**
|
||
|
* 全国城市Mapper接口
|
||
|
*
|
||
|
* @author bs
|
||
1 year ago
|
* @date 2024-04-13
|
||
1 year ago
|
*/
|
||
1 year ago
|
public interface DfAreaMapper extends BaseMapperX<DfArea> {
|
||
1 year ago
|
|
||
|
}
|