提交 | 用户 | age | ||
826b66 | 1 | package com.hx.common.dao.mapper; |
C | 2 | |
3 | import com.hx.mybatisTool.SqlSentence; | |
4 | ||
5 | ||
6 | import java.util.List; | |
7 | import java.util.Map; | |
8 | ||
9 | public interface CommonMapper { | |
10 | ||
11 | /**更新,返回更新数量*/ | |
12 | int updateSentence(SqlSentence sqlSentence); | |
13 | ||
14 | /**查询列表,返回Map的List*/ | |
15 | List<Map<String,Object>> selectListMap(SqlSentence sqlSentence); | |
16 | ||
17 | /**查询,返回条数数量*/ | |
18 | int selectCountSql(SqlSentence sqlSentence); | |
19 | ||
20 | } |