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
| package com.yeshi.fanli.service.inter.homemodule;
|
| public interface DeviceSexService {
|
| /**
| * 保存设置
| * @param device
| * @param sex
| */
| public void save(String device, Integer sex);
|
| /**
| * 获取设置
| * @param device
| * @return
| */
| public Integer getSex(String device);
|
|
| /**
| * 删除
| * @param device
| */
| public void deleteSex(String device);
|
| /**
| * 获取设备性别
| * @param sex
| * @param device
| * @return
| */
| public int getDeviceSex(String device);
|
| /**
| * 改变设备信息
| * @param sex
| * @param device
| * @return
| */
| public int changeDeviceSex(Integer sex, String device);
|
|
| }
|
|