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.
22 lines
631 B
Java
22 lines
631 B
Java
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<PurPlanDao, PurPlanEntity, PurPlanEntity> {
|
|
|
|
List<PurPlanResponse> queryPageList(PurPlanRequest purPlanRequest);
|
|
|
|
Boolean deleteByIds(@Param("ids") List<Integer> ids);
|
|
|
|
}
|