Helius
2021-06-28 3c1b5a586e8ecabf903a549500f2a48bfd3fad95
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
package com.xzx.gc.order.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "AddJhyOrderDto", description = "小程序下单参数接收类")
public class AddJhyOrderDto {
 
    @ApiModelProperty(value = "地址类型")
    private String addressType;
 
    @ApiModelProperty(value = "地址ID")
    private Long addressId;
 
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @ApiModelProperty(value = "预约日期")
    private Date reserveDate;
 
    @ApiModelProperty(value = "时间")
    private String reserveTime;
 
    @ApiModelProperty(value = "重量")
    private String weight;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "类型Ids")
    private String typeIds;
 
    @ApiModelProperty(hidden = true)
    private String userId;
}