Commit f4cf6996 by flying-cattle

完善驼峰命名,注释,去掉过时的方法2

parent af9bd87a
...@@ -13,7 +13,6 @@ package com.github.mybatis.fl.convert; ...@@ -13,7 +13,6 @@ package com.github.mybatis.fl.convert;
* <p>说明:表字段类型</p> * <p>说明:表字段类型</p>
* @version: v2.1.0 * @version: v2.1.0
* @author: flying-cattle * @author: flying-cattle
* @date: 2019年4月9日 下午8:15:25
* *
* Modification History: * Modification History:
* Date Author Version Description * Date Author Version Description
......
...@@ -24,7 +24,7 @@ package com.github.mybatis.fl.convert; ...@@ -24,7 +24,7 @@ package com.github.mybatis.fl.convert;
public interface ITypeConvert { public interface ITypeConvert {
/** /**
* <p>说明:执行类型转换</p> * <p>说明:执行类型转换</p>
* @param globalConfig 全局配置 * @param dateType 时间类型
* @param fieldType 字段类型 * @param fieldType 字段类型
* @return ignore * @return ignore
*/ */
......
...@@ -23,7 +23,9 @@ import com.github.mybatis.fl.convert.MySqlTypeConvert; ...@@ -23,7 +23,9 @@ import com.github.mybatis.fl.convert.MySqlTypeConvert;
public class MySqlToJavaUtil { public class MySqlToJavaUtil {
/** /**
* <p>获取java类名</p> * <p>说明:获取java类名</p>
* @param table 表名
* @return String
*/ */
public static String getClassName(String table) { public static String getClassName(String table) {
table=changeToJavaFiled(table); table=changeToJavaFiled(table);
...@@ -35,7 +37,9 @@ public class MySqlToJavaUtil { ...@@ -35,7 +37,9 @@ public class MySqlToJavaUtil {
} }
/** /**
* <p>获取字段名,把"_"后面字母变大写</p> * <p>说明:获取字段名,把"_"后面字母变大写</p>
* @param field 字段名
* @return String
*/ */
public static String changeToJavaFiled(String field) { public static String changeToJavaFiled(String field) {
String[] fields = field.split("_"); String[] fields = field.split("_");
...@@ -48,8 +52,11 @@ public class MySqlToJavaUtil { ...@@ -48,8 +52,11 @@ public class MySqlToJavaUtil {
return sbuilder.toString(); return sbuilder.toString();
} }
/** /**
* <p>把sql的数据类型转为java需要的类型</p> * <p>说明:把sql的数据类型转为java需要的类型</p>
* @param sqlType sql类型
* @return String java类型
*/ */
public static String jdbcTypeToJavaType(String sqlType) { public static String jdbcTypeToJavaType(String sqlType) {
MySqlTypeConvert typeConvert= new MySqlTypeConvert(); MySqlTypeConvert typeConvert= new MySqlTypeConvert();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment