yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.qianwen.smartman.modules.andon.convert;
 
import org.mapstruct.Mapper;
import org.mapstruct.Mappings;
import org.mapstruct.factory.Mappers;
import com.qianwen.smartman.modules.andon.entity.AndonType;
import com.qianwen.smartman.modules.andon.vo.AndonTypeDetailVO;
import com.qianwen.smartman.modules.andon.vo.AndonTypeVO;
 
@Mapper
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/convert/AndonTypeConvert.class */
public interface AndonTypeConvert {
    public static final AndonTypeConvert INSTANCE = (AndonTypeConvert) Mappers.getMapper(AndonTypeConvert.class);
 
    @Mappings({})
    AndonTypeVO convert(AndonType type);
 
    @Mappings({})
    AndonTypeDetailVO convertDetail(AndonType type);
}