OPLOG.cs 477 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace BooksManageSystem
  5. {
  6. public class OPLOG
  7. {
  8. public int BookID { get; set; }
  9. public string BookName { get; set; }
  10. public EnumOP op { get; set; }
  11. public DateTime OPdatetime { get; set; }
  12. public int OPCount { get; set; }
  13. public int AfterOPCount { get; set; }
  14. public string oper { get; set; }
  15. public int OPID { get; set; }
  16. }
  17. }