TInteractionService.java 479 Bytes
Newer Older
wzp's avatar
wzp committed
1 2 3
package cn.wisenergy.chnmuseum.party.service;

import cn.wisenergy.chnmuseum.party.model.TInteraction;
wzp's avatar
wzp committed
4
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
wzp's avatar
wzp committed
5 6 7 8 9 10 11 12 13 14 15 16
import com.baomidou.mybatisplus.extension.service.IService;

/**
 * <p>
 * 看板互动 服务接口
 * </p>
 *
 * @author Danny Lee
 * @since 2021-03-23
 */
public interface TInteractionService extends IService<TInteraction> {

wzp's avatar
wzp committed
17
    Page<TInteraction> selectPageList(Page<TInteraction> page, String orgId);
wzp's avatar
wzp committed
18
}