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(DisableSyncStructure = true)] public partial class VUserAuthorities { [JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(StringLength = -2)] public string AUTHORITYID { get; set; } [JsonProperty, Column(StringLength = -2)] public string DESCRIPTION { get; set; } [JsonProperty] public bool? ISALL { get; set; } [JsonProperty] public bool? ISCOMPANY { get; set; } [JsonProperty] public bool? ISDELETE { get; set; } [JsonProperty] public bool? ISDEPT { get; set; } [JsonProperty] public bool? ISPERSON { get; set; } [JsonProperty, Column(StringLength = -2)] public string MODULEURL { get; set; } [JsonProperty, Column(StringLength = -2)] public string NAME { get; set; } [JsonProperty] public int OPERATERANGE { get; set; } [JsonProperty, Column(StringLength = -2)] public string USERID { get; set; } [JsonProperty] public int VISIBLERANGE { get; set; } } }