吉安感知网项目-后端
linwei
2026-06-23 59adc3dbb396facc71b1fcc03eec24d059726f68
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;
}