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.
29 lines
792 B
Java
29 lines
792 B
Java
2 years ago
|
package com.glxp.api.dao.purchase;
|
||
|
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.purchase.PurApplyDetailEntity;
|
||
|
import com.glxp.api.req.purchase.PurApplyDetailRequest;
|
||
|
import com.glxp.api.res.purchase.PurOrderDetailResponse;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Mapper
|
||
|
public interface PurApplyDetailDao {
|
||
|
|
||
|
List<PurApplyDetailEntity> queryPageList(PurApplyDetailRequest purApplyRequest);
|
||
|
|
||
|
List<PurOrderDetailResponse> joinQueryList(PurApplyDetailRequest purApplyRequest);
|
||
|
|
||
|
Boolean insert(PurApplyDetailEntity purApplyDetailEntity);
|
||
|
|
||
|
Boolean update(PurApplyDetailEntity purApplyRequest);
|
||
|
|
||
|
Boolean deleteByIds(@Param("ids") List<Long> ids);
|
||
|
|
||
|
Boolean deleteByOrderId(@Param("orderIdFk") String orderIdFk);
|
||
|
|
||
|
}
|