待处理列表

This commit is contained in:
苏竹红
2024-04-01 17:42:16 +08:00
parent e067779745
commit f9e1d01c6d
17 changed files with 432 additions and 25 deletions

View File

@@ -18,6 +18,9 @@ public class InterviewPendingVO extends BaseInfoVO {
@ApiModelProperty("面谈结束时间 10:00")
private String endTime;
@ApiModelProperty("面试官名称")
private String interviewer;
public InterviewPendingVO(){};
public InterviewPendingVO(BaseInfoVO baseInfoVO) {

View File

@@ -0,0 +1,24 @@
package com.cool.store.vo.desk;
import com.cool.store.vo.BaseInfoVO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2024/4/1 16:37
* @Version 1.0
*/
@Data
public class PayStagePendingVO extends BaseInfoVO {
@ApiModelProperty("缴费时间 2024年04月23日 16:00")
private String payTime;
public PayStagePendingVO(){};
public PayStagePendingVO(BaseInfoVO baseInfoVO) {
super(baseInfoVO);
}
}

View File

@@ -0,0 +1,26 @@
package com.cool.store.vo.desk;
import com.cool.store.vo.BaseInfoVO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2024/4/1 16:55
* @Version 1.0
*/
@Data
public class SigningPendingVO extends BaseInfoVO {
@ApiModelProperty("提交时间 2024年04月23日 16:00")
private String submitTime;
public SigningPendingVO(){};
public SigningPendingVO(BaseInfoVO baseInfoVO) {
super(baseInfoVO);
}
}

View File

@@ -0,0 +1,26 @@
package com.cool.store.vo.desk;
import com.cool.store.vo.BaseInfoVO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2024/4/1 17:05
* @Version 1.0
*/
@Data
public class StoreExperiencePendingVO extends BaseInfoVO {
@ApiModelProperty("开始时间 2024年04月23日")
private String experienceStartTime;
@ApiModelProperty("结束时间 23日")
private String experienceEndTime;
public StoreExperiencePendingVO(){};
public StoreExperiencePendingVO(BaseInfoVO baseInfoVO) {
super(baseInfoVO);
}
}