This commit is contained in:
aozhiwei 2024-09-23 15:39:02 +08:00
parent 6e8e2ee634
commit 343547ab9d

View File

@ -15,6 +15,12 @@ func (this *vip) init() () {
}
func (this *vip) Add(accountAddress string, val string, idx int64, valField string, idxField string) bool {
return this.AddEx(accountAddress, val, idx, valField, idxField, [][]string{})
}
func (this *vip) AddEx(accountAddress string, val string, idx int64, valField string, idxField string,
whereKv [][]string) bool {
this.lock.Lock()
defer this.lock.Unlock()