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);
|
}
|