【8.3.0】【scanner】更新包装class解析结果的新pojo

pull/62/head
stylefeng 2024-08-06 22:00:05 +08:00
parent 33cf0457c9
commit af379d9134
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package cn.stylefeng.roses.kernel.rule.pojo.clazz;
import cn.stylefeng.roses.kernel.rule.enums.FieldTypeEnum;
import lombok.Data;
import java.lang.reflect.Type;
/**
* class
*
* @author fengshuonan
* @since 2024/8/6 21:49
*/
@Data
public class ClassParseResult {
/**
*
*/
private FieldTypeEnum fieldTypeEnum;
/**
*
* <p>
* FieldTypeEnum = FieldTypeEnum.ARRAY
* FieldTypeEnum = FieldTypeEnum.COLLECTION
* FieldTypeEnum = FieldTypeEnum.OBJECT_WITH_GENERIC
* FieldTypeEnum = FieldTypeEnum.WITH_UNKNOWN_GENERIC
*/
private Type genericType;
}