You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.1 KiB
101 lines
2.1 KiB
3 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace BBWY.Server.Model.Db.Mds
|
||
|
{
|
||
|
|
||
|
[Table(Name = "shops", DisableSyncStructure = true)]
|
||
|
public partial class Shops
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// Id
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺Key
|
||
|
/// </summary>
|
||
|
|
||
|
public string AppKey { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺Secret
|
||
|
/// </summary>
|
||
|
|
||
|
public string AppSecret { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺Token
|
||
|
/// </summary>
|
||
|
|
||
|
public string AppToken { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人Id
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string CreatorId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50, IsNullable = false)]
|
||
|
public string CreatorRealName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 0淘宝,1京东,2阿里巴巴
|
||
|
/// </summary>
|
||
|
|
||
|
public int? PlatformId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 平台名称
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string PlatformName { get; set; }
|
||
|
|
||
|
|
||
|
public string PurchaseAppKey { get; set; }
|
||
|
|
||
|
|
||
|
public string PurchaseAppSecret { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购平台
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 50)]
|
||
|
public string PurchasePlatformId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺ID
|
||
|
/// </summary>
|
||
|
|
||
|
public string ShopId { get; set; }
|
||
|
|
||
|
|
||
|
public string ShopName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺账号
|
||
|
/// </summary>
|
||
|
|
||
|
public string ShopNick { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 店铺类型
|
||
|
/// </summary>
|
||
|
|
||
|
public string ShopType { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|