using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Domain.PageObject { public class AllPCBAPIJQModel { // "token": "string", //"orderno": "string", //"delieverydays": 0, //"delieverydate": "2020-05-08T01:56:39.714Z", //"opadmin": "string" /// /// 外贸密钥 /// public string token { get; set; } /// /// 外贸订单号 /// public string orderno { get; set; } /// /// 交期天数 /// public int delieverydays { get; set; } /// /// 交期日期 /// public DateTime delieverydate { get; set; } /// /// 默认 /// public string opadmin { get; set; } /// /// 时间戳 /// public long Timestamp { get; set; } /// /// 内贸密钥 /// public string AppSecret { get; set; } /// /// 内贸订单号 /// public string businessOrderNo { get; set; } /// /// 内贸交期天数 /// public int deliverydays { get; set; } /// /// 内贸交期日期 /// public DateTime deliveryDate { get; set; } } }