func setColumnInt(bean interface{}, col *core.Column, t int64) { v, err := col.ValueOf(bean) if err != nil { return } if v.CanSet() { switch v.Type().Kind() { case reflect.Int, reflect.Int64, reflect.Int32: v.SetInt(t) case reflect.Uint, reflect.Uint64, reflect.Uint32: v.SetUint(uint64(t)) } } }
func setColumnTime(bean interface{}, col *core.Column, t time.Time) { v, err := col.ValueOf(bean) if err != nil { return } if v.CanSet() { switch v.Type().Kind() { case reflect.Struct: v.Set(reflect.ValueOf(t).Convert(v.Type())) case reflect.Int, reflect.Int64, reflect.Int32: v.SetInt(t.Unix()) case reflect.Uint, reflect.Uint64, reflect.Uint32: v.SetUint(uint64(t.Unix())) } } }