using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TaskManager.Entity { public class Data { /// /// 批次号 /// public string batchNo { get; set; } /// /// API名称 /// public string apiName { get; set; } /// /// 获取的总记录数 /// public int totalGet { get; set; } /// /// 出错的总记录数 /// public int totalError { get; set; } /// /// 保存的总记录数 /// public int totalSave { get; set; } /// /// 操作时间 /// public DateTime? time { get; set; } } public class QRReturnInfo { //{"code":200,"data":{"batchNo":"BYE4NER8EGYEHV9F51CELEOCBU6CPGYZ","apiName":"supplier_pro_attachment_data","totalGet":1,"totalError":0,"totalSave":1,"time":null},"message":"操作成功"} /// /// 返回信息,200成功,其他不成功 /// public int code { get; set; } /// /// 操作描述 /// public string message { get; set; } /// /// 数据信息: 本次推送总数 /// public Data data { get; set; } } }