三元财务API

archivestate.cs 705B

123456789101112131415161718192021222324252627282930
  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. /// archivestate:档案物资状态实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public class archivestate
  13. {
  14. #region Model
  15. //private int id;
  16. //private string stateName;
  17. /// <summary>
  18. /// 档案物资状态自增id
  19. /// </summary>
  20. public int id { get; set; }
  21. /// <summary>
  22. /// 档案物资状态
  23. /// </summary>
  24. public string stateName { get; set; }
  25. #endregion
  26. }
  27. }