wuxw
2019-04-01 fa74ecf22c36853d9097beda3dbb99482cfcb430
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.order.smo;
 
import org.springframework.http.ResponseEntity;
 
/**
 * 权限业务处理类
 * Created by Administrator on 2019/4/1.
 */
public interface IPrivilegeSMO {
 
    /**
     * 保存用户默认权限
     * @param privilegeInfo 权限信息
     * @return
     */
    public ResponseEntity<String> saveUserDefaultPrivilege(String privilegeInfo);
}