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 = "VW_User_Authority", DisableSyncStructure = true)] public partial class VWUserAuthority { [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string AUTHORITYID { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string DESCRIPTION { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string GID { 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(DbType = "varchar(50)")] public string MODULEURL { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string NAME { get; set; } [JsonProperty] public int OPERATERANGE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string USERID { get; set; } [JsonProperty] public int VISIBLERANGE { get; set; } } }