Update Demo

This commit is contained in:
sunkaixuan
2019-05-05 14:28:54 +08:00
parent f69f8af8d9
commit 53e9453168
78 changed files with 138 additions and 120 deletions

View File

@@ -0,0 +1,47 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TCM.Manager.Models
{
[SugarTable("tLogonHistory")]
public class tLogonHistoryModel
{
public long ClientID { get; set;}
public DateTime CreateTime { get; set; }
public int Type { get; set;}
public string IPAddress { get; set; }
public string Location { get; set; }
public string TimeZone { get; set; }
public string CountryName { get; set; }
public string CountryCode { get; set; }
public string RegionName { get; set;}
public string RegionCode { get; set; }
public string CityName { get; set; }
public string CityCode { get; set; }
public string Version { get; set;}
public string OriginalCountryCode { get; set; }
public int DeviceVirtualizeModel { get; set; }
public int DeviceCPUArchitecture { get; set; }
public int DeviceVirtualizeIndexNumber { get; set;}
}
}