xiangpei
2025-05-26 e1350e5565e0119d63e95069d6b0ee135795426d
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cn.lili.modules.system.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import cn.lili.modules.logistics.entity.enums.LogisticsEnum;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 快递设置
 *
 * @author Chopper
 * @since 2020-03-10 10:04 上午
 */
@Data
public class LogisticsSetting implements Serializable {
    private static final long serialVersionUID = 3520379500723173689L;
 
    /**
     * 快递查询类型
     * @see LogisticsEnum
     */
    private String type;
 
    /**
     * 企业id
     */
    private String kdniaoEbusinessID;
    /**
     * 密钥
     */
    private String kdniaoAppKey;
 
    /**
     * 调用端口
     */
    private String requestType;
 
    /**
     * 快递100 授权码,请申请企业版获取
     */
    private String kuaidi100Customer;
    /**
     * 快递100 Key
     */
    private String kuaidi100Key;
 
    /**
     * 顺丰顾客编码
     */
    String clientCode;
 
    /**
     * 顺丰校验码
     */
    String checkWord;
 
    /**
     * 顺丰请求地址
     */
    String callUrl;
 
    /**
     * 顺丰打印模板
     */
    String templateCode;
 
    /**
     * 顺丰月结号
     */
    String monthlyCardNo;
}