package com.mzl.flower.mapper.film;
|
|
import com.mzl.flower.dto.response.film.CommentDTO;
|
import com.mzl.flower.entity.film.CommentPo;
|
import org.mapstruct.Mapper;
|
import org.mapstruct.factory.Mappers;
|
|
/**
|
* @author fanghaowei
|
* @date
|
*/
|
@Mapper(componentModel = "spring")
|
public interface CommentMS extends CommonMS<CommentPo, CommentDTO> {
|
CommentMS INSTANCE = Mappers.getMapper(CommentMS.class);
|
}
|