liujie
21 小时以前 74f8b8074a2fb391b5363b4dca5f99bf31993430
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
package com.stylefeng.guns.modular.system.dao;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.modular.system.model.TOrderCheck;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 订单 Mapper 接口
 * </p>
 *
 * @author mitao
 * @since 2025-07-28
 */
public interface TOrderCheckMapper extends BaseMapper<TOrderCheck> {
 
    List<TOrderCheck> getOrderCheckList(Page<TOrderCheck> page, @Param("startTime") String startTime,
                                        @Param("endTime") String endTime, @Param("code") String code,
                                        @Param("source") Integer source, @Param("userName") String userName,
                                        @Param("userPhone") String userPhone, @Param("state") Integer state,
                                        @Param("driverName") String driverName, @Param("admin") Boolean admin,
                                        @Param("objectId") Integer objectId);
}