using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割商品到期提货通知 /// 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; } } } }