OperationInfo.cs 558 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NXWMS.Model.CoreModels
  8. {
  9. /// <summary>
  10. /// 操作信息
  11. /// </summary>
  12. public class OperationInfo
  13. {
  14. /// <summary>
  15. /// 操作用户Id
  16. /// </summary>
  17. public int OperationUserId { get; set; }
  18. /// <summary>
  19. /// 操作时间
  20. /// </summary>
  21. public DateTime? OperationTime { get; set; }
  22. }
  23. }