guang
2023-05-05 566411019444e53ca143298ee490d33cf510e28c
提交 | 用户 | age
9e1c8d 1 package com.hx.other.service.service;
G 2
3 import com.hx.other.service.model.SqlQueryTemp;
4 import com.hx.mybatisTool.SqlSentence;
5 import java.util.List;
6 import java.util.Map;
7
8 public interface SqlQueryTempService {
9
10     int selectCount(SqlSentence sqlSentence);
11
12     void insert(SqlQueryTemp sqlQueryTemp);
13
14     List<SqlQueryTemp> selectList(SqlSentence sqlSentence);
15
16     List<Map<String,Object>> selectListMap(SqlSentence sqlSentence);
17
18     SqlQueryTemp selectOne(SqlSentence sqlSentence);
19
20     Map<String,Object> selectOneMap(SqlSentence sqlSentence);
21
22     SqlQueryTemp selectOneByKey(Object object);
23
24     SqlQueryTemp selectOneByKeyBlob(Object object);
25     
26     void updateAll(SqlQueryTemp sqlQueryTemp);
27
28     void updateWhere(SqlSentence sqlSentence);
29     
30     void deleteOne(String delId);
31
32     String selectByContent(String content);
33
34 }