Sys_oplog.cs 432 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LJLib.DAL.SQL;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "logid" })]
  9. public sealed class Sys_oplog
  10. {
  11. public int? logid { get; set; }
  12. public string Logtype { get; set; }
  13. public string Dscrp { get; set; }
  14. public DateTime? Optime { get; set; }
  15. public string opemp { get; set; }
  16. }
  17. }