2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
package cn.iocoder.yudao.module.trade.framework.delivery.core.client.dto.kd100;
 
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 快递 100 快递查询 Req DTO
 *
 * @author jason
 */
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Kd100ExpressQueryReqDTO {
 
    /**
     * 快递公司编码
     */
    @JsonProperty("com")
    private String expressCode;
 
    /**
     * 快递单号
     */
    @JsonProperty("num")
    private String logisticsNo;
 
    /**
     * 收、寄件人的电话号码
     */
    private String phone;
 
}