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.
24 lines
578 B
C#
24 lines
578 B
C#
using SqlSugar;
|
|
|
|
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:发票
|
|
/// </summary>
|
|
public byte? Type { get; set; }
|
|
}
|
|
} |