16 lines
449 B
Go
16 lines
449 B
Go
package repository
|
|
|
|
import "be.ems/src/modules/system/model"
|
|
|
|
// ISysRoleDept 角色与部门关联表 数据层接口
|
|
type ISysRoleDept interface {
|
|
// DeleteRoleDept 批量删除角色部门关联信息
|
|
DeleteRoleDept(roleIds []string) int64
|
|
|
|
// DeleteDeptRole 批量删除部门角色关联信息
|
|
DeleteDeptRole(deptIds []string) int64
|
|
|
|
// BatchRoleDept 批量新增角色部门信息
|
|
BatchRoleDept(sysRoleDepts []model.SysRoleDept) int64
|
|
}
|