forked from kidgrow-microservices-platform

侯瑞军
2020-04-08 6325ff05bb15908b3dd975e958737c5dddf0e50d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.kidgrow.usercenter.mapper;
 
import com.kidgrow.db.mapper.SuperMapper;
import com.kidgrow.usercenter.model.SysArea;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 * @Description: 省市区数据表<br>
 * @Project: 用户中心<br>
 * @CreateDate: Created in 2020-04-02 14:02:50 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 * @version 1.0
 */
public interface SysAreaMapper extends SuperMapper<SysArea> {
    /**
     * 查询省市区数据表列表
     * @param params
     * @return
     */
    List<SysArea> findList(@Param("p") Map<String, Object> params);
 
    /**
     * 根据SysArea对象当做查询条件进行查询
     * @param
     * @return SysArea对象
     */
    SysArea findByObject(@Param("p") SysArea sysArea);
}