| | |
| | | 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; |
| | |
| | | @ApiModel(value = "AddJhyOrderDto", description = "小程序下单参数接收类") |
| | | public class AddJhyOrderDto { |
| | | |
| | | @ApiModelProperty(value = "地址类型") |
| | | private String addressType; |
| | | |
| | | @ApiModelProperty(value = "地址ID") |
| | | private Long addressId; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @ApiModelProperty(value = "预约日期") |
| | | private Date reserveDate; |
| | | |