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.
30 lines
917 B
30 lines
917 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.PurQuotationHeaderData;
|
|
import com.xujie.modules.supplier.entity.PurQuotationHeader;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author yjy
|
|
* @since 2025-09-10
|
|
*/
|
|
@Mapper
|
|
public interface PurQuotationHeaderMapper extends BaseMapper<PurQuotationHeader> {
|
|
|
|
IPage<PurQuotationHeaderData> myPage(Page<Object> objectPage,
|
|
@Param("query") PurQuotationHeaderData data);
|
|
|
|
List<PurQuotationHeaderData> getListByModel(PurQuotationHeaderData data);
|
|
|
|
String getMaxOrderNo(String strTime);
|
|
}
|