mirror of
https://gitee.com/freshday/radar.git
synced 2026-03-22 12:47:16 +08:00
11 lines
279 B
Java
11 lines
279 B
Java
package com.pgmmers.radar.mapstruct;
|
|
|
|
import com.pgmmers.radar.model.DataListsPO;
|
|
import com.pgmmers.radar.vo.model.DataListsVO;
|
|
import org.mapstruct.Mapper;
|
|
|
|
@Mapper(componentModel = "spring")
|
|
public interface DataListsMapping extends BaseMapping<DataListsPO, DataListsVO> {
|
|
|
|
}
|