using System; using System.Collections.Generic; using System.Linq; using SqlSugar; using LearningOfficer.OA.Core.Entities; namespace LearningOfficer.OA.Core.Entities.OA.SystemInfo { /// /// APP/Desk 检查更新 /// [SugarTable("updateapp")] public class Updateapp : BaseEntity { /// /// 备 注:版本 /// 默认值: /// [SugarColumn(ColumnName = "version" )] public int Version { get; set; } /// /// 备 注:1启用 0停用 /// 默认值: /// [SugarColumn(ColumnName = "is_active" )] public int IsActive { get; set; } /// /// 备 注:文件id /// 默认值: /// [SugarColumn(ColumnName = "fileid" )] public long Fileid { get; set; } /// /// 备 注:1:安卓APP,2:IOS APP /// 默认值: /// [SugarColumn(ColumnName = "updatetype" )] public int Updatetype { get; set; } /// /// 备 注:版本名称 /// 默认值: /// [SugarColumn(ColumnName = "version_name" )] public string VersionName { get; set; } = null!; /// /// 备 注:版本说明 /// 默认值: /// [SugarColumn(ColumnName = "remark" )] public string? Remark { get; set; } /// /// 备 注:二维码base64 /// 默认值: /// [SugarColumn(ColumnName = "image_base" )] public string? ImageBase { get; set; } /// /// 备 注:版本是否强制升级 /// 默认值: /// [SugarColumn(ColumnName = "isforce" )] public bool Isforce { get; set; } } }