From 064d7cb908b5ff528dfb3310c49b2f010bd28079 Mon Sep 17 00:00:00 2001 From: wangsheng <123456> Date: 星期二, 22 三月 2022 10:29:23 +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