43 lines
979 B
C#
43 lines
979 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Banner
|
|
{
|
|
public class BannerResult
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:文件id
|
|
/// 默认值:
|
|
///</summary>
|
|
public long BannerFileId { get; set; }
|
|
/// <summary>
|
|
/// 备 注:banne名称
|
|
/// 默认值:
|
|
///</summary>
|
|
public string BannerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:文件地址
|
|
/// </summary>
|
|
public string BannerFileUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string BannerFileName { get; set; }
|
|
/// <summary>
|
|
/// 文件大小
|
|
/// </summary>
|
|
public long? BannerFileSize { get; set; }
|
|
|
|
}
|
|
}
|