代码生成:优化前端模版的 package 路径
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
package cn.iocoder.yudao.module.system.convert.dept;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.*;
|
||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface PostConvert {
|
||||
|
||||
PostConvert INSTANCE = Mappers.getMapper(PostConvert.class);
|
||||
|
||||
List<PostSimpleRespVO> convertList02(List<PostDO> list);
|
||||
|
||||
PageResult<PostRespVO> convertPage(PageResult<PostDO> page);
|
||||
|
||||
PostRespVO convert(PostDO id);
|
||||
|
||||
PostDO convert(PostCreateReqVO bean);
|
||||
|
||||
PostDO convert(PostUpdateReqVO reqVO);
|
||||
|
||||
List<PostExcelVO> convertList03(List<PostDO> list);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user