rentaiming
2024-06-11 2f2eb2bb2c6a5a16b7081dbbe3b683acf18d04bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "物流订单查询", description = "物流订单查询")
public class LogisticsDTO {
    @ApiModelProperty(value = "快递公司编号")
   private String company ;
    @ApiModelProperty(value = "物流订单号")
    private String postid ;
}