mitao
2025-03-17 a36d329b84d407f5a572ed72534e4b3c6f4b2a0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.panzhihua.sangeshenbian.service;
 
import com.panzhihua.sangeshenbian.model.entity.ComplaintComment;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 诉求评论表 服务类
 * </p>
 *
 * @author mitao
 * @since 2025-03-13
 */
public interface IComplaintCommentService extends IService<ComplaintComment> {
 
}