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.
 
 
 
 
 
 

16 lines
651 B

package com.spring.modules.quote.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.spring.modules.quote.entity.SalesQuote;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface SalesQuoteMapper extends BaseMapper<SalesQuote> {
IPage<SalesQuote> querySalesQuoteByPage(@Param("page") Page<SalesQuote> page,@Param("quote") SalesQuote quote);
Integer getSalesQuoteNo(SalesQuote quote);
Integer getSalesVersionCode(SalesQuote quote);
}