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.
24 lines
576 B
Java
24 lines
576 B
Java
2 years ago
|
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<PurPlanResponse> queryPageList(PurPlanRequest purPlanRequest);
|
||
|
|
||
|
Boolean insert(PurPlanEntity purPlanRequest);
|
||
|
|
||
|
Boolean update(PurPlanEntity purPlanRequest);
|
||
|
|
||
|
Boolean deleteByIds(@Param("ids") List<Integer> ids);
|
||
|
|
||
|
}
|