From c1e8fb17c965fea814a9a91ca2edeb766d38bd70 Mon Sep 17 00:00:00 2001 From: me Date: Thu, 29 May 2025 14:53:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=93=8D=E5=BA=94=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- API/TaskManager.Entity/QRReturnInfo.cs | 55 ++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 API/TaskManager.Entity/QRReturnInfo.cs diff --git a/API/TaskManager.Entity/QRReturnInfo.cs b/API/TaskManager.Entity/QRReturnInfo.cs new file mode 100644 index 0000000..c612207 --- /dev/null +++ b/API/TaskManager.Entity/QRReturnInfo.cs @@ -0,0 +1,55 @@ +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 class QRReturnInfo + { + /// + /// 返回信息,200成功,其他不成功 + /// + public string code { get; set; } + + /// + /// 操作描述 + /// + public string message { get; set; } + + /// + /// 数据信息: 本次推送总数 + /// + public Data data { get; set; } + } + +}