43 lines
928 B
Plaintext
43 lines
928 B
Plaintext
|
|
package com.bonus.seat.service;
|
||
|
|
|
||
|
|
import com.bonus.score.beans.ScoreBean;
|
||
|
|
import com.bonus.seat.beans.SeatBean;
|
||
|
|
import com.bonus.sys.AjaxRes;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
import java.util.List;
|
||
|
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
|
||
|
|
|
||
|
|
public interface SeatService extends BaseService<SeatBean> {
|
||
|
|
|
||
|
|
List<SeatBean> findRoomInfo();
|
||
|
|
|
||
|
|
Integer insertInfo(SeatBean o);
|
||
|
|
|
||
|
|
List<SeatBean> checkSeat(SeatBean o);
|
||
|
|
|
||
|
|
SeatBean findSeatByIp(String ipAddress);
|
||
|
|
|
||
|
|
SeatBean findPersonBySeat(SeatBean seat);
|
||
|
|
|
||
|
|
void insertNowIdcard(SeatBean pSeat);
|
||
|
|
|
||
|
|
void updateIsActive(ScoreBean o);
|
||
|
|
|
||
|
|
AjaxRes addRegistration(SeatBean o);
|
||
|
|
|
||
|
|
AjaxRes deleteApply(SeatBean o);
|
||
|
|
|
||
|
|
AjaxRes export(MultipartFile file);
|
||
|
|
|
||
|
|
SeatBean findById(SeatBean o);
|
||
|
|
|
||
|
|
int updateBykc(SeatBean bean);
|
||
|
|
|
||
|
|
int findCount();
|
||
|
|
|
||
|
|
void insertlogo(SeatBean bean);
|
||
|
|
|
||
|
|
void deletebyTime(String currentDateTime);
|
||
|
|
}
|