mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-15 03:37:55 +00:00
从数据库获取表结构直接生成代码
This commit is contained in:
@@ -10,4 +10,11 @@ export const toUpperCase = (str) => {
|
||||
export const toSQLLine = (str) => {
|
||||
if (str=="ID") return "ID"
|
||||
return str.replace(/([A-Z])/g,"_$1").toLowerCase();
|
||||
}
|
||||
}
|
||||
|
||||
// 下划线转换驼峰
|
||||
export const toHump = (name) => {
|
||||
return name.replace(/\_(\w)/g, function(all, letter){
|
||||
return letter.toUpperCase();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user