Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/Entities/OA/SystemInfo/SysFileinfo.cs

62 lines
1.5 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 SqlSugar;
namespace LearningOfficer.OA.Core.Entities.OA.SystemInfo
{
/// <summary>
/// 文件记录表
///</summary>
[SugarTable("sys_fileinfo")]
public class SysFileinfo : BaseEntity
{
/// <summary>
/// 备 注:原文件名
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "file_name")]
public string? FileName { get; set; }
/// <summary>
/// 备 注:文件所在路径
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "file_path")]
public string? FilePath { get; set; }
/// <summary>
/// 备 注:文件类型
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "file_type")]
public string? FileType { get; set; }
/// <summary>
/// 备 注:上传用户id
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "adduser")]
public long? Adduser { get; set; }
/// <summary>
/// 备 注:上传时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "addtime")]
public DateTime? Addtime { get; set; }
/// <summary>
/// 备 注:文件大小(文件大小-kb不足1kb为1kb
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "file_size")]
public long? File_size { get; set; }
}
}