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.
58 lines
1.5 KiB
58 lines
1.5 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class QueryMap:JdObject{
|
||
|
[JsonProperty("id")]
|
||
|
public string
|
||
|
|
||
|
id
|
||
|
{ get; set; }
|
||
|
[JsonProperty("buyer_id")]
|
||
|
public string
|
||
|
|
||
|
buyerId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("buyer_name")]
|
||
|
public string
|
||
|
|
||
|
buyerName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("check_time")]
|
||
|
public string
|
||
|
|
||
|
checkTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("apply_time")]
|
||
|
public string
|
||
|
|
||
|
applyTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("apply_refund_sum")]
|
||
|
public string
|
||
|
|
||
|
applyRefundSum
|
||
|
{ get; set; }
|
||
|
[JsonProperty("status")]
|
||
|
public string
|
||
|
|
||
|
status
|
||
|
{ get; set; }
|
||
|
[JsonProperty("check_username")]
|
||
|
public string
|
||
|
|
||
|
checkUsername
|
||
|
{ get; set; }
|
||
|
[JsonProperty("order_id")]
|
||
|
public string
|
||
|
|
||
|
orderId
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|