fix
Helius
2021-10-09 594686940cf44b6b1f60702352bbb3bb5ea29414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.xzx.gc.system.mapper;
 
import com.xzx.gc.entity.OrderInfo;
import com.xzx.gc.model.admin.OrderModel;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Repository
public interface OrderMapper extends GcMapper<OrderInfo> {
 
    int findStatusNumByPartnerId(@Param("status") List<String> status, @Param("partnerId") String partnerId);
 
    List<OrderModel> queryOrderByCityId(@Param("cityId") String cityId, @Param("townIds") List<String> townIds);
 
    List<OrderModel> queryOrderByTownIdApiList(OrderModel orderModel);
 
    List<OrderModel> queryOrderApiList(OrderModel orderModel);
 
    List<Map<String, Object>> getSysStorageTypeName(@Param("orderIds") List<String> orderIds, @Param("startTime") String startTime, @Param("endTime") String endTime, @Param("typeName") String typeName);
 
    List<OrderInfo> findPartnerId();
 
    List<OrderInfo> findPartnerIdByTime();
}