Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { /** * 获取所有资源分类 */ ListAll(ctx context.Context) ([]dto.UmsResourceCate, error) /** * 创建资源分类 */ Create(ctx context.Context, param dto.UmsResourceCateParam) (int64, error) /** * 修改资源分类 */ Update(ctx context.Context, id int64, param dto.UmsResourceCateParam) (int64, error) /** * 删除资源分类 */ Delete(ctx context.Context, id int64) (int64, error) // contains filtered or unexported methods }
后台资源分类管理Service
Click to show internal directories.
Click to hide internal directories.