using FreeSql.DataAnnotations; using System; namespace BBWY.Server.Model.Db { [Table(Name = "giftorder", DisableSyncStructure = true)] public partial class GiftOrder { [Column(StringLength = 50, IsPrimary = true, IsNullable = false)] public string Id { get; set; } [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } [Column(DbType = "datetime")] public DateTime? ModifyTime { get; set; } [Column(MapType = typeof(int?))] public Enums.OrderState? OrderState { get; set; } [Column(MapType = typeof(int))] public Enums.Platform Platform { get; set; } public long ShopId { get; set; } [Column(DbType = "datetime")] public DateTime? StartTime { get; set; } } }