From 88c3d1f7bc185f65990a5f14669a51d4d8202e25 Mon Sep 17 00:00:00 2001
From: yzh <snbbt@21cn.com>
Date: 星期二, 10 五月 2022 17:37:35 +0800
Subject: [PATCH] 充值功能优化,客户表增加余额、订单表增加充值金额
---
web/Model/Model/GwDm.cs | 254 +++++++++++++++++++++++++-------------------------
1 files changed, 127 insertions(+), 127 deletions(-)
diff --git a/web/Model/Model/GwDm.cs b/web/Model/Model/GwDm.cs
index cffc944..42c80d9 100644
--- a/web/Model/Model/GwDm.cs
+++ b/web/Model/Model/GwDm.cs
@@ -1,134 +1,134 @@
-锘�
+锘�
using System;
namespace Model
{
- public class GwDm
- {
- private string _messageId;
- private int _apId;
- private int _opId;
- private string _sourceId;
- private string _destnationId;
- private int _rdFlag;
- private int _msgFormat;
- private int _msgLength;
- private string _msgContent;
-
- public string OPMID
+ public class GwDm
{
- get
- {
- return this._messageId;
- }
- set
- {
- this._messageId = value;
- }
+ private string _messageId;
+ private int _apId;
+ private int _opId;
+ private string _sourceId;
+ private string _destnationId;
+ private int _rdFlag;
+ private int _msgFormat;
+ private int _msgLength;
+ private string _msgContent;
+
+ public string OPMID
+ {
+ get
+ {
+ return this._messageId;
+ }
+ set
+ {
+ this._messageId = value;
+ }
+ }
+
+ public int ApID
+ {
+ get
+ {
+ return this._apId;
+ }
+ set
+ {
+ this._apId = value;
+ }
+ }
+
+ public int OpID
+ {
+ get
+ {
+ return this._opId;
+ }
+ set
+ {
+ this._opId = value;
+ }
+ }
+
+ public string Mobile
+ {
+ get
+ {
+ return this._sourceId;
+ }
+ set
+ {
+ this._sourceId = value;
+ }
+ }
+
+ public string AccessCode
+ {
+ get
+ {
+ return this._destnationId;
+ }
+ set
+ {
+ this._destnationId = value;
+ }
+ }
+
+ public int RDFlag
+ {
+ get
+ {
+ return this._rdFlag;
+ }
+ set
+ {
+ this._rdFlag = value;
+ }
+ }
+
+ public int MsgFormat
+ {
+ get
+ {
+ return this._msgFormat;
+ }
+ set
+ {
+ this._msgFormat = value;
+ }
+ }
+
+ public int MsgLength
+ {
+ get
+ {
+ return this._msgLength;
+ }
+ set
+ {
+ this._msgLength = value;
+ }
+ }
+
+ public string MsgContent
+ {
+ get
+ {
+ return this._msgContent;
+ }
+ set
+ {
+ this._msgContent = value;
+ }
+ }
+
+ public DateTime DeliverTime { get; set; }
+
+ public string SPID { get; set; }
+
+ public string ClientID { get; set; }
+
+ public string ExtNo { get; set; }
}
-
- public int ApID
- {
- get
- {
- return this._apId;
- }
- set
- {
- this._apId = value;
- }
- }
-
- public int OpID
- {
- get
- {
- return this._opId;
- }
- set
- {
- this._opId = value;
- }
- }
-
- public string Mobile
- {
- get
- {
- return this._sourceId;
- }
- set
- {
- this._sourceId = value;
- }
- }
-
- public string AccessCode
- {
- get
- {
- return this._destnationId;
- }
- set
- {
- this._destnationId = value;
- }
- }
-
- public int RDFlag
- {
- get
- {
- return this._rdFlag;
- }
- set
- {
- this._rdFlag = value;
- }
- }
-
- public int MsgFormat
- {
- get
- {
- return this._msgFormat;
- }
- set
- {
- this._msgFormat = value;
- }
- }
-
- public int MsgLength
- {
- get
- {
- return this._msgLength;
- }
- set
- {
- this._msgLength = value;
- }
- }
-
- public string MsgContent
- {
- get
- {
- return this._msgContent;
- }
- set
- {
- this._msgContent = value;
- }
- }
-
- public DateTime DeliverTime { get; set; }
-
- public string SPID { get; set; }
-
- public string ClientID { get; set; }
-
- public string ExtNo { get; set; }
- }
}
--
Gitblit v1.9.1