package util func SafeConvert2String(obj interface{}) string { if obj != nil { return obj.(string) } return "" }