admin
2021-12-04 c79b1ebed5a42a4cbb2f824232da2a51ff22a9a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.yeshi.location.app.service.inter.sos;
 
import java.lang.Exception;
import javax.annotation.Resource;
import java.util.Date;
 
import org.yeshi.utils.bean.BeanUtil;
 
import java.util.List;
 
import com.yeshi.location.app.entity.sos.EmergencyContacts;
import com.yeshi.location.app.service.inter.sos.EmergencyContactsService;
import com.yeshi.location.app.service.query.sos.EmergencyContactsQuery;
 
 
public interface EmergencyContactsService {
 
    /**
     * 获取列表
     *
     * @param emergencyContactsQuery
     * @param page
     * @param pageSize
     * @return
     */
    public List<EmergencyContacts> list(EmergencyContactsQuery emergencyContactsQuery, int page, int pageSize);
 
 
    /**
     *
     */
    public long count(EmergencyContactsQuery emergencyContactsQuery);
 
    /**
     *
     */
    public EmergencyContacts get(String id);
 
    /**
     *
     */
    public void add(EmergencyContacts emergencyContacts) throws Exception;
 
    /**
     *
     */
    public void update(EmergencyContacts emergencyContacts);
 
    /**
     *
     */
    public void delete(List<String> idList);
 
 
 
}