package com.happy.dao; import com.happy.Model.SecondBufferP; import com.happy.Model.User; import java.util.List; public interface SecondBufferPDao { public int insertSecondBufferP(SecondBufferP secondBufferP); // 各景点扫码详情 public List querySecondBufferP(); // 各景点扫码详情 public List querySecondBufferpByPlace(String place); // 各景点人员扫码信息 public List queryByPlace(String sm_place); }