User_OperationLog.cs 970 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using XYY.Core.Standard;
  3. using XYY.Model.Standard.User.Enums;
  4. namespace XYY.Model.Standard.User
  5. {
  6. public class User_OperationLog : BaseEntity
  7. {
  8. public DateTime OperationTime
  9. {
  10. get; set;
  11. }
  12. public string OperationName
  13. {
  14. get; set;
  15. }
  16. public string Traget
  17. {
  18. get; set;
  19. }
  20. public string OperationUserName
  21. {
  22. get; set;
  23. }
  24. public UserSystem SystemId { get; set; }
  25. }
  26. public class ViewUserOperationLog
  27. {
  28. public int Qty
  29. {
  30. get; set;
  31. }
  32. public string OperationUserName
  33. {
  34. get; set;
  35. }
  36. public DateTime OperationTime
  37. {
  38. get; set;
  39. }
  40. public string OperationName
  41. {
  42. get; set;
  43. }
  44. public string Date
  45. {
  46. get; set;
  47. }
  48. }
  49. }