package com.glxp.api.dao.purchase; 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 { List queryPageList(PurPlanRequest purPlanRequest); Boolean insert(PurPlanEntity purPlanRequest); Boolean update(PurPlanEntity purPlanRequest); Boolean deleteByIds(@Param("ids") List ids); Boolean deleteById(@Param("id") long id); }