无关风月
2025-01-13 d98ef630d16e5e8838fd8fa87680c8abfe13be31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.stylefeng.guns.modular.system.dao;
 
import com.stylefeng.guns.modular.system.model.TCompany;
import com.stylefeng.guns.modular.system.model.TCompanyCity;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 公司经营地区 Mapper 接口
 * </p>
 *
 * @author 吕雪
 * @since 2020-06-06
 */
public interface TCompanyCityMapper extends BaseMapper<TCompanyCity> {
 
 
 
 
}