mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
cmd/gf: fix command gf gen dao
for fieldMapping feature (#3549)
This commit is contained in:
parent
9aa426a105
commit
3cdd9ef36e
@ -241,7 +241,7 @@ func Test_Gen_Dao_FieldMapping(t *testing.T) {
|
||||
in = gendao.CGenDaoInput{
|
||||
Path: path,
|
||||
Link: link,
|
||||
Tables: "table_user",
|
||||
Tables: "",
|
||||
TablesEx: "",
|
||||
Group: group,
|
||||
Prefix: "",
|
||||
|
@ -133,7 +133,7 @@ func generateStructFieldDefinition(
|
||||
}
|
||||
|
||||
if in.FieldMapping != nil && len(in.FieldMapping) > 0 {
|
||||
if typeMapping, ok := in.FieldMapping[fmt.Sprintf("%s.%s", in.Tables, newFiledName)]; ok {
|
||||
if typeMapping, ok := in.FieldMapping[fmt.Sprintf("%s.%s", in.TableName, newFiledName)]; ok {
|
||||
localTypeNameStr = typeMapping.Type
|
||||
appendImport = typeMapping.Import
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ func ReplaceFile(search, replace, path string) error {
|
||||
func ReplaceFileFunc(f func(path, content string) string, path string) error {
|
||||
data := GetContents(path)
|
||||
result := f(path, data)
|
||||
if len(data) != len(result) && data != result {
|
||||
if len(data) != len(result) || data != result {
|
||||
return PutContents(path, result)
|
||||
}
|
||||
return nil
|
||||
|
Loading…
x
Reference in New Issue
Block a user