model中db标签增加'-'符号以支持数据库查询时忽略对应字段. (#1612)

master
Javen 3 years ago committed by GitHub
parent 96c128c58a
commit 60760b52ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save