| | |
| | | import com.dy.common.po.BaseEntity; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | public String protocol; |
| | | |
| | | /** |
| | | * 通讯协议版本号 |
| | | */ |
| | | @Schema(description = "通讯协议版本号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotBlank(message = "通讯协议版本号") |
| | | public Integer protocolVersion; |
| | | |
| | | /** |
| | | * 发现时间 |
| | | */ |
| | | @Schema(description = "发现时间", requiredMode = Schema.RequiredMode.REQUIRED) |