luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
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
43
44
45
package com.hollywood.manage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.hollywood.manage.dto.PerformerAuditDTO;
import com.hollywood.manage.query.TUserQuery;
import com.hollywood.common.basic.PageInfo;
import com.hollywood.common.model.TUser;
 
/**
 * <p>
 * 用户管理 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-03-01
 */
public interface TUserService extends IService<TUser> {
 
    /**
     * 获取用户分页列表
     * @param query
     * @return
     */
    PageInfo<TUser> userPageList(TUserQuery query);
 
    /**
     * 演员审核
     * @param dto
     * @return
     */
    int performerAudit(PerformerAuditDTO dto);
 
    /**
     * 演员冻结
     * @param id
     * @param performerStatus
     * @return
     */
    int updatePerformerStatus(Long id, Integer performerStatus);
 
    int updateStatus(Long id, Integer status);
 
    void updateUserStatus();
 
}