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