using System; using System.Collections.Generic; using System.Linq; using System.Text; using LJLib.DAL.SQL; namespace JLHHJSvr.Com.Model { [PK(new[] { "logid" })] public sealed class Sys_oplog { public int? logid { get; set; } public string Logtype { get; set; } public string Dscrp { get; set; } public DateTime? Optime { get; set; } public string opemp { get; set; } } }