mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
model中db标签增加'-'符号以支持数据库查询时忽略对应字段. (#1612)
This commit is contained in:
parent
96c128c58a
commit
60760b52ab
@ -30,13 +30,17 @@ func RawFieldNames(in interface{}, postgresSql ...bool) []string {
|
||||
for i := 0; i < v.NumField(); i++ {
|
||||
// gets us a StructField
|
||||
fi := typ.Field(i)
|
||||
if tagv := fi.Tag.Get(dbTag); tagv != "" {
|
||||
tagv := fi.Tag.Get(dbTag)
|
||||
switch {
|
||||
case tagv == "-":
|
||||
continue
|
||||
case tagv != "":
|
||||
if pg {
|
||||
out = append(out, tagv)
|
||||
} else {
|
||||
out = append(out, fmt.Sprintf("`%s`", tagv))
|
||||
}
|
||||
} else {
|
||||
default:
|
||||
if pg {
|
||||
out = append(out, fi.Name)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user