| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 交割商品到期提货通知
- /// </summary>
- public class GoodsCloseDateNtfModel
- {
- private int _RetCode = int.MinValue;
-
- public int RetCode
- {
- get { return _RetCode; }
- set { _RetCode = value; }
- }
- private string _LoginCode = "";
-
- public string LoginCode
- {
- get { return _LoginCode; }
- set { _LoginCode = value; }
- }
- private int _AccountId = int.MinValue;
-
- public int AccountId
- {
- get { return _AccountId; }
- set { _AccountId = value; }
- }
- private int _RiskLevel = int.MinValue;
-
- public int RiskLevel
- {
- get { return _RiskLevel; }
- set { _RiskLevel = value; }
- }
- private int _ReceiverTypes = int.MinValue;
-
- public int ReceiverTypes
- {
- get { return _ReceiverTypes; }
- set { _ReceiverTypes = value; }
- }
- private string _MsgContent = "";
-
- public string MsgContent
- {
- get { return _MsgContent; }
- set { _MsgContent = value; }
- }
- private string _Idate = "";
- public string Idate
- {
- get { return _Idate; }
- set { _Idate = value; }
- }
- }
- }
|