huanghongfa
2021-06-21 a429d8ffa31825c7cca7e005bc9ce8f85c15f1f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.panzhihua.common.model.vos.community.screen.event;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel("大屏事件播报流转记录返回参数")
public class EventTransferRecordVO {
 
    @ApiModelProperty("事件处理时间")
    private Date processDate;
 
    @ApiModelProperty("事件处理结果")
    private Date processResult;
}