package com.glxp.api.dao.purchase; import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.purchase.PurOrderEntity; import com.glxp.api.entity.purchase.PurPlanEntity; import com.glxp.api.req.purchase.PurPlanRequest; import com.glxp.api.res.purchase.PurPlanResponse; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface PurPlanDao extends BaseMapperPlus { List queryPageList(PurPlanRequest purPlanRequest); Boolean deleteByIds(@Param("ids") List ids); }