| | |
| | | import java.util.Map;
|
| | | import java.util.concurrent.locks.ReentrantReadWriteLock;
|
| | |
|
| | | import com.yeshi.fanli.dto.ChartTDO;
|
| | | import com.yeshi.fanli.entity.bus.user.LostOrder;
|
| | |
|
| | | public interface LostOrderService {
|
| | |
|
| | | static final ReentrantReadWriteLock lostOrderLock = new ReentrantReadWriteLock(true);
|
| | | |
| | | |
| | | void saveLostOrder(LostOrder lostOrder);
|
| | |
|
| | | int addLostOrder(LostOrder lostOrder);
|
| | |
|
| | |
| | | * @param handleType
|
| | | * @return
|
| | | */
|
| | | public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType);
|
| | | public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType, Integer type);
|
| | |
|
| | | public long countQuery(String key, Integer state, Integer handleType);
|
| | | public long countQuery(String key, Integer state, Integer handleType, Integer type);
|
| | |
|
| | | /**
|
| | | * 本月申诉订单数 统计
|
| | |
| | | * @return
|
| | | * @throws Exception
|
| | | */
|
| | | public List<Map<String, Object>> countLostNum(Integer dateType, Integer resultCode, String year, String startTime,
|
| | | public List<ChartTDO> countLostNum(Integer dateType, Integer resultCode, String year, String startTime,
|
| | | String endTime) throws Exception;
|
| | |
|
| | | public List<Map<String, Object>> countAppealMoney(Integer dateType, String year, String startTime, String endTime)
|
| | | public List<ChartTDO> countAppealMoney(Integer dateType, String year, String startTime, String endTime)
|
| | | throws Exception;
|
| | |
|
| | | /**
|