12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main1
- {
- public partial class UserAgent
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public int AgentLevel { get; set; }
- public string ManageAreas { get; set; }
- public int UserId { get; set; }
- public string Operator { get; set; }
- }
- }
|