| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 确认收货-应答
- /// </summary>
- public class ReceiveConfirmRspModel
- {
- //private int _RetCode = int.MinValue;
-
- //public int RetCode
- //{
- // get { return _RetCode; }
- // set { _RetCode = value; }
- //}
- //private string _RetDesc = "";
-
- //public string RetDesc
- //{
- // get { return _RetDesc; }
- // set { _RetDesc = value; }
- //}
- private long _DeliveryId;
- public long DeliveryId
- {
- get { return _DeliveryId; }
- set { _DeliveryId = value; }
- }
- }
- }
|