using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Request { public class DroneSubjectReq { /// /// 列主键 /// /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 名称 /// /// public string Name { get; set; } /// /// Key /// /// public string Key { get; set; } /// /// 父级id /// /// public string PId { get; set; } /// /// 是否自动生成流程 /// /// public bool IsAutoProcess { get; set; } } }