|
@@ -7,6 +7,7 @@ import javax.validation.constraints.NotBlank;
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.util.List;
|
|
|
|
|
|
@Schema(description = "招聘者 - 招聘职位新增/修改 Request VO")
|
|
@@ -58,6 +59,12 @@ public class AppAdminJobReqVO {
|
|
|
@Schema(description = "职位要求")
|
|
|
private String requirement;
|
|
|
|
|
|
+ @Schema(description = "过期时间")
|
|
|
+ private LocalDateTime expireTime;
|
|
|
+
|
|
|
+ @Schema(description = "是否置顶")
|
|
|
+ private Boolean top;
|
|
|
+
|
|
|
@Schema(description = "工作地址")
|
|
|
private String address;
|
|
|
|