using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 确认收货-应答 /// 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; } } } }