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

47 lines
1.2 KiB

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class VenderAccountContent:JdObject{
[JsonProperty("account_id")]
public long
accountId
{ get; set; }
[JsonProperty("account_name")]
public string
accountName
{ get; set; }
[JsonProperty("user_name")]
public string
userName
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
[JsonProperty("is_phone_open")]
public int
isPhoneOpen
{ get; set; }
[JsonProperty("phone")]
public string
phone
{ get; set; }
[JsonProperty("auth_status")]
public int
authStatus
{ get; set; }
}
}