OperationInfo.cs 754 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. namespace NXWMS.Client.Model.CoreModels
  7. {
  8. /// <summary>
  9. /// 操作信息
  10. /// </summary>
  11. public class OperationInfo
  12. {
  13. /// <summary>
  14. /// 操作用户Id
  15. /// </summary>
  16. public int OperationUserId { get; set; }
  17. /// <summary>
  18. /// 操作时间
  19. /// </summary>
  20. public DateTime OperationTime { get; set; } = DateTime.Now;
  21. /// <summary>
  22. /// 查询语句所有项目,逗号分割连接字符串(只针对配置字典表,流水记录后台接口不做)
  23. /// </summary>
  24. public string ItemSQL { get; set; } = "*";
  25. }
  26. }