1.添加确认时保存app用户录用消息

2.添加岗位发布时给收藏此企业用户移动用户新岗位消息
This commit is contained in:
sh
2025-11-06 17:30:33 +08:00
parent 1b7d5c5451
commit f4370ac912
15 changed files with 182 additions and 26 deletions

View File

@@ -3,6 +3,7 @@ package com.ruoyi.cms.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import com.ruoyi.common.core.domain.entity.AppUser;
import com.ruoyi.common.core.domain.entity.Company;
import com.ruoyi.cms.domain.CompanyCollection;
@@ -22,4 +23,6 @@ public interface CompanyCollectionMapper extends BaseMapper<CompanyCollection>
public List<CompanyCollection> selectCompanyCollectionList(CompanyCollection companyCollection);
List<Company> collectionJob(Long userId);
List<AppUser> selectAppuserList(Long companyId);
}

View File

@@ -27,4 +27,6 @@ public interface CompanyMapper extends BaseMapper<Company>
List<Company> label(@Param("companyNature") String companyNature, @Param("targ")String targ,@Param("companyName")String companyName);
List<Company> selectLikeCompanyList(Company company);
Company selectCompanyByJobId(Long jobId);
}

View File

@@ -51,4 +51,11 @@ public interface JobMapper extends BaseMapper<Job>
VectorJob selectVectorJob(Long jobId);
List<AppUser> selectApplyJobUserList(Long jobId);
/**
*查询单条岗位信息
* @param jobId
* @return
*/
Job getJobInfo(Long jobId);
}

View File

@@ -13,4 +13,6 @@ public interface NoticeMapper extends BaseMapper<Notice>
List<Notice> getNoticlist(Notice notice);
NoticeTotal noticTotal(Notice notice);
int batchInsert(List<Notice> list);
}