123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace CZKJ.GBRS2.Entity
- {
- [Table("operationlog")]
- public class OperationLogEntity
- {
- public int Id { get; set; }
- public int UserId { get; set; }
- public string UserName { get; set; }
- public string Type { get; set; }
- public DateTime Time { get; set; }
- }
- }
|