style: 完善 ColumnConfig 类注释。

This commit is contained in:
Suomm 2023-08-21 10:05:02 +08:00
parent d2ce08e9e9
commit 4d0efd1005

View File

@ -62,12 +62,15 @@ public class ColumnConfig implements Serializable {
private JdbcType jdbcType;
/**
* 属性的类型
* <p>属性的类型
*
* <p>原始类型直接写类型名称例如int/long/float/double/boolean<br/>
* 对象类型请写对应类的全限定名例如java.lang.String/com.example.enums.Gender
*/
private String propertyType;
/**
* 属性的默认值
* 属性的默认值例如long 类型默认值0L枚举类型默认值Gender.MALE
*/
private String propertyDefaultValue;