(fromObj, toObj interface{})
| 11 | type IMapper interface { |
| 12 | Mapper(fromObj, toObj interface{}) error |
| 13 | AutoMapper(fromObj, toObj interface{}) error |
| 14 | MapperMap(fromMap map[string]interface{}, toObj interface{}) error |
| 15 | MapToSlice(fromMap map[string]interface{}, toSlice interface{}) error |
| 16 | MapperMapSlice(fromMaps map[string]map[string]interface{}, toSlice interface{}) error |
no outgoing calls