using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "sys_iplimit", DisableSyncStructure = true)] public partial class SysIplimit { [JsonProperty, Column(Name = "ip", DbType = "varchar(50)", IsNullable = false)] public string Ip { get; set; } = ""; [JsonProperty, Column(Name = "oper", DbType = "varchar(512)")] public string Oper { get; set; } [JsonProperty, Column(Name = "updatetime", InsertValueSql = "getdate()")] public DateTime? Updatetime { get; set; } } }