File was renamed from springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/EmergenciesEventReportDTO.java |
| | |
| | | * */ |
| | | @Data |
| | | @ApiModel("上报社区请求参数") |
| | | public class EmergenciesEventReportDTO { |
| | | public class CommonEventReportDTO { |
| | | |
| | | @Max(9223372036854775807L) |
| | | @ApiModelProperty(value = "事件ID", hidden = false, example = "1",required = true) |
| | | @NotNull |
| | | @NotNull(message = "事件ID不能为空") |
| | | private Long eventId; |
| | | |
| | | @Length(max=255) |
| | | @ApiModelProperty(value = "办理意见", hidden = false, example = "",required = true) |
| | | @NotNull |
| | | @NotNull(message = "办理意见不能为空") |
| | | private String processResult; |
| | | |
| | | //事件下游机构或网格员 |
| | | @Max(9223372036854775807L) |
| | | @ApiModelProperty(value = "社区ID", hidden = false, example = "1",required = true) |
| | | @NotNull |
| | | @NotNull(message = "社区ID不能为空") |
| | | private Long toId; |
| | | |
| | | @ApiModelProperty(value = "(当前操作)用户ID", hidden = true, example = "1") |