namespace BBWYB.Server.Model.Dto
{
public class ShopSettingRequest
{
public long ShopId { get; set; }
///
/// 采购账号Id=0或者空 将视为新增操作
///
public string PurchaseAccountId { get; set; }
///
/// 采购账号AccountName
///
public string AccountName { get; set; }
///
/// 采购账号AppKey
///
public string AppKey { get; set; }
///
/// 采购账号AppSecret
///
public string AppSecret { get; set; }
///
/// 采购账号Token
///
public string AppToken { get; set; }
///
/// 采购平台
///
public Enums.Platform PurchasePlatformId { get; set; }
public string Password { get; set; }
}
}