using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Model.ModelMapConfig
{
///
/// ModelMap
/// 模型的匹配
///
[Table(Name = "ModelMap")]
public class ModelMap
{
///
/// 主键
///
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 名称
///
[Column(Name = "Name", IsNullable = true, StringLength = 50)]
public string? Name { get; set; }
///
/// 内容
///
[Column(Name = "Comment", IsNullable = true, StringLength = 50)]
public string? Comment { get; set; }
///
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
///
public List? Columns { get; set; }
}
}