using Volo.Abp.Application.Dtos; using Yi.Framework.CodeGun.Domain.Shared.Enums; namespace Yi.Framework.CodeGun.Application.Contracts.Dtos.Field { public class FieldDto : EntityDto { /// /// 字段名称 /// public string Name { get; set; } public string? Description { get; set; } public int OrderNum { get; set; } public int Length { get; set; } public FieldTypeEnum FieldType { get; set; } public Guid TableId { get; set; } /// /// 是否必填 /// public bool IsRequired { get; set; } /// /// 是否主键 /// public bool IsKey { get; set; } /// /// 是否自增 /// public bool IsAutoAdd { get; set; } /// /// 是否公共 /// public bool IsPublic { get; set; } public Guid Id { get; set; } } }