Newer
Older
huludao / src / main / java / com / newfiber / api / pc / service / WarnTeamSupService.java
@新烽开发者 新烽开发者 on 19 Jul 582 bytes init
package com.newfiber.api.pc.service;

import com.baomidou.mybatisplus.service.IService;
import com.newfiber.api.pc.model.entity.WarnTeamSup;

/**
 * @ClassName WarnTeamSupService
 * @Description TODO
 * @Author zhz
 * @Date sj 19:18
 * Version 1.0
 **/
public interface WarnTeamSupService extends IService<WarnTeamSup> {
    /**
     * 将该bossId对应的人员改为审批人员,其余人员变为非审批人员
     * @Param [bossId]
     * @return {void}
     * @throws
     * @author 张鸿志
     * @date 2021/6/19 8:48
     */
    void changeApprUser(Integer bossId);
}