using FreeSql.DataAnnotations; using System; namespace BBWYB.Server.Model.Db.MDS { /// /// 采购账号表 /// [Table(Name = "purchaseaccount", DisableSyncStructure = true)] public partial class Purchaseaccount { /// /// 主键 /// [Column(StringLength = 50, IsPrimary = true, IsNullable = false)] public string Id { get; set; } public string AccountName { get; set; } public string AppKey { get; set; } public string AppSecret { get; set; } public string AppToken { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime")] public DateTime CreateTime { get; set; } /// /// 创建人Id /// [Column(StringLength = 50)] public string CreatorId { get; set; } /// /// 否已删除 /// [Column(DbType = "tinyint(4)")] public sbyte Deleted { get; set; } [Column(StringLength = 50)] public string PurchasePlatformId { get; set; } /// /// 采购账号归属店铺ID /// [Column(StringLength = 50)] public string ShopId { get; set; } } }