public static bool IsError <T>(this YilianyunBaseOutputModel <T> input) { return(input == null || input.Error != "0"); }
public static bool IsSuccess <T>(this YilianyunBaseOutputModel <T> input) { return(input != null && input.Error == "0"); }