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.
27 lines
779 B
Java
27 lines
779 B
Java
package com.glxp.api.dao.purchase;
|
|
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
import com.glxp.api.dao.inout.ReceiveDao;
|
|
import com.glxp.api.entity.inout.PurReceiveEntity;
|
|
import com.glxp.api.entity.purchase.PurApplyEntity;
|
|
import com.glxp.api.req.purchase.PurApplyRequest;
|
|
import com.glxp.api.res.purchase.PurApplyResponse;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface PurApplyDao extends BaseMapperPlus<PurApplyDao, PurApplyEntity, PurApplyEntity> {
|
|
|
|
List<PurApplyResponse> queryPageList(PurApplyRequest purApplyRequest);
|
|
|
|
Boolean update(PurApplyEntity purApplyRequest);
|
|
|
|
Boolean deleteByIds(@Param("ids") List<Long> ids);
|
|
|
|
Boolean deleteById(@Param("id") long id);
|
|
|
|
}
|