yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.qianwen.smartman.modules.cps.convert;
 
import java.util.List;
import org.mapstruct.Builder;
import org.mapstruct.Mapper;
import org.mapstruct.Mappings;
import org.mapstruct.factory.Mappers;
import com.qianwen.smartman.modules.cps.dto.OrganizationDTO;
import com.qianwen.smartman.modules.cps.excel.OrganizationExcel;
import com.qianwen.smartman.modules.cps.vo.OrganizationVO;
 
@Mapper(builder = @Builder(disableBuilder = true))
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/convert/OrganizationConvert.class */
public interface OrganizationConvert {
    public static final OrganizationConvert INSTANCE = (OrganizationConvert) Mappers.getMapper(OrganizationConvert.class);
 
    @Mappings({})
    OrganizationDTO convert(OrganizationDTO organizationDTO);
 
    @Mappings({})
    List<OrganizationVO> convert(List<OrganizationDTO> organizationDTOList);
 
    @Mappings({})
    List<OrganizationExcel> convertToExcel(List<OrganizationVO> organizationVOList);
}