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 Gzlrbs : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 项目 /// public string Gzlrbxm { get; set;} /// /// 分类 /// public string Gztype { get; set; } /// /// 人次 /// public string Gzrc { get; set; } /// /// 备注 /// public string Gzmemo { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }