using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.TestUserTypeApi { public class yltdeptmanage: IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 名称 /// public string name { get; set; } /// /// 父id /// [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string parentid { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }