WdtLogs.cs 445 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace YiLvRunFrom.Model
  7. {
  8. public class WdtLogs
  9. {
  10. public int SysId { get; set; }
  11. public DateTime OperDate { get; set; }
  12. public string OperType { get; set; }
  13. public string Args { get; set; }
  14. public int ReturnCode { get; set; }
  15. public string Msg { get; set; }
  16. }
  17. }