feat:增加表单级别默认布局

This commit is contained in:
wangyu 2021-10-08 11:31:10 +08:00
parent fa30ebb8c2
commit 726a59627f
3 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,9 @@ public class BeanInfo {
// bean的类型
private String type;
// 默认layout
private String layout;
// 分组们
private List<BeanPropertyGroup> groups;

View File

@ -29,7 +29,6 @@ import java.beans.PropertyDescriptor;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.sql.Ref;
import java.util.*;
import java.util.stream.Collectors;

View File

@ -18,6 +18,8 @@ public interface BeanProps {
String LAYOUT_TABLE = "table";
String LAYOUT_SINGLE = "single";
String COMPONENT = "component";
String HELP = "help";