You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.glxp.api.dao.inv;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectOrderEntity;
|
|
|
|
import com.glxp.api.req.inv.FilterDeviceInspectOrderRequest;
|
|
|
|
import com.glxp.api.res.inv.DeviceInspectOrderResponse;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设备维保单Dao
|
|
|
|
*/
|
|
|
|
public interface DeviceInspectOrderDao extends BaseMapper<DeviceInspectOrderEntity> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询设备维保单列表
|
|
|
|
*
|
|
|
|
* @param deviceInspectOrderRequest
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
List<DeviceInspectOrderResponse> filterList(FilterDeviceInspectOrderRequest deviceInspectOrderRequest);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据单号查询维保单信息
|
|
|
|
*
|
|
|
|
* @param orderId
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
DeviceInspectOrderEntity selectByOrderId(@Param("orderId") String orderId);
|
|
|
|
}
|