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

2 years ago
  1. package com.spring.modules.quote.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.core.metadata.IPage;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.spring.modules.quote.entity.SalesQuote;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Param;
  8. @Mapper
  9. public interface SalesQuoteMapper extends BaseMapper<SalesQuote> {
  10. IPage<SalesQuote> querySalesQuoteByPage(@Param("page") Page<SalesQuote> page,@Param("quote") SalesQuote quote);
  11. Integer getSalesQuoteNo(SalesQuote quote);
  12. Integer getSalesVersionCode(SalesQuote quote);
  13. }