| | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author xyh |
| | |
| | | |
| | | @ApiModelProperty("经纬度(,隔开)") |
| | | @NotEmpty(message = "经纬度不能为空") |
| | | private String lat_lng; |
| | | private String latLng; |
| | | |
| | | @ApiModelProperty("地址") |
| | | @NotEmpty(message = "地址不能为空") |
| | |
| | | @ApiModelProperty("异常描述") |
| | | private String dellDesc; |
| | | |
| | | @ApiModelProperty("异常选择") |
| | | private String option; |
| | | |
| | | @ApiModelProperty("家庭联系方式") |
| | | @NotEmpty(message = "家庭联系方式不能为空") |
| | | private String familyPhone; |
| | |
| | | |
| | | private Integer eventStatus; |
| | | |
| | | @ApiModelProperty(value = "音频列表") |
| | | List<String> vosList; |
| | | |
| | | @ApiModelProperty(value = "图片列表") |
| | | List<String> imgList; |
| | | |
| | | @ApiModelProperty(value = "视频列表") |
| | | List<String> videoList; |
| | | |
| | | |
| | | |
| | | |
| | | } |