yujian
2019-12-19 626d711cb15896055c13fe344eb7fcc824589715
fanli/src/main/java/com/yeshi/fanli/service/inter/order/LostOrderService.java
@@ -4,11 +4,15 @@
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);
@@ -87,9 +91,9 @@
    * @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);
   /**
    * 本月申诉订单数 统计
@@ -103,10 +107,10 @@
    * @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;
   /**