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.
udi-wms-java/src/main/java/com/glxp/api/dao/collect/IoCollectOrderBizMapper.java

19 lines
647 B
Java

package com.glxp.api.dao.collect;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.collect.IoCollectOrderBiz;
import com.glxp.api.req.collect.CollectOrderBizRequest;
import com.glxp.api.res.collect.CollectOrderBizResponse;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface IoCollectOrderBizMapper extends BaseMapper<IoCollectOrderBiz> {
List<CollectOrderBizResponse> filterList(CollectOrderBizRequest collectOrderRequest);
void updateAutoResCount(@Param("id") Long id,@Param("autoResCount") int autoResCount);
}