using FreeSql.DataAnnotations; using System; namespace GroupLine.Model { /// /// 铭板打印 /// [Table(Name = "dbo.PlaquePrint")] public class PlaquePrint { /// /// Id /// [Column(IsIdentity = true)] public long Id { get; set; } } }