All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.guerlab.spring.commons.dto.ConvertDTO Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package net.guerlab.spring.commons.dto;

import com.fasterxml.jackson.annotation.JsonIgnore;

/**
 * 转换为DTO对象
 *
 * @author guer
 *
 * @param 
 *            DTO对象类型
 */
@FunctionalInterface
public interface ConvertDTO {

    /**
     * 转换
     *
     * @return DTO对象
     */
    @JsonIgnore
    D toDTO();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy