10 lines
294 B
Java
10 lines
294 B
Java
package com.mcwl.resource.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.mcwl.resource.domain.ModelImageComment;
|
|
import com.mcwl.resource.domain.ModelImageCommentLike;
|
|
|
|
|
|
public interface ModelImageCommentLikeService extends IService<ModelImageCommentLike> {
|
|
}
|