package com.fjhx.jxst.mapper.sales; import com.fjhx.jxst.entity.sales.po.SalesContract; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fjhx.jxst.entity.sales.vo.SalesContractVo; import com.ruoyi.common.utils.wrapper.IWrapper; import org.apache.ibatis.annotations.Param; /** *

* 销售合同 Mapper 接口 *

* * @author * @since 2023-05-16 */ public interface SalesContractMapper extends BaseMapper { /** * 销售合同分页 */ Page getPage(@Param("page") Page page, @Param("ew") IWrapper wrapper); }