You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
|
|
package ${package}.service.mapstruct;
|
|
|
|
import com.yxkadmin.base.BaseMapper;
|
|
import ${package}.domain.${className};
|
|
import ${package}.service.dto.${className}Dto;
|
|
import org.mapstruct.Mapper;
|
|
import org.mapstruct.ReportingPolicy;
|
|
|
|
/**
|
|
* @website https://yxk-admin.vip
|
|
* @author ${author}
|
|
* @date ${date}
|
|
**/
|
|
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
|
public interface ${className}Mapper extends BaseMapper<${className}Dto, ${className}> {
|
|
|
|
}
|