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
{
///
/// 模块
///
public string? Module { get; set; }
///
/// 字段
///
public List? Fields { get; set; }
}
}