cjl
2023-10-30 f2f77f203fd6b054197ecaba0517a159e8b3ac8f
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
package com.moral.api.service;
 
import com.moral.api.entity.ManageAccountRole;
import com.baomidou.mybatisplus.extension.service.IService;
import com.moral.api.pojo.dto.accountRole.AccountRoleDTO;
import com.moral.api.pojo.form.accountRole.AccountRoleUpdateForm;
 
/**
 * <p>
 * 后台账户角色关系表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-03-09
 */
public interface ManageAccountRoleService extends IService<ManageAccountRole> {
 
    /**
    * @Description: 更新账号角色
            * @Param: [form]
            * @return: com.moral.api.pojo.dto.accountRole.AccountRoleDTO
            * @Author: 陈凯裕
            * @Date: 2021/6/9
            */
    AccountRoleDTO updateAccountRole(AccountRoleUpdateForm form);
 
}