We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
表中字段大写导致导出entity后被截断
建议tools里的Capitalize 改为
func (t *Tools) Capitalize(s string) string { var upperStr string chars := strings.Split(s, "_") for _, val := range chars { upperStr += strings.ToUpper(val[0:1])+val[1:] } return upperStr }
The text was updated successfully, but these errors were encountered:
谢谢您的建议,下版本修复此BUG
Sorry, something went wrong.
No branches or pull requests
表中字段大写导致导出entity后被截断
建议tools里的Capitalize 改为
The text was updated successfully, but these errors were encountered: