三元财务API

archivestateInput.cs 532B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CallCenterApi.Interface.Models.Input
  6. {
  7. public class archivestateInput
  8. {
  9. #region Model
  10. //private int id;
  11. //private string stateName;
  12. /// <summary>
  13. /// 档案物资状态自增id
  14. /// </summary>
  15. public int id { get; set; }
  16. /// <summary>
  17. /// 档案物资状态
  18. /// </summary>
  19. public string stateName { get; set; }
  20. #endregion
  21. }
  22. }