yantian yue
2023-12-28 fd5f7c86beec35f6b7cde3f16f23c6cf1279a447
提交 | 用户 | 时间
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 }