jiangping
2025-01-17 1465eb9dc666715143d75a6ffcac4312f923e947
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
package com.doumee.service.business.third.model.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("tms根据合同号查询订单生命周期状态明细返回参数")
public class TmsCircleStatusListResponse {
   /**
    */
   @ApiModelProperty(value = "订单状态描述" )
   private String orderStatusDes    ;//字符串    订单状态描述
   @ApiModelProperty(value = "状态记录时间" )
   private String recordDate    ;//字符串    状态记录时间
   @ApiModelProperty(value = "订单状态码" )
   private Integer  orderStatus;//    字符串    订单状态码
   @ApiModelProperty(value = "订单状态记录类型" )
   private Integer type;//    字符串    订单状态记录类型
   @ApiModelProperty(value = "撤销原因" )
   private String  canCelReason;//    字符串    撤销原因
   @ApiModelProperty(value = "号码" )
   private String  tel    ;//字符串    号码
 
 
   @ApiModelProperty(value = "订单状态唯一标识" )
   private Integer  statusKey;//    字符串    订单状态码
 
   private long timeStamp;//
 
}