using FreeSql.DataAnnotations;
using System;
namespace Admin.Core.Model.Admin
{
///
/// 系统表,用于查询系统函数
///
[Table(Name = "ad_dual")]
public class DualEntity
{
///
/// 主键Id
///
[Column(Position = 1, IsPrimary = true, IsNullable = false)]
public Guid Id { get; set; }
}
}