|  |  | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.*; | 
 |  |  |  | 
 |  |  | import javax.validation.constraints.NotEmpty; | 
 |  |  | import javax.validation.constraints.NotNull; | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  |  | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2037") | 
 |  |  |     private Long id; | 
 |  |  |  | 
 |  |  |     @Schema(description = "检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "100") | 
 |  |  |     @NotNull(message = "检查类型不能为空") | 
 |  |  |     private Integer checkType; | 
 |  |  |  | 
 |  |  |     @Schema(description = "作业类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") | 
 |  |  |     @NotNull(message = "作业类型不能为空") | 
 |  |  | 
 |  |  |     @NotNull(message = "对应租赁编号不能为空") | 
 |  |  |     private Long rentId; | 
 |  |  |  | 
 |  |  |     @Schema(description = "取消安装") | 
 |  |  |     private Integer cancelled; | 
 |  |  | } |