com.quhaodian.data.rest.core.Conver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-hibernate-common Show documentation
Show all versions of discover-hibernate-common Show documentation
discover-hibernate_common is a lib for hibernate
The newest version!
package com.quhaodian.data.rest.core;
/**
* 数据转换接口
*
* @param 结果类
* @param 需要转换的类
* @author ada
*/
public interface Conver {
R conver(S source);
}