1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.nova.sankuai.domain.dto.rongbei;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "contract_list单个对象参数")
| public class ContactListDto {
| @ApiModelProperty(value = "姓名", required = true, example = "如:张三", notes = "string(32)")
| private String name;
|
| @ApiModelProperty(value = "手机号", required = true, example = "如:186203202200", notes = "string(11)")
| private String phone;
|
| @ApiModelProperty(value = "关系", required = true)
| private Integer relation;
| }
|
|