SysLog.cs 310 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MpMainModels2
  4. {
  5. public partial class SysLog
  6. {
  7. public int Id { get; set; }
  8. public string Contents { get; set; }
  9. public DateTime? CreateDate { get; set; }
  10. public string CreateMan { get; set; }
  11. }
  12. }