You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB
C#

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; }
}
}