src/main/java/com/gk/firework/Domain/Utils/BeanProperty.java
对比新文件 @@ -0,0 +1,22 @@ package com.gk.firework.Domain.Utils; /** * Bean属性 * @author L.cm */ public class BeanProperty { private final String name; private final Class<?> type; public BeanProperty(String name, Class<?> type) { this.name = name; this.type = type; } public String getName() { return name; } public Class<?> getType() { return type; } }