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();
|
|
}
|