| | |
| | | import com.ks.lijin.query.ExpendRecordQuery; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface LiJinExpendRecordMapper extends BaseMapper<LiJinExpendRecord> { |
| | |
| | | List<LiJinExpendRecord> listByPage(@Param("query") ExpendRecordQuery query); |
| | | |
| | | long count(@Param("query")ExpendRecordQuery query); |
| | | |
| | | |
| | | /** |
| | | * 统计今日已使用次数 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | int countTodayNumByExpend(@Param("uid")String uid); |
| | | |
| | | |
| | | /** |
| | | * 统计今日已使用金额 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | BigDecimal countTodayMoneyByExpend(@Param("uid")String uid); |
| | | |
| | | |
| | | } |