郑永安
2023-06-19 2fcd97552d16718cc7997629fd637a73a5a4483f
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;
   }
}