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.
weaver-hrm-organization/src/com/engine/organization/service/impl/StaffOutServiceImpl.java

28 lines
686 B
Java

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;
}
}