using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model { public class Sys_DictionaryValue : IBaseModel { /// /// 自增id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 字典编号 /// public string dictionarycode { get; set; } /// /// 字典项编号 /// public string valuecode { get; set; } /// /// 字典项名称 /// public string name { get; set; } /// /// 字典项排序 /// public int sort { get; set; } /// /// 字典项描述 /// public string describe { get; set; } /// /// 字典项状态 /// public bool statetype { get; set; } = true; /// /// 项目名称 /// public string projectname { get; set; } /// /// 系统图片 /// public List system_image { get; set; } = null; } }