| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- // ***********************************************************************
- // Assembly : Muchinfo.MTPClient.Data
- // Author : dyp
- // Created : 09-12-2020
- //
- // Last Modified By : dyp
- // Last Modified On : 09-12-2020
- // ***********************************************************************
- // <copyright file="RiskControlMsg.cs" company="">
- // Copyright (c) . All rights reserved.
- // </copyright>
- // <summary></summary>
- // ***********************************************************************
- using System;
- /// <summary>
- /// The Message namespace.
- /// </summary>
- namespace Muchinfo.MTPClient.Data.Model.Message
- {
- /// <summary>
- /// Class RiskControlMsg.
- /// </summary>
- public class RiskControlMsg
- {
- //"{\"autoid\":\"40332\",\"msgtype\":\"2\",\"scheduletime\":\"2020-09-12 15:56:47\",\"publisher\":\"0\",\"sendtype\":\"3\",\"userid\":\"400000279\",\"istop\":null,\"endtime\":\"2020-09-19 15:56:47\",\"title\":\"风控通知\",\"content\":\"尊敬的muchinfo(25000016607),您的账户风险率已达到9.93%,将可能造成持仓被执行强平,请保持足够的可用金额,关注风险率。\",\"creatorid\":\"1\",\"createtime\":\"2020-09-12 15:56:47\",\"sentstatus\":\"1\",\"auditorUserId\":null,\"auditTime\":null,\"auditRemark\":null}"
- /// <summary>
- /// The _auto identifier
- /// </summary>
- private int _autoId;
- /// <summary>
- /// The _MSG type
- /// </summary>
- private int _msgType;
- /// <summary>
- /// The _schedule time
- /// </summary>
- private DateTime _scheduleTime;
- /// <summary>
- /// The _publisher
- /// </summary>
- private int _publisher;
- /// <summary>
- /// The _send type
- /// </summary>
- private int _sendType;
- /// <summary>
- /// The _user identifier
- /// </summary>
- private string _userId;
- /// <summary>
- /// The _i stop
- /// </summary>
- private string _iStop;
- /// <summary>
- /// The _end time
- /// </summary>
- private DateTime _endTime;
- /// <summary>
- /// The _title
- /// </summary>
- private string _title;
- /// <summary>
- /// The _content
- /// </summary>
- private string _content;
- /// <summary>
- /// The _creator identifier
- /// </summary>
- private ulong _creatorId;
- /// <summary>
- /// The _create time
- /// </summary>
- private DateTime _createTime;
- /// <summary>
- /// The _sent status
- /// </summary>
- private int _sentStatus;
- /// <summary>
- /// The _auditor user identifier
- /// </summary>
- private string _auditorUserId;
- /// <summary>
- /// The _audit time
- /// </summary>
- private string _auditTime;
- /// <summary>
- /// The _audit remark
- /// </summary>
- private string _auditRemark;
- /// <summary>
- /// The _audit remark
- /// </summary>
- public string AuditRemark
- {
- get { return _auditRemark; }
- set { _auditRemark = value; }
- }
- /// <summary>
- /// The _audit time
- /// </summary>
- public string AuditTime
- {
- get { return _auditTime; }
- set { _auditTime = value; }
- }
- /// <summary>
- /// The _auditor user identifier
- /// </summary>
- public string AuditorUserId
- {
- get { return _auditorUserId; }
- set { _auditorUserId = value; }
- }
- /// <summary>
- /// The _sent status
- /// </summary>
- public int SentStatus
- {
- get { return _sentStatus; }
- set { _sentStatus = value; }
- }
- /// <summary>
- /// The _create time
- /// </summary>
- public DateTime CreateTime
- {
- get { return _createTime; }
- set { _createTime = value; }
- }
- /// <summary>
- /// The _creator identifier
- /// </summary>
- public ulong CreatorId
- {
- get { return _creatorId; }
- set { _creatorId = value; }
- }
- /// <summary>
- /// The _content
- /// </summary>
- public string Content
- {
- get { return _content; }
- set { _content = value; }
- }
- /// <summary>
- /// The _title
- /// </summary>
- public string Title
- {
- get { return _title; }
- set { _title = value; }
- }
- /// <summary>
- /// The _end time
- /// </summary>
- public DateTime EndTime
- {
- get { return _endTime; }
- set { _endTime = value; }
- }
- /// <summary>
- /// The _i stop
- /// </summary>
- public string IStop
- {
- get { return _iStop; }
- set { _iStop = value; }
- }
- /// <summary>
- /// The _user identifier
- /// </summary>
- public string UserId
- {
- get { return _userId; }
- set { _userId = value; }
- }
- /// <summary>
- /// The _send type
- /// </summary>
- public int SendType
- {
- get { return _sendType; }
- set { _sendType = value; }
- }
- /// <summary>
- /// The _publisher
- /// </summary>
- public int Publisher
- {
- get { return _publisher; }
- set { _publisher = value; }
- }
- /// <summary>
- /// The _schedule time
- /// </summary>
- public DateTime ScheduleTime
- {
- get { return _scheduleTime; }
- set { _scheduleTime = value; }
- }
- /// <summary>
- /// The _MSG type
- /// </summary>
- public int MsgType
- {
- get { return _msgType; }
- set { _msgType = value; }
- }
- /// <summary>
- /// The _auto identifier
- /// </summary>
- public int AutoId
- {
- get { return _autoId; }
- set { _autoId = value; }
- }
- }
- }
|