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.
|
|
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;
@Mapperpublic 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);}
|