| | |
| | | package com.taoke.autopay.service; |
| | | |
| | | import com.taoke.autopay.dao.KeyOrderMapper; |
| | | import com.taoke.autopay.dto.ChannelOrderStatistic; |
| | | import com.taoke.autopay.dto.DYOrderDto; |
| | | import com.taoke.autopay.entity.KeyOrder; |
| | | import com.taoke.autopay.exception.KeyOrderException; |
| | |
| | | |
| | | public long count(KeyOrderMapper.DaoQuery query); |
| | | |
| | | public List<KeyOrder> listWithUser(KeyOrderMapper.DaoQuery query); |
| | | |
| | | public long countWithUser(KeyOrderMapper.DaoQuery query); |
| | | |
| | | public ChannelOrderStatistic statisticWithUser(KeyOrderMapper.DaoQuery query); |
| | | |
| | | public List<ChannelOrderStatistic> statisticChannelOrders(Long agentId,Date startTime,Date endTime); |
| | | |
| | | |
| | | /** |
| | | * @return java.lang.Long |
| | | * @author hxh |
| | |
| | | **/ |
| | | public void removeDistributedClient(String id); |
| | | |
| | | /** |
| | | * 代理ID列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | public List<Long> listAgentId(KeyOrderMapper.DaoQuery query); |
| | | |
| | | |
| | | /** |
| | | * 代理ID数量 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | public long countAgentId(KeyOrderMapper.DaoQuery query); |
| | | |
| | | } |