using SqlSugar;
namespace OpenAuth.Repository.Domain;
using System;
///
/// 媒体文件实体类
///
[SugarTable("drone_dbfileinfo")]
public class DbfineInfo
{
///
/// 主键ID
///
[SugarColumn(IsPrimaryKey = true, ColumnName = "id")]
public string id { get; set; }
///
/// 计划ID
///
public string taskid { get; set; }
///
/// 区域代码
///
public string regioncode { get; set; }
///
/// 数据包大小
///
public int size { get; set; }
///
/// 图斑数量
///
public int count { get; set; }
///
/// 外业附件个数
///
public int attachment_count { get; set; }
///
/// 数据包扩展名
///
public string extension { get; set; }
///
/// 文件哈希值
///
public string hash { get; set; }
///
/// 数据包下载地址
///
public string url { get; set; }
///
/// 数据包的解密密钥
///
public string key { get; set; }
///
/// 签章数据
///
public string sign { get; set; }
public int? timestamp { get; set; }
}