xiaoyong931011
2021-07-05 cf200a1f92c01ba22c326c49391f748ffb006910
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xcong.excoin.modules.otc.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.xcong.excoin.modules.otc.entity.OtcMarketBussinessEntity;
import com.xcong.excoin.modules.otc.entity.OtcOrderAppealEntity;
import org.apache.ibatis.annotations.Param;
 
public interface OtcOrderAppealMapper extends BaseMapper<OtcOrderAppealEntity> {
 
    IPage<OtcOrderAppealEntity> otcAppealList(Page<OtcOrderAppealEntity> page,
                                              @Param("record")OtcOrderAppealEntity otcOrderAppealEntity);
 
}