| 12345678910111213 |
- package com.ylx.massage.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ylx.common.core.domain.model.WxLoginUser;
- import com.ylx.massage.domain.TComment;
- /**
- * 评论表 服务类
- */
- public interface TCommentService extends IService<TComment> {
- Boolean saveComment(TComment comment, WxLoginUser wxLoginUser);
- }
|