using System; using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { public class JC_Shop { [PrimaryKey, Identity] public int ShopId { get; set; } /// /// 店铺名称 /// public string ShopName { get; set; } /// /// 1速卖通2亚马逊3Ebay4Wish /// public int? PlatType { get; set; } /// /// 所属部门 /// public int? DeptId { get; set; } /// /// 添加日期 /// public DateTime? InDate { get; set; } public int? CompanyId { get; set; } /// /// 最大请求次数 /// public int? RequestMaxNumber { get; set; } /// /// 当前请求次数 /// public int? RequestNumber { get; set; } /// /// 开发者帐号,速卖通AppKey,亚马逊accessKeyId /// public string Appkey { get; set; } /// /// 开发者密钥,速卖通DeveKey,亚马逊secretAccessKey /// public string DeveKey { get; set; } /// /// 速卖通长时令牌,亚马逊卖家ID /// public string RefreshToken { get; set; } /// /// 速卖通短时令牌,亚马逊店铺ID,Ebay与Wish的Token /// public string AccessToken { get; set; } /// /// 亚马逊API请求服务器国家地址 /// public string Country { get; set; } /// /// 长时令牌保存时间 /// public DateTime? RefreshTokenSaveTime { get; set; } /// /// 短时令牌更新时间 /// public DateTime? AccessTokenUpdateTime { get; set; } /// /// 是否每天自动读取API订单 /// public bool? IsAutoReadData { get; set; } /// /// 店铺匹配优先级 /// public int? LevelGrade { get; set; } /// /// 是否有FBA店铺 /// public bool? IsFba { get; set; } public int? OutDay { get; set; } public string Master { get; set; } public string Buyer { get; set; } public string ShopUser { get; set; } public string ShopNo { get; set; } public string LoginName { get; set; } public string Password { get; set; } public decimal? PersonFee { get; set; } public string Code { get; set; } public string ReUrl { get; set; } public DateTime? FeeDate { get; set; } public decimal? TXFee { get; set; } public int? state { get; set; } public string sendname { get; set; } public string store_id { get; set; } public decimal? dayfee { get; set; } /// /// 是否自己上传面单 1 是,2不同步 /// public int? Upload_label { get; set; } } }