Helius
2021-07-14 8910767f8855e1c5ae7f6058d0ef41e98a1650f4
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);
 
}