3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
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
package com.landtool.lanbase.modules.org.service;
 
import com.landtool.lanbase.modules.org.entity.OrgUserAuth;
import com.landtool.lanbase.modules.org.entity.OrgUserJoinAuth;
import java.util.List;
import java.util.Map;
 
/**
 * @author zimao.guo
 * @Description: TODO(用户审核表)
 * @date 2018-01-24 14:25:23
 */
public interface OrgUserAuthService {
    
    OrgUserAuth queryObject(Long authId);
    
    List<OrgUserAuth> queryList(Map<String, Object> map);
    
    List<OrgUserJoinAuth> queryOrgUserJoinAuthList(Map<String, Object> map);
    
    int queryTotal(Map<String, Object> map);
    
    int queryOrgUserJoinAuthTotal(Map<String, Object> map);
    
    void save(OrgUserAuth userAuth);
    
    void update(OrgUserAuth userAuth);
    
    void delete(Long authId);
    
    void deleteBatch(Long[] authIds);
 
    void updateAuthState(Long authId, Long authResult);
}