using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.MessageApi { /// /// 3D仿真版本 /// public class App_Version3D : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 应用分类(1android 2ios 3pc) /// public int apptype { get; set; } = 0; /// /// 项目id /// [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string projectid { get; set; } /// /// 版本名称 /// public string versionname { get; set; } /// /// 版本号 /// public string versioncode { get; set; } /// /// 下载地址 /// public List downurl { get; set; } /// /// 用户id /// public string createby { get; set; } /// /// 添加时间 /// public DateTime createtime { get; set; } = DateTime.Now; /// /// 修改时间 /// public DateTime updatetime { get; set; } /// /// 删除时间 /// public DateTime deletetime { get; set; } /// /// 是否删除 0正常 -1删除 /// public int isdelete { get; set; } = 0; /// /// 备注 /// public string note { get; set; } } }