xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
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
package com.nuvole.four.domain;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
// @formatter:off
/**
 @author
 
 ***** *   *  ****
    *   * *  *
   *     *   *
  *     * *  *
 ***** *   *  ****
 
 @Date 2019/7/29 9:22
 @Description 去领奖返回信息
 */
// @formatter:on
 
@Data
@Api(value = "领奖提交订单返回", tags = "领奖提交订单返回")
public class AcceptResult {
 
    @ApiModelProperty("订单ID")
    private Long orderId;
 
    @ApiModelProperty("订单编号")
    private String orderNo;
 
    @ApiModelProperty("领奖时间")
    private Date acceptTime;
 
    @ApiModelProperty("核销码")
    private String verificationCode;
 
}