refactor,feat: 批量代码重构与新增业务模块
1. 重命名枚举项与实体字段,修正类型引用 2. 新增IsNull扩展方法与多项字符串处理扩展 3. 新增大量业务DTO、服务接口与枚举定义 4. 重构RabbitMQ服务实现,替换旧版消息队列组件 5. 优化签到服务的宠物喂养事务逻辑 6. 移除冗余的项目引用与旧版消息队列代码 7. 新增Excel导出、导入模板相关工具方法
This commit is contained in:
@ -43,4 +43,23 @@ public class BusinessException : Exception
|
||||
public BusinessException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
public static void ThrowIf(bool isTrue, string message)
|
||||
{
|
||||
if (isTrue) throw new BusinessException(message);
|
||||
}
|
||||
|
||||
public static void ThrowIf(bool isTrue, Func<string> action)
|
||||
{
|
||||
if (isTrue) throw new BusinessException(action.Invoke());
|
||||
}
|
||||
|
||||
public static void ThrowIf(bool isTrue, string message, Action action)
|
||||
{
|
||||
if (isTrue)
|
||||
{
|
||||
action();
|
||||
throw new BusinessException(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user