大屏项目初始化

This commit is contained in:
2026-03-03 23:05:02 +08:00
parent 3df814d718
commit 424527c62f
32 changed files with 1382 additions and 1286 deletions

View File

@@ -0,0 +1,16 @@
package com.mini.mybigscreen.biz.service;
import com.mini.mybigscreen.biz.domain.ResumeEmployee;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 员工表用于存储公司内部员工的基本信息 服务类
* </p>
*
* @author gaoxq
* @since 2026-03-03
*/
public interface ResumeEmployeeService extends IService<ResumeEmployee> {
}