27 lines
640 B
Java
27 lines
640 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.qsoft.erp.dominio.mapper;
|
|
|
|
import com.qsoft.erp.dto.VwPolPerBanDTO;
|
|
import com.qsoft.erp.model.VwPolPerBan;
|
|
import org.mapstruct.Mapper;
|
|
import org.mapstruct.factory.Mappers;
|
|
|
|
/**
|
|
*
|
|
* @author james
|
|
*/
|
|
@Mapper
|
|
public interface VwPolPerBanMapper {
|
|
|
|
VwPolPerBanMapper INSTANCE = Mappers.getMapper(VwPolPerBanMapper.class);
|
|
|
|
VwPolPerBan getEntidad(VwPolPerBanDTO vwPolPerBanDTO);
|
|
|
|
VwPolPerBanDTO getDto(VwPolPerBan vwPolPerBan);
|
|
|
|
}
|