| | |
| | | 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; |
| | | |
| | |
| | | @Schema(description = "发现时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | // @NotNull(message = "发现时间不能为空") |
| | | public Date findDt;//发现时间( yyyy-mm-dd HH:MM:SS) |
| | | /** |
| | | * 机构tag |
| | | */ |
| | | @Schema(description = "机构tag", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotBlank(message = "机构tag不能为空") |
| | | public String orgTag; |
| | | |
| | | } |