TInteractionServiceImpl.java 1.09 KB
Newer Older
wzp's avatar
wzp committed
1 2 3 4 5
package cn.wisenergy.chnmuseum.party.service.impl;

import cn.wisenergy.chnmuseum.party.model.TInteraction;
import cn.wisenergy.chnmuseum.party.mapper.TInteractionMapper;
import cn.wisenergy.chnmuseum.party.service.TInteractionService;
wzp's avatar
wzp committed
6
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
wzp's avatar
wzp committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;

import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.beans.factory.annotation.Autowired;

import javax.annotation.Resource;

/**
 * <pre>
 * 看板互动 服务实现类
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-23
 */
@Slf4j
@Service
public class TInteractionServiceImpl extends ServiceImpl<TInteractionMapper, TInteraction> implements TInteractionService {

    @Resource
    private TInteractionMapper tInteractionMapper;

wzp's avatar
wzp committed
31 32 33 34
    @Override
    public Page<TInteraction> selectPageList(Page<TInteraction> page, String orgId) {
        return page.setRecords(tInteractionMapper.selectPageList(page,orgId));
    }
wzp's avatar
wzp committed
35
}