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

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

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

import xyz.migoo.framework.infra.controller.sys.dept.vo.DeptAddReqVO;
import xyz.migoo.framework.infra.controller.sys.dept.vo.DeptRespVO;
import xyz.migoo.framework.infra.controller.sys.dept.vo.DeptSimpleRespVO;
import xyz.migoo.framework.infra.controller.sys.dept.vo.DeptUpdateReqVO;
import xyz.migoo.framework.infra.dal.dataobject.sys.Dept;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;

import java.util.List;

@Mapper
public interface DeptConvert {

    DeptConvert INSTANCE = Mappers.getMapper(DeptConvert.class);

    Dept convert(DeptAddReqVO updateReq);

    Dept convert(DeptUpdateReqVO updateReq);

    DeptRespVO convert(Dept list);

    List convert(List list);

    List convert0(List list);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy