using System;
using System.Collections.Generic;

namespace MySystem.PxcModels
{
    public partial class SysLog
    {
        public int Id { get; set; }
        public string Contents { get; set; }
        public DateTime? CreateDate { get; set; }
        public string CreateMan { get; set; }
    }
}