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.DeviceReceiveOrderEntity;
|
|
|
|
import com.glxp.api.req.inv.FilterDeviceReceiveOrderRequest;
|
|
|
|
import com.glxp.api.res.inv.DeviceReceiveOrderResponse;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface DeviceReceiveOrderDao extends BaseMapper<DeviceReceiveOrderEntity> {
|
|
|
|
/**
|
|
|
|
* 查询设备领用记录VO集合
|
|
|
|
*
|
|
|
|
* @param deviceReceiveOrderRequest
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
List<DeviceReceiveOrderResponse> filterList(FilterDeviceReceiveOrderRequest deviceReceiveOrderRequest);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据ID查询领用记录号
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
String selectOrderIdById(@Param("id") Integer id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新设备领用记录状态
|
|
|
|
*
|
|
|
|
* @param status 状态值
|
|
|
|
* @param id
|
|
|
|
*/
|
|
|
|
void updateStatusById(@Param("status") int status, @Param("id") Integer id);
|
|
|
|
}
|