OperationLogEntity.cs 438 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace CZKJ.GBRS2.Entity
  6. {
  7. [Table("operationlog")]
  8. public class OperationLogEntity
  9. {
  10. public int Id { get; set; }
  11. public int UserId { get; set; }
  12. public string UserName { get; set; }
  13. public string Type { get; set; }
  14. public DateTime Time { get; set; }
  15. }
  16. }