EmployeeConfigInfoService.java
529 Bytes
package com.bsth.service.schedule;
import com.bsth.entity.schedule.EmployeeConfigInfo;
import com.bsth.service.schedule.exception.ScheduleException;
/**
* Created by xu on 16/5/10.
*/
public interface EmployeeConfigInfoService extends BService<EmployeeConfigInfo, Long> {
void validate_jsy(EmployeeConfigInfo employeeConfigInfo) throws ScheduleException;
void validate_spy(EmployeeConfigInfo employeeConfigInfo) throws ScheduleException;
public void toggleCancel(Long id) throws ScheduleException;
}