You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
namespace EntrustSettle.Model.Models
{
///<summary>
///附件表
///</summary>
[SugarTable("annex")]
public class Annex : BaseEntity
{
/// <summary>
/// 附件原始名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 附件保存路径
/// </summary>
public string Path { get; set; }
/// <summary>
/// 附件类型 1:原始附件 2:反馈附件 3:账单 4:发票 5:外部往来单据
/// </summary>
public int Type { get; set; }
/// <summary>
/// 外部系统的备注(文件类型为外部往来单据时会使用此字段)
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 外部系统的业务发生时间(文件类型为外部往来单据时会使用此字段)
/// </summary>
public DateTime? BusinessTime { get; set; }
/// <summary>
/// 外部系统的文件Id文件类型为外部往来单据时会使用此字段
/// </summary>
public long? OuterFileId { get; set; }
/// <summary>
/// 用于外部文件下载时确认文件及验证
/// </summary>
public string Key { get; set; }
}
}