using AutoMapper;
using System;
using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(UploadFileEntity))]
[Serializable]
public class UploadFileInputDto : IInputDto
{
///
/// 设置或获取
///
public string FileName { get; set; }
///
/// 设置或获取
///
public string FilePath { get; set; }
///
/// 设置或获取
///
public string Description { get; set; }
///
/// 设置或获取
///
public string FileType { get; set; }
///
/// 设置或获取
///
public long? FileSize { get; set; }
///
/// 设置或获取
///
public string Extension { get; set; }
///
/// 设置或获取
///
public bool IsEnabled { get; set; }
///
/// 设置或获取
///
public long SortCode { get; set; }
///
/// 设置或获取
///
public string CreateUserName { get; set; }
///
/// 设置或获取
///
public string Thumbnail { get; set; }
///
/// 设置或获取
///
public string BelongApp { get; set; }
///
/// 设置或获取
///
public string BelongAppId { get; set; }
///
/// 设置或获取
///
public long Id { get; set; }
}
}