wangrenhuang
2022-03-02 1ffbaa7b82f99443d933b0f7d0add0b35d2db01c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hx.common.dao;
 
import com.hx.mybatisTool.SqlSentence;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
public interface CommonMapper {
 
    /**更新,返回更新数量*/
    int updateSentence(SqlSentence sqlSentence);
 
    /**查询列表,返回Map的List*/
    List<Map<String,Object>> selectListMap(SqlSentence sqlSentence);
 
    /**查询,返回条数数量*/
    int selectCountSql(SqlSentence sqlSentence);
 
}