EmployeeConfigInfoService.java 558 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;
    void toggleCancel(Long id) throws ScheduleException;
    Long getMaxDbbm(Integer xlId);
}