All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.migoo.framework.infra.convert.sys.MenuConvert Maven / Gradle / Ivy

The newest version!
package xyz.migoo.framework.infra.convert.sys;

import xyz.migoo.framework.infra.controller.sys.permission.menu.vo.MenuAddReqVO;
import xyz.migoo.framework.infra.controller.sys.permission.menu.vo.MenuRespVO;
import xyz.migoo.framework.infra.controller.sys.permission.menu.vo.MenuSimpleRespVO;
import xyz.migoo.framework.infra.controller.sys.permission.menu.vo.MenuUpdateReqVO;
import xyz.migoo.framework.infra.dal.dataobject.sys.Menu;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;

import java.util.List;

@Mapper
public interface MenuConvert {
    MenuConvert INSTANCE = Mappers.getMapper(MenuConvert.class);

    List convert(List list);

    List convert0(List list);

    MenuRespVO convert(Menu menu);

    Menu convert(MenuAddReqVO addReq);

    Menu convert(MenuUpdateReqVO updateReq);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy