You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
620 B

9 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSUser
  8. {
  9. /// <summary>
  10. /// 表头ID
  11. /// </summary>
  12. public string ID { get; set; }
  13. /// <summary>
  14. /// 操作人
  15. /// </summary>
  16. public string User { get; set; }
  17. /// <summary>
  18. /// 操作时间
  19. /// </summary>
  20. public DateTime MTime { get; set; }
  21. /// <summary>
  22. /// 审核标识(1审核,0弃审)
  23. /// </summary>
  24. public string ApproveFlag { get; set; }
  25. }
  26. }