liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
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();
}