1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.matrix.system.app.mapper;
|
| import org.mapstruct.Mapper;
| import org.mapstruct.factory.Mappers;
|
| /**
| * @author wzy
| * @date 2020-12-28
| **/
| @Mapper
| public abstract class MoneyCardUseMapper {
| public static final MoneyCardUseMapper INSTANCE = Mappers.getMapper(MoneyCardUseMapper.class);
|
| // public abstract
| }
|
|