using FreeSql.DataAnnotations; using System; namespace BBWY.Server.Model.Db { [ Table(Name = "waitpayorder", DisableSyncStructure = true)] public partial class WaitPayOrder { [Column(StringLength = 100, IsPrimary = true, IsNullable = false)] public string Id { get; set; } [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } public long? ShopId { get; set; } } }