- 将 Controllers, Services, Models, Properties 等目录移至 src/ 下 - 创建 Fengling.Console.slnx Rider 解决方案文件 - 更新 csproj 中的项目引用路径 - 修复 CI/CD 配置: - build.yml: 更新项目路径为 src/Fengling.Console.csproj - docker.yml: 添加 Dockerfile 路径指向 src/Dockerfile - Dockerfile: 修复 COPY 路径以匹配新的目录结构 Closes #重构项目结构
13 lines
287 B
C#
13 lines
287 B
C#
using Fengling.Platform.Domain.AggregatesModel.TenantAggregate;
|
|
|
|
namespace Fengling.Console.Models.Dtos;
|
|
|
|
public class TenantQueryDto : PaginationQueryDto
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public string? TenantId { get; set; }
|
|
|
|
public TenantStatus? Status { get; set; }
|
|
}
|