1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.stylefeng.guns.modular.system.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel
| public class ArrdessDTO {
| @ApiModelProperty(value = "收件人姓名", dataType = "string", required = true)
| private String name;
| @ApiModelProperty(value = "收件人电话", dataType = "string", required = true)
| private String phone;
| @ApiModelProperty(value = "所在省份", dataType = "string", required = true)
| private String province;
| @ApiModelProperty(value = "所在市", dataType = "string", required = true)
| private String city;
| @ApiModelProperty(value = "详细地址", dataType = "string", required = true)
| private String address;
| }
|
|