1.添加岗位取消接口

2.添加岗位取消列表
3.修改对应的统计
4.app_user添加orgType机构类型字段
This commit is contained in:
sh
2026-01-26 17:38:07 +08:00
parent db11d5cb2a
commit 6f08d63278
10 changed files with 122 additions and 33 deletions

View File

@@ -1,6 +1,5 @@
package com.ruoyi.common.core.domain.entity;
import java.time.LocalDate;
import java.util.Date;
import java.util.List;
@@ -135,6 +134,9 @@ public class AppUser extends BaseEntity
@ApiModelProperty("工作经验")
private String workExperience;
@ApiModelProperty("机构类型 0用人单位 1培训机构 2评价机构 3人力资源机构")
private String orgType;
@TableField(exist = false)
@ApiModelProperty("公司信息")
private Company company;

View File

@@ -4,8 +4,9 @@ import lombok.Data;
@Data
public class MyChart {
private String ytd;
private String ysc;
private String yzj;
private String yyy;
private String ytd;//投递
private String ysc;//收藏
private String yzj;//足迹
private String yyy;//已预约
private String yqx;//已取消
}

View File

@@ -44,6 +44,11 @@ public class LoginBody
*/
private String idCard;
/**
* 企业类型
*/
public String orgType;
public String getUsername()
{
return username;
@@ -115,4 +120,12 @@ public class LoginBody
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getOrgType() {
return orgType;
}
public void setOrgType(String orgType) {
this.orgType = orgType;
}
}