gitee.com/zhongguo168a/gocodes@v0.0.0-20230609140523-e1828349603f/datax/schemax/struct.go (about) 1 package schemax 2 3 // 继承描述对象接口的实例,可避免使用反射获取类型信息,增加性能 4 type IObject interface { 5 RefType() string 6 }