From adee7a71ba7ab1b63cab63381dfe1846437853d6 Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期四, 02 三月 2023 17:37:05 +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