| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.other.entity.SiteBooking; |
| | | import com.dsh.other.mapper.SiteBookingMapper; |
| | | import com.dsh.other.model.BillingRequestOfType; |
| | | import com.dsh.other.service.ISiteBookingService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | */ |
| | | @Service |
| | | public class SiteBookingServiceImpl extends ServiceImpl<SiteBookingMapper, SiteBooking> implements ISiteBookingService { |
| | | @Override |
| | | public List<BillingRequestOfType> queryDatas(Integer appUserId, String monthStart, String monthEnd) { |
| | | return this.baseMapper.queryDatas(appUserId,monthStart,monthEnd); |
| | | } |
| | | } |