You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
686 B
Java
28 lines
686 B
Java
2 years ago
|
package com.engine.organization.service.impl;
|
||
|
|
||
|
import com.engine.core.impl.Service;
|
||
|
import com.engine.organization.entity.staff.param.StaffOutParam;
|
||
|
import com.engine.organization.entity.staff.param.TransactionParam;
|
||
|
import com.engine.organization.service.StaffOutService;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2023/9/1 10:27 AM
|
||
|
* @Description: 编制外部调用
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public class StaffOutServiceImpl extends Service implements StaffOutService {
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public Integer changeStaff(StaffOutParam staffOutParam) {
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Integer transactionOnJob(TransactionParam transactionParam) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|