修改注册接口-1.保存企业联系2.保存工作经历和用户技能

This commit is contained in:
sh
2025-10-21 13:01:34 +08:00
parent e56a8a285d
commit 44ec48c49d
25 changed files with 341 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
package com.ruoyi.cms.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.common.core.domain.entity.AppSkill;
import java.util.List;
/**
* 用户技能信息
*
* @author
* @email
* @date 2025-10-21 12:22:09
*/
public interface AppSkillMapper extends BaseMapper<AppSkill> {
List<AppSkill> getList(AppSkill appSkill);
int batchInsert(List<AppSkill> list);
}