using Business.Core.Attributes;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
namespace Bussiness.Model.SystemData
{
///
/// 文件上传表
///
[Comment("文件上传表")]
[CollectionName("dopbase", "sys_upload")]
public class sys_upload:Entity
{
/////
///// 主键id
/////
//[Key]
//[Comment("主键id")]
//public long upload_id { get; set; }
///
/// 文件存储路径
///
[StringLength(255)]
[Comment("文件存储路径")]
public string? file_url { get; set; }
///
/// 文件数据类型
[StringLength(255)]
[Comment("文件数据类型")]
public string? data_type { get; set; }
///
/// 文件后缀
///
[StringLength(255)]
[Comment("文件后缀")]
public string? file_type { get; set; }
///
/// 源文件名称
[StringLength(255)]
[Comment("源文件名称")]
public string? original_file_name { get; set; }
}
}