1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.order.util.vo;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2024/12/16 15:00
| */
| @Data
| @ApiModel
| public class QueryKD100ListVo {
| @ApiModelProperty("内容")
| private String context;
| @ApiModelProperty("时间")
| private String time;
| @ApiModelProperty("格式化为后时间")
| private String ftime;
| @ApiModelProperty("本数据元对应的物流状态名称或者高级状态名称,实时查询接口中提交resultv2=1或者resultv2=4标记后才会出现")
| private String status;
| }
|
|