GuideboardInfoService.java
538 Bytes
package com.bsth.service.schedule;
import com.bsth.entity.schedule.GuideboardInfo;
import com.bsth.service.schedule.exception.ScheduleException;
/**
* Created by xu on 16/5/11.
*/
public interface GuideboardInfoService extends BService<GuideboardInfo, Long> {
void validate_lpno(GuideboardInfo guideboardInfo) throws ScheduleException;
void validate_lpname(GuideboardInfo guideboardInfo) throws ScheduleException;
void toggleCancel(Long id) throws ScheduleException;
Long getMaxLpno(Integer xlid);
}