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

31 lines
774 B

3 years ago
using Newtonsoft.Json;
using System;
namespace Jd.Api.Domain
{
[Serializable]
public class AbnormalOrderInfoDTO : JdObject
{
[JsonProperty("orderId")]
public string orderId { get; set; }
[JsonProperty("deliveryId")]
public string deliveryId { get; set; }
[JsonProperty("operateTime")]
public DateTime operateTime { get; set; }
[JsonProperty("mainTypeName")]
public string mainTypeName { get; set; }
[JsonProperty("reqestComment")]
public string reqestComment { get; set; }
[JsonProperty("currentAuditCounter")]
public int currentAuditCounter { get; set; }
[JsonProperty("totalAuditCounter")]
public int totalAuditCounter { get; set; }
}
}