步步为盈
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.

60 lines
1.1 KiB

using FreeSql.DataAnnotations;
using System;
namespace BBWY.Server.Model.Db.Mds
{
/// <summary>
/// 采购账号表
/// </summary>
[Table(Name = "purchaseaccount", DisableSyncStructure = true)]
public partial class Purchaseaccount {
/// <summary>
/// 主键
/// </summary>
[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; }
/// <summary>
/// 创建时间
/// </summary>
[Column(DbType = "datetime")]
public DateTime CreateTime { get; set; }
/// <summary>
/// 创建人Id
/// </summary>
[Column(StringLength = 50)]
public string CreatorId { get; set; }
/// <summary>
/// 否已删除
/// </summary>
[Column(DbType = "tinyint(4)")]
public sbyte Deleted { get; set; }
[Column(StringLength = 50)]
public string PurchasePlatformId { get; set; }
/// <summary>
/// 采购账号归属店铺ID
/// </summary>
[Column(StringLength = 50)]
public string ShopId { get; set; }
}
}