29 lines
657 B
C#
29 lines
657 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hopetry.Models
|
|
{
|
|
[SugarTable("f_upload")]
|
|
public class FUpload
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
public string FilePath { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public long FileSize { get; set; }
|
|
|
|
public string FileType { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
public DateTime CompleteTime { get; set; }
|
|
public bool IsComplete { get; set; }
|
|
}
|
|
}
|