Helius
2021-07-15 bea4cd8cceb220189fd1fed5c2c1ff22d3e8a9ed
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
package com.xzx.gc.user.mapper;
 
import com.xzx.gc.entity.UserRole;
import com.xzx.gc.model.admin.PunchChannelModel;
import com.xzx.gc.model.admin.UserEditroleModel;
import com.xzx.gc.util.GcMapper;
import com.xzx.gc.util.PageQuery;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface UserRoleMapper extends GcMapper<UserRole> {
 
    List<UserRole> queryByCondition(PageQuery query);
 
    void batchDelXzxUserRoleInfoByIds(List<Long> ids);
 
    void updatePunchChannel(PunchChannelModel model);
 
    String queryPunchChannel();
 
    UserRole queryMaxAppRole();
 
    List<UserEditroleModel> queryEditroleApi(UserEditroleModel model);
 
    List<Map<String, Object>> queryAllAPPRoleExt(@Param("partnerId") String partnerId);
 
}