com.zhaofujun.automapper.converter.Converter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automapper Show documentation
Show all versions of automapper Show documentation
easy to mapping jave entity
package com.zhaofujun.automapper.converter;
public abstract class Converter {
public abstract Class getSourceClass();
public abstract Class getTargetClass();
public abstract T toTarget(U source);
public abstract U toSource(T target);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy