三元财务API

archives.cs 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// archives:档案物资实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class archives
  13. {
  14. #region Model
  15. //private int id ;
  16. //private string A_archiveCode ;
  17. //private string A_archiveName ;
  18. //private int? A_archiveState ;
  19. //private int? A_archiveRecord ;
  20. //private string A_archivePeople;
  21. /// <summary>
  22. /// 自增ID
  23. /// </summary>
  24. //public int Id
  25. //{
  26. // set { id = value; }
  27. // get { return id; }
  28. //}
  29. public int id { get; set; }
  30. /// <summary>
  31. /// 关联客户表中的客户编号
  32. /// </summary>
  33. //public string A_ArchiveCode
  34. //{
  35. // set { A_archiveCode = value; }
  36. // get { return A_archiveCode; }
  37. //}
  38. public string A_archiveCode { get; set; }
  39. /// <summary>
  40. /// 物资名称
  41. /// </summary>
  42. //public string A_ArchiveName
  43. //{
  44. // set { A_archiveName = value; }
  45. // get { return A_archiveName; }
  46. //}
  47. public string A_archiveName { get; set; }
  48. /// <summary>
  49. /// 物资状态 关联状态表中的id
  50. /// </summary>
  51. //public int? A_ArchiveState
  52. //{
  53. // set { A_archiveState = value; }
  54. // get { return A_archiveState; }
  55. //}
  56. public int? A_archiveState { get; set; }
  57. ///// <summary>
  58. ///// 最近一次变更记录 关联操作记录表中的id
  59. ///// </summary>
  60. ////public int? A_ArchiveRecord
  61. ////{
  62. //// set { A_archiveRecord = value; }
  63. //// get { return A_archiveRecord; }
  64. ////}
  65. //public int? A_archiveRecord { get; set; }
  66. /// <summary>
  67. /// 操作人
  68. /// </summary>
  69. //public string A_ArchivePeople
  70. //{
  71. // set { A_archivePeople = value; }
  72. // get { return A_archivePeople; }
  73. //}
  74. public string A_archivePeople { get; set; }
  75. /// <summary>
  76. /// 外键状态名称
  77. /// </summary>
  78. public string stateName { get; set; }
  79. /// <summary>
  80. /// 操作内容
  81. /// </summary>
  82. /// <returns></returns>
  83. public string OperationContent { get; set; }
  84. /// <summary>
  85. /// 操作时间
  86. /// </summary>
  87. public DateTime? OperationDate { get; set; }
  88. /// <summary>
  89. /// 上传附件的id
  90. /// </summary>
  91. public int fileid { get; set; }
  92. /// <summary>
  93. /// 判断是添加还是修改==0为添加大于0为修改
  94. /// </summary>
  95. public int isadd { get; set; }
  96. /// <summary>
  97. /// 客户名称
  98. /// </summary>
  99. public string F_CompanyName { get; set; }
  100. #endregion Model
  101. }
  102. }