Air
2024-11-04 29c405353029f033e187e8dc033b93385365ee43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nova.sankuai.domain.dto.zhongzan;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel(value = "照片信息DTO")
@Data
public class Relation {
    @ApiModelProperty(value = "联系人", required = true, notes = "10:同事, 11:朋友, 12:同学, 13:其他, 1:父亲, 2:母亲, 3:配偶, 4:儿子, 5:女儿, 6:哥哥, 7:弟弟, 8:姐姐, 9:妹妹")
    private Integer relation;
 
    @ApiModelProperty(value = "联系人姓名", required = true)
    private String name;
 
    @ApiModelProperty(value = "联系人电话", required = true)
    private String phone;
}