using System; using System.Collections.Generic; using System.Text; namespace DllUfpEntity { public class VisitLog { public int Id { get; set; } public int FunctionId { get; set; } public string UserCode { get; set; } public DateTime? VisitTime { get; set; } } }