chenjiahe
2022-03-31 0bf91738d54b72851f5a7f46916fe737d907574d
提交 | 用户 | age
93b505 1 package com.hx.common.dao;
C 2
3 import com.hx.mybatisTool.SqlSentence;
4
5 import java.io.Serializable;
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
b1097d 17     /**查询,返回条数数量*/
C 18     int selectCountSql(SqlSentence sqlSentence);
19
93b505 20 }