DynamicTablerImpl the implementation of DynamicTabler
| 45 | |
| 46 | // DynamicTablerImpl the implementation of DynamicTabler |
| 47 | type DynamicTablerImpl struct { |
| 48 | objType reflect.Type |
| 49 | wrapped any |
| 50 | table string |
| 51 | } |
| 52 | |
| 53 | func NewDynamicTabler(tableName string, objType reflect.Type) DynamicTabler { |
| 54 | return &DynamicTablerImpl{ |
nothing calls this directly
no outgoing calls
no test coverage detected