吉安感知网项目-后端
linwei
9 days ago 8edf0004e4bd8b758b0fc5940a8a83f0f7948f74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.sxkj.gd.workorder.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
public class GdClueEventRejectParam {
 
    /**
     * 事件ID
     */
    @ApiModelProperty(value = "事件ID", required = true)
    @NotNull(message = "事件ID不能为空")
    private Long eventId;
 
    /**
     * 事件状态
     */
    @ApiModelProperty(value = "事件状态:0驳回 1确认", required = true)
    @NotNull(message = "事件状态不能为空")
    private Integer eventStatus;
}