懒羊羊
2023-12-28 e46d3baaf3e8d7d85f4bafec3aad75e52b078408
提交 | 用户 | 时间
e46d3b 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace YX.Entity
7 {
8     public  class ExpressInfo
9     {
10         public string status { get; set; }
11         public string nu { get; set; }
12         public string com { get; set; }
13         public List<ExpressDetail> data { get; set; }
14     }
15     public class ExpressDetail
16     {
17         public string time { get; set; }
18         public string context { get; set; }
19     }
20 }