using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataCapture_MA { public class ReturnBody { /// /// 通用系统返回码 /// public string resCode { get; set; } /// /// 通用系统返回的错误信息 /// public string resMsg { get; set; } /// /// QAMS返回的错误信息 /// public string errMsg { get; set; } public T resData { get; set; } } }