代码生成初始化字段属性增加布尔类型
This commit is contained in:
parent
eb11337f7d
commit
0f9c32bdc6
@ -106,6 +106,9 @@ public class GenConstants
|
||||
/** 时间类型 */
|
||||
public static final String TYPE_DATE = "Date";
|
||||
|
||||
/** 布尔类型 */
|
||||
public static final String TYPE_BOOLEAN = "Boolean";
|
||||
|
||||
/** 模糊查询 */
|
||||
public static final String QUERY_LIKE = "LIKE";
|
||||
|
||||
|
@ -65,6 +65,11 @@ public class GenUtils
|
||||
{
|
||||
column.setJavaType(GenConstants.TYPE_BIGDECIMAL);
|
||||
}
|
||||
// 如果是布尔形
|
||||
else if (str != null && StringUtils.equals("tinyint", dataType) && str.length == 1 && Integer.parseInt(str[0]) == 1)
|
||||
{
|
||||
column.setJavaType(GenConstants.TYPE_BOOLEAN);
|
||||
}
|
||||
// 如果是整形
|
||||
else if (str != null && str.length == 1 && Integer.parseInt(str[0]) <= 10)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user