1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.cloud.attendance.service;
|
| import com.cloud.attendance.model.AttRule;
|
| /**
| * @author lp
| */
| public interface AttRuleService {
|
| /**
| * 添加规则
| * @return
| */
| int saveRule(AttRule rule);
|
| int updateRule(AttRule attRule);
|
| AttRule findRule();
| }
|
|