tidy code

This commit is contained in:
wenxu12345 2021-12-28 16:31:38 +08:00
parent 6f92fa0069
commit 508ccf4f9c

View File

@ -9,6 +9,7 @@ import (
// copy a by b b->a
func CopyStructFields(a interface{}, b interface{}, fields ...string) (err error) {
copier.Copy(&a, &b)
return nil
at := reflect.TypeOf(a)
av := reflect.ValueOf(a)
bt := reflect.TypeOf(b)