You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
954 B
32 lines
954 B
package com.xujie.modules.supplier.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.xujie.modules.supplier.data.PurQuotationDetailData;
|
|
import com.xujie.modules.supplier.entity.PurQuotationDetail;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 询价单明细表 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author jyy
|
|
* @since 2026-03-31
|
|
*/
|
|
@Mapper
|
|
public interface PurQuotationDetailMapper extends BaseMapper<PurQuotationDetail> {
|
|
|
|
List<PurQuotationDetailData> getListByModel(PurQuotationDetail data);
|
|
|
|
IPage<PurQuotationDetailData> myPage(Page<PurQuotationDetailData> page, @Param("query") PurQuotationDetailData data);
|
|
|
|
int getMaxItemNo(String orderNo);
|
|
|
|
void updatePurDetailStatus(PurQuotationDetailData purDetail);
|
|
|
|
}
|