DepositPersonalInfoRspModel.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Delivery
  6. {
  7. /// <summary>
  8. /// 交割提货个人信息查询应答
  9. /// </summary>
  10. public class DepositPersonalInfoRspModel
  11. {
  12. private int _RetCode = int.MinValue;
  13. public int RetCode
  14. {
  15. get { return _RetCode; }
  16. set { _RetCode = value; }
  17. }
  18. private string _RetDesc = "";
  19. public string RetDesc
  20. {
  21. get { return _RetDesc; }
  22. set { _RetDesc = value; }
  23. }
  24. private long _accountId = int.MinValue;
  25. public long accountId
  26. {
  27. get { return _accountId; }
  28. set { _accountId = value; }
  29. }
  30. private string _personName = "";
  31. public string personName
  32. {
  33. get { return _personName; }
  34. set { _personName = value; }
  35. }
  36. private string _telphone = "";
  37. public string telphone
  38. {
  39. get { return _telphone; }
  40. set { _telphone = value; }
  41. }
  42. private string _address = "";
  43. public string address
  44. {
  45. get { return _address; }
  46. set { _address = value; }
  47. }
  48. private string _idCardNum = "";
  49. public string IdCardNum
  50. {
  51. get { return _idCardNum; }
  52. set { _idCardNum = value; }
  53. }
  54. }
  55. }