feat:[REQ-3282] 创建基础的对象
This commit is contained in:
parent
2c72c471ac
commit
0ab26252ce
@ -0,0 +1,10 @@
|
||||
package cn.axzo.orgmanax.infra.dao.nodeuser.convert;
|
||||
|
||||
import cn.axzo.orgmanax.infra.dao.node.convert.NodeInfraConvert;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
|
||||
public interface OrgNodeUserInfraConvert {
|
||||
|
||||
OrgNodeUserInfraConvert INSTANCE = Mappers.getMapper(OrgNodeUserInfraConvert.class);
|
||||
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
package cn.axzo.orgmanax.infra.dao.orguser.convert;
|
||||
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
|
||||
@Mapper
|
||||
public interface OrgUserInfraConvert {
|
||||
|
||||
OrgUserInfraConvert INSTANCE = Mappers.getMapper(OrgUserInfraConvert.class);
|
||||
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
package cn.axzo.orgmanax.infra.dao.unit.convert;
|
||||
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
|
||||
@Mapper
|
||||
public interface OrganizationalUnitInfraConvert {
|
||||
|
||||
OrganizationalUnitInfraConvert INSTANCE = Mappers.getMapper(OrganizationalUnitInfraConvert.class);
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user