列名支持中横线 #31

Open
lunny wants to merge 1 commits from liwenyu/master into master

@ -108,6 +108,10 @@ func titleCasedName(name string) string {
case chr == '_':
upNextChar = true
continue
//支持中横线
case chr == '-':
upNextChar = true
continue
}
newstr = append(newstr, chr)