feat: update array && struct

This commit is contained in:
2025-10-14 11:49:07 +08:00
parent eb6124e3f7
commit 7dc9cb7ce6
2 changed files with 4 additions and 4 deletions

View File

@ -41,6 +41,6 @@ type Struct struct {
}
// ToMap 转为Map
func ToMap(s *Struct) op_map.Map {
func (s *Struct) ToMap() op_map.Map {
return op_map.EasyMap(s.data)
}