2025-08-25 22:15:03 +08:00
|
|
|
package com.mini.capi.biz.controller;
|
|
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <p>
|
|
|
|
|
* 员工表用于存储公司内部员工的基本信息 前端控制器
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
* @author gaoxq
|
2025-11-09 20:54:10 +08:00
|
|
|
* @since 2025-11-09
|
2025-08-25 22:15:03 +08:00
|
|
|
*/
|
|
|
|
|
@RestController
|
2025-11-09 20:54:10 +08:00
|
|
|
@RequestMapping("/biz/bizResumeEmployee")
|
|
|
|
|
public class BizResumeEmployeeController {
|
2025-08-25 22:15:03 +08:00
|
|
|
|
|
|
|
|
}
|