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; }