fujunling
2023-06-26 a4e4026aee8c5e6d12c1065ce71efee81a2b5518
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.springblade.core.tool.beans;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * Bean属性
 *
 * @author Chill
 */
@Getter
@AllArgsConstructor
public class BeanProperty {
    private final String name;
    private final Class<?> type;
}