init
This commit is contained in:
92
DouyinApi.Model/Models/WeChatUploadFile.cs
Normal file
92
DouyinApi.Model/Models/WeChatUploadFile.cs
Normal file
@@ -0,0 +1,92 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SqlSugar;
|
||||
|
||||
namespace DouyinApi.Model.Models
|
||||
{
|
||||
///<summary>
|
||||
///
|
||||
///</summary>
|
||||
[SugarTable("WeChatUploadFile")]
|
||||
public partial class WeChatUploadFile
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 文件ID
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 100,IsPrimaryKey = true,IsNullable =false)]
|
||||
public string UploadFileID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件名称
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 200, IsNullable = false)]
|
||||
public string UploadFileName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件大小
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = false)]
|
||||
public int? UploadFileSize { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件类型
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string UploadFileContentType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件拓展名
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string UploadFileExtension { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件位置
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 200, IsNullable = true)]
|
||||
public string UploadFilePosition { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件上传时间
|
||||
/// </summary>
|
||||
public DateTime? UploadFileTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件备注
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 200, IsNullable = true)]
|
||||
public string UploadFileRemark { get; set; }
|
||||
/// <summary>
|
||||
/// 创建者id
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? CreateId { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string CreateBy { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? CreateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 修改者id
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? ModifyId { get; set; }
|
||||
/// <summary>
|
||||
/// 修改人
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string ModifyBy { get; set; }
|
||||
/// <summary>
|
||||
/// 修改时间
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? ModifyTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user