| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 交割提货个人信息查询应答
- /// </summary>
- 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; }
- }
- }
- }
|