Files
whale-town-end/src/business/user_mgmt/index.ts
moyin bb796a2469 refactor:项目架构重构和命名规范化
- 统一文件命名为snake_case格式(kebab-case  snake_case)
- 重构zulip模块为zulip_core,明确Core层职责
- 重构user-mgmt模块为user_mgmt,统一命名规范
- 调整模块依赖关系,优化架构分层
- 删除过时的文件和目录结构
- 更新相关文档和配置文件

本次重构涉及大量文件重命名和模块重组,
旨在建立更清晰的项目架构和统一的命名规范。
2026-01-08 00:14:14 +08:00

38 lines
901 B
TypeScript

/**
* 用户管理业务模块导出
*
* 功能描述:
* - 用户状态管理(激活、锁定、禁用等)
* - 批量用户操作
* - 用户状态统计和分析
* - 状态变更审计和历史记录
*
* 职责分离:
* - 统一导出用户管理模块的所有公共组件
* - 提供模块化的访问接口
* - 简化外部模块的依赖管理
*
* 最近修改:
* - 2026-01-07: 代码规范优化 - 修正文件命名规范,完善注释规范,更新作者信息 (修改者: moyin)
*
* @author moyin
* @version 1.0.1
* @since 2025-12-24
* @lastModified 2026-01-07
*/
// 模块
export * from './user_mgmt.module';
// 控制器
export * from './user_status.controller';
// 服务
export * from './user_management.service';
// DTO
export * from './user_status.dto';
export * from './user_status_response.dto';
// 常量
export * from './user_mgmt.constants';