wuxw
2019-04-04 e68acd032f3f7a6b672873a57e21dd6069d41907
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
package com.java110.web.smo;
 
import com.java110.core.context.IPageData;
import org.springframework.http.ResponseEntity;
 
/**
 * 员工管理服务接口类
 * Created by Administrator on 2019/4/2.
 */
public interface IStaffServiceSMO {
 
    /**
     * 保存员工信息
     * @param pd
     * @return
     */
    public ResponseEntity<String> saveStaff(IPageData pd);
 
 
    /**
     * 加载 员工信息
     * @param pd
     * @return
     */
    public ResponseEntity<String> loadData(IPageData pd);
 
 
    /**
     * 修改员工信息
     * @param pd
     * @return
     */
    public ResponseEntity<String> modifyStaff(IPageData pd);
 
 
    /**
     * 删除员工
     * @param pd
     * @return
     */
    public ResponseEntity<String> delete(IPageData pd);
}