BoardTalkingServiceImpl.java 548 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.service.impl;
liqin's avatar
liqin committed
2

liqin's avatar
liqin committed
3 4 5
import cn.chnmuseum.party.model.BoardTalking;
import cn.chnmuseum.party.mapper.BoardTalkingMapper;
import cn.chnmuseum.party.service.BoardTalkingService;
liqin's avatar
liqin committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * <p>
 * 展板互动 服务实现类
 * </p>
 *
 * @author Danny Lee
 * @since 2021-03-16
 */
@Service
public class BoardTalkingServiceImpl extends ServiceImpl<BoardTalkingMapper, BoardTalking> implements BoardTalkingService {

}