ChenJiaHe
2022-01-22 f12d2c4c92dcd7929bce4d2df74f48f8abc08350
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
 
}