移动系统liao
2024-08-15 f43970a061d3c90520b4e8f48caa17a204d9a085
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.DTO.WeChatShipping
{
    /// <summary>
    /// 获取运力id列表get_delivery_list返回值处理
    /// </summary>
 
    public class GetDeliveryListResult
    {
        /// <summary>
        /// 返回码
        /// </summary>
        public int errcode { get; set; }
 
        /// <summary>
        /// 运力公司个数
        /// </summary>
        public int count { get; set; }
 
        /// <summary>
        /// 运力公司列表
        /// </summary>
        public List<deliveryModel> delivery_list { get; set; }
 
 
    }
 
    /// <summary>
    /// 快递公司实体
    /// </summary>
    public class deliveryModel
    {
        /// <summary>
        /// 公司编码
        /// </summary>
        public string delivery_id { get; set; }
 
        /// <summary>
        /// 公司名称
        /// </summary>
        public string delivery_name { get; set; }
 
 
    }
 
}