using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareCC.Extend { /// /// 方法的返回对象 /// public class FunModel { public bool result { get; set; } public string errMsg { get; set; } public object data { get; set; } } }