TTInfoService.java 442 Bytes
package com.bsth.service.schedule;

import com.bsth.entity.schedule.TTInfo;

/**
 * Created by xu on 16/5/12.
 */
public interface TTInfoService extends BService<TTInfo, Long> {
    void validate_name(TTInfo ttInfo) throws ScheduleException;
    void validate_n_d(TTInfo ttInfo) throws ScheduleException;
    void validate_s_d(TTInfo ttInfo) throws ScheduleException;
    void toggleCancel(Long id) throws ScheduleException;

}