VisitLog.cs 310 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllUfpEntity
  5. {
  6. public class VisitLog
  7. {
  8. public int Id { get; set; }
  9. public int FunctionId { get; set; }
  10. public string UserCode { get; set; }
  11. public DateTime? VisitTime { get; set; }
  12. }
  13. }