chenjiahe
2021-10-14 496b6cdc07dd9d5a78084597510efe9faa781aa7
提交 | 用户 | age
496b6c 1 package com.hx.medical.service;
C 2
3 import com.hx.medical.model.MessageNotify;
4 import com.hx.mybatisTool.SqlSentence;
5 import java.util.List;
6 import java.util.Map;
7
8 public interface MessageNotifyService {
9
10     int selectCount(SqlSentence sqlSentence);
11
12     void insert(MessageNotify messageNotify);
13
14     List<MessageNotify> selectList(SqlSentence sqlSentence);
15
16     List<Map<String,Object>> selectListMap(SqlSentence sqlSentence);
17
18     MessageNotify selectOne(SqlSentence sqlSentence);
19
20     Map<String,Object> selectOneMap(SqlSentence sqlSentence);
21
22     MessageNotify selectOneByKey(Object object);
23
24     MessageNotify selectOneByKeyBlob(Object object);
25     
26     void updateAll(MessageNotify messageNotify);
27
28     void updateWhere(SqlSentence sqlSentence);
29     
30     void deleteOne(String delId);
31
32
33 }