fix
Helius
2021-07-12 3157990ecae78b357d26019aff2de2a572f0ddd3
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);
 
}