| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 交收审核通知
- /// </summary>
- public class DeliveryAuditNtfModel
- {
- //private MessageHead _Header = null;
-
- //public MessageHead Header
- //{
- // get { return _Header; }
- // set { _Header = value; }
- //}
- private int _RetCode = int.MinValue;
-
- public int RetCode
- {
- get { return _RetCode; }
- set { _RetCode = value; }
- }
- private long _OrderID = int.MinValue;
-
- public long OrderID
- {
- get { return _OrderID; }
- set { _OrderID = value; }
- }
- private uint _GoodsID = uint.MaxValue;
-
- public uint GoodsID
- {
- get { return _GoodsID; }
- set { _GoodsID = value; }
- }
- private uint _AccountID = uint.MaxValue;
-
- public uint AccountID
- {
- get { return _AccountID; }
- set { _AccountID = value; }
- }
- private uint _BuyOrSell = uint.MaxValue;
-
- public uint BuyOrSell
- {
- get { return _BuyOrSell; }
- set { _BuyOrSell = value; }
- }
- private double _OrderQty = int.MinValue;
-
- public double OrderQty
- {
- get { return _OrderQty; }
- set { _OrderQty = value; }
- }
- private int _Result;
- public int Result
- {
- get { return _Result; }
- set { _Result = value; }
- }
- private uint _OperatorID = uint.MaxValue;
- public uint OperatorID
- {
- get { return _OperatorID; }
- set { _OperatorID = value; }
- }
- }
- }
|