Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/UpdateApp/UpdateappResult.cs

69 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.UpdateApp
{
public class UpdateappResult
{
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
public long Id { get; set; }
/// <summary>
/// 备 注:版本
/// 默认值:
///</summary>
public int Version { get; set; }
/// <summary>
/// 版本号
/// </summary>
public string VersionName { get; set; }
/// <summary>
/// 版本说明
/// </summary>
public string? Remark { get; set; }
/// <summary>
/// 二维码图片base64
/// </summary>
public string? Image_Base { get; set; }
/// <summary>
/// 1:安卓APP,2: IOS
/// </summary>
public int? Updatetype { get; set; }
/// <summary>
/// 1启用 0停用
/// </summary>
public int? is_active { get; set; }
/// <summary>
/// 备 注:文件id
/// 默认值:
///</summary>
public long? Fileid { get; set; }
/// <summary>
/// 原文件名
/// </summary>
public string? FileName { get; set; }
/// <summary>
/// 文件路径
/// </summary>
public string? FilePath { get; set; }
/// <summary>
/// 备 注:文件大小(文件大小-kb不足1kb为1kb
/// 默认值:
///</summary>
public long? File_size { get; set; }
/// <summary>
/// 备 注:版本是否强制升级
/// 默认值:
///</summary>
public bool Isforce { get; set; }
}
}