Zxd.Core/code/Zxd.Crm.Domain/Dto/CreateTableFieldDto.cs

24 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Crm.Domain.Dto
{
public class CreateTableFieldDto
{
/// <summary>
/// 模块
/// </summary>
public string? Module { get; set; }
/// <summary>
/// 字段
/// </summary>
public List<CreateFieldDto>? Fields { get; set; }
}
}