generated from dxfeng/secondev-chapanda-feishu
21 lines
419 B
Java
21 lines
419 B
Java
package com.engine.recruit.service;
|
|
|
|
import com.engine.recruit.entity.workplan.WorkPlanCreateParams;
|
|
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2023/10/17 10:50 AM
|
|
* @Description: TODO
|
|
* @Version 1.0
|
|
*/
|
|
public interface WorkPlanSerivice {
|
|
|
|
/**
|
|
* @Description: 面试操作日程
|
|
* @Author: liang.cheng
|
|
* @Date: 2023/10/17 11:03 AM
|
|
*/
|
|
void operate(WorkPlanCreateParams workPlanCreateParams);
|
|
}
|