1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.matrix.system.dataMove;
|
| import com.matrix.system.common.bean.SysUsers;
| import org.mapstruct.Mapper;
| import org.mapstruct.factory.Mappers;
|
| /**
| * @author wzy
| * @date 2021-03-18
| **/
| @Mapper
| public abstract class BeanMapMapper {
| public static BeanMapMapper INSTANCE = Mappers.getMapper(BeanMapMapper.class);
|
| }
|
|