using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割提货个人信息查询应答 /// public class DepositPersonalInfoRspModel { 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 _accountId = int.MinValue; public long accountId { get { return _accountId; } set { _accountId = value; } } private string _personName = ""; public string personName { get { return _personName; } set { _personName = value; } } private string _telphone = ""; public string telphone { get { return _telphone; } set { _telphone = value; } } private string _address = ""; public string address { get { return _address; } set { _address = value; } } private string _idCardNum = ""; public string IdCardNum { get { return _idCardNum; } set { _idCardNum = value; } } } }