From 705909e14fe4e9f2fc261ee4eb40a8b41fa2f6d4 Mon Sep 17 00:00:00 2001 From: wzp <2880584989@qq.com> Date: 星期二, 12 七月 2022 17:37:26 +0800 Subject: [PATCH] 增加免密登陆的token --- web/Model/Model/GwOrder.cs | 25 ++++++++++++++++++------- 1 files changed, 18 insertions(+), 7 deletions(-) diff --git a/web/Model/Model/GwOrder.cs b/web/Model/Model/GwOrder.cs index cad08b0..240e9f3 100644 --- a/web/Model/Model/GwOrder.cs +++ b/web/Model/Model/GwOrder.cs @@ -13,27 +13,35 @@ public string ClientId { get; set; } + public string Company { get; set; } + public string ClientName { get; set; } public string ProductId { get; set; } + public string ProductName { get; set; } + public string ComboId { get; set; } - public int BasicNum { get; set; } + public Int64 BasicNum { get; set; } - public int GivingNum { get; set; } + public Int64 GivingNum { get; set; } public int Price { get; set; } - public int OrderNumTotal { get; set; } + public Int64 OrderNumTotal { get; set; } - public int OrderAmountTotal { get; set; } + public Int64 OrderAmountTotal { get; set; } - public int PayAmount { get; set; } + public Int64 PayAmount { get; set; } - public int BeforeBalanceNum { get; set; } + public Int64 BeforeBalanceNum { get; set; } public string Creator { get; set; } + + //鍚勭骇瀹℃牳浜虹粍鍚堬紝浠ュ崐瑙掗�楀彿鍒嗛殧銆� + public string Auditor { get; set; } + public DateTime CreateTime { get; set; } @@ -42,5 +50,8 @@ public int Status { get; set; } public string Remark { get; set; } - } + + //瀹㈡埛浣欓 + public long Balance { get; set; } + } } -- Gitblit v1.9.1