apzl_leasing/src_app_fresh/cn/config/mapping/URIMappingValue.java
liujiaji 6397d906b5 src_app 移除
src_app_fresh 添加
2018-06-11 13:40:56 +08:00

49 lines
703 B
Java

package cn.config.mapping;
import java.io.Serializable;
import java.lang.reflect.Method;
/**
*
* @author yangsong
* @date 2015/12/14
*/
public class URIMappingValue implements Serializable{
private static final long serialVersionUID = -7799619672310186709L;
private Class<?> clazz;
private Method method;
public URIMappingValue() {
}
public URIMappingValue(Class<?> clazz, Method method) {
this.clazz = clazz;
this.method = method;
}
public Class<?> getClazz() {
return clazz;
}
public void setClazz(Class<?> clazz) {
this.clazz = clazz;
}
public Method getMethod() {
return method;
}
public void setMethod(Method method) {
this.method = method;
}
}