FieldWorkClient/Models/FUpload.cs

31 lines
738 B
C#
Raw Normal View History

2025-04-02 09:30:13 +08:00
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)]
public string Id { get; set; }
2025-04-02 09:30:13 +08:00
public string FilePath { get; set; }
public string FileName { get; set; }
public long FileSize { get; set; }
public string FileSizeText { get; set; }
2025-04-02 09:30:13 +08:00
public string FileType { get; set; }
public DateTime CreateTime { get; set; }
public DateTime CompleteTime { get; set; }
public bool IsComplete { get; set; }
2025-07-05 16:46:35 +08:00
public string BucketName { get; set; }
2025-04-02 09:30:13 +08:00
}
}