jinpengyong
2023-11-08 31c65cd4f338256b76efebdb2f1f29deb170969f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.api.service;
 
import com.moral.api.entity.ManageAccountRole;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 后台账户角色关系表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-03-09
 */
public interface ManageAccountRoleService extends IService<ManageAccountRole> {
 
}