using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Tiobon.Core.Model.Models
{
///
///
///
[SugarTable("WeChatUploadFile")]
public partial class WeChatUploadFile
{
///
/// 文件ID
///
[SugarColumn(Length = 100,IsPrimaryKey = true,IsNullable =false)]
public string UploadFileID { get; set; }
///
/// 文件名称
///
[SugarColumn(Length = 200, IsNullable = false)]
public string UploadFileName { get; set; }
///
/// 文件大小
///
[SugarColumn(IsNullable = false)]
public int? UploadFileSize { get; set; }
///
/// 文件类型
///
[SugarColumn(Length = 50, IsNullable = true)]
public string UploadFileContentType { get; set; }
///
/// 文件拓展名
///
[SugarColumn(Length = 50, IsNullable = true)]
public string UploadFileExtension { get; set; }
///
/// 文件位置
///
[SugarColumn(Length = 200, IsNullable = true)]
public string UploadFilePosition { get; set; }
///
/// 文件上传时间
///
public DateTime? UploadFileTime { get; set; }
///
/// 文件备注
///
[SugarColumn(Length = 200, IsNullable = true)]
public string UploadFileRemark { get; set; }
///
/// 创建者id
///
[SugarColumn(IsNullable = true)]
public int? CreateId { get; set; }
///
/// 创建人
///
[SugarColumn(IsNullable = true)]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(IsNullable = true)]
public DateTime? CreateTime { get; set; }
///
/// 修改者id
///
[SugarColumn(IsNullable = true)]
public int? ModifyId { get; set; }
///
/// 修改人
///
[SugarColumn(IsNullable = true)]
public string ModifyBy { get; set; }
///
/// 修改时间
///
[SugarColumn(IsNullable = true)]
public DateTime? ModifyTime { get; set; }
}
}