mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
11 lines
488 B
C#
11 lines
488 B
C#
using NetAdmin.SysComponent.Domain.Dto.Sys.Dic.Catalog;
|
|
|
|
namespace NetAdmin.SysComponent.Application.Modules.Sys;
|
|
|
|
/// <summary>
|
|
/// 字典目录模块
|
|
/// </summary>
|
|
public interface IDicCatalogModule : ICrudModule<CreateDicCatalogReq, QueryDicCatalogRsp // 创建类型
|
|
, QueryDicCatalogReq, QueryDicCatalogRsp // 查询类型
|
|
, DelReq // 删除类型
|
|
>; |