package com.caimei.modules.shiro.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface HomePageDao { Long findTotalFee(@Param("endTime") String endTime, @Param("startTime") String startTime); Long findBalance(@Param("endTime") String endTime, @Param("startTime") String startTime); Long findAssociate(@Param("endTime") String endTime, @Param("startTime") String startTime); Integer orderQuantity(@Param("endTime") String endTime, @Param("startTime") String startTime, @Param("receiptStatus") String receiptStatus); }