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.
37 lines
1011 B
C#
37 lines
1011 B
C#
using SqlSugar;
|
|
|
|
|
|
namespace EntrustSettle.Model.Models
|
|
{
|
|
///<summary>
|
|
///订单附件表
|
|
///</summary>
|
|
[SugarTable("order_file", "main")]
|
|
public class OrderFile : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 订单主键
|
|
/// </summary>
|
|
public long? Pid { get; set; }
|
|
/// <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; }
|
|
/// <summary>
|
|
/// 是否邮寄(如果附件为发票)
|
|
/// </summary>
|
|
public bool? MailFlag { get; set; }
|
|
/// <summary>
|
|
/// 快递单号(如果附件为发票,且已邮寄)
|
|
/// </summary>
|
|
public string MailBillNo { get; set; }
|
|
}
|
|
} |