12345678910111213141516171819202122232425262728 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace CZKJ.GBRS2.Entity
- {
- [Table("user_operation_record")]
- public class UserOperationRecordEntity
- {
- public int Id { get; set; }
- [Required]
- public int UserId { get; set; }
- [Required]
- [MaxLength(128)]
- public string Type { get; set; }
- [Required]
- [MaxLength(1024)]
- public string Content { get; set; }
- public DateTime CreatedTime { get; set; }
- }
- }
|