using Volo.Abp.Application.Dtos; using Yi.Framework.CodeGun.Application.Contracts.Dtos.Field; namespace Yi.Framework.CodeGun.Application.Contracts.Dtos.Table { public class TableDto : EntityDto { public Guid Id { get; set; } /// /// 表名 /// public string Name { get; set; } /// /// 备注 /// public string? Description { get; set; } /// /// 一表多字段 /// public List Fields { get; set; } } }