44 lines
863 B
Plaintext
44 lines
863 B
Plaintext
package com.bonus.seat.dao;
|
|
|
|
import com.bonus.core.BonusBatis;
|
|
import com.bonus.score.beans.ScoreBean;
|
|
import com.bonus.seat.beans.SeatBean;
|
|
import com.bonus.sys.AjaxRes;
|
|
import com.bonus.sys.BaseDao;
|
|
|
|
import java.util.List;
|
|
|
|
@BonusBatis
|
|
public interface SeatDao extends BaseDao<SeatBean> {
|
|
|
|
List<SeatBean> finRoomInfo();
|
|
|
|
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);
|
|
|
|
int deleteApply(SeatBean o);
|
|
|
|
SeatBean findById(SeatBean o);
|
|
|
|
int updateBykc(SeatBean bean);
|
|
|
|
int findCount();
|
|
|
|
void insertlogo(SeatBean bean);
|
|
|
|
void deletebyTime(String currentDateTime);
|
|
|
|
|
|
}
|