|
@@ -63,11 +63,12 @@ public class DpPositionForApplyAPI extends DataEntity<DpPositionForApplyAPI> {
|
|
|
private HpCompany hpCompany;
|
|
private HpCompany hpCompany;
|
|
|
private String regularBus;
|
|
private String regularBus;
|
|
|
private String specialWelfare;
|
|
private String specialWelfare;
|
|
|
- private String workDay;
|
|
|
|
|
|
|
+ private String workDay; //存放workDate
|
|
|
private Date publishTime; // 发布时间(岗位招聘开始时间),岗位招聘对外显示条件为发布时间到截至时间,且岗位未暂停招聘
|
|
private Date publishTime; // 发布时间(岗位招聘开始时间),岗位招聘对外显示条件为发布时间到截至时间,且岗位未暂停招聘
|
|
|
private Date authenticationTime; //认证时间
|
|
private Date authenticationTime; //认证时间
|
|
|
private String authenticationBy; //认证操作者
|
|
private String authenticationBy; //认证操作者
|
|
|
private HpMember hpMember; //会员表用户
|
|
private HpMember hpMember; //会员表用户
|
|
|
|
|
+ private String workTime; //存放startWorkTime与endWordTime拼接的时间
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
public Date getAuthenticationTime() {
|
|
public Date getAuthenticationTime() {
|
|
@@ -479,4 +480,12 @@ public class DpPositionForApplyAPI extends DataEntity<DpPositionForApplyAPI> {
|
|
|
public void setHpMember(HpMember hpMember) {
|
|
public void setHpMember(HpMember hpMember) {
|
|
|
this.hpMember = hpMember;
|
|
this.hpMember = hpMember;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public String getWorkTime() {
|
|
|
|
|
+ return workTime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWorkTime(String workTime) {
|
|
|
|
|
+ this.workTime = workTime;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|