1 Star 0 Fork 0

go-genie/sqlx-pg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tag.go 590 Bytes
一键复制 编辑 原始数据 按行查看 历史
lijun 提交于 2024-02-19 15:57 . init: initialization project
package tag
type Tag struct {
Key string `db:"f_key" json:"key"`
Value string `db:"f_value" json:"value"`
}
type Tags map[string][]string
func (Tags) New() interface{} {
return &Tag{}
}
func (u Tags) Get(k string) string {
if values, ok := u[k]; ok && len(values) > 0 {
return values[0]
}
return ""
}
func (u Tags) Add(k, v string) {
if _, ok := u[k]; !ok {
u[k] = []string{}
}
u[k] = append(u[k], v)
}
func (u Tags) Set(k string, values ...string) {
u[k] = values
}
func (u Tags) Next(v interface{}) error {
tag := v.(*Tag)
u.Add(tag.Key, tag.Value)
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go-genie/sqlx-pg.git
git@gitee.com:go-genie/sqlx-pg.git
go-genie
sqlx-pg
sqlx-pg
v1.0.6

搜索帮助

0d507c66 1850385 C8b1a773 1850385