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.
21 lines
428 B
C#
21 lines
428 B
C#
using SqlSugar;
|
|
|
|
|
|
namespace EntrustSettle.Model.Models
|
|
{
|
|
///<summary>
|
|
///订单附件表
|
|
///</summary>
|
|
[SugarTable("order_annex")]
|
|
public class OrderAnnex : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 订单主键
|
|
/// </summary>
|
|
public long OrderId { get; set; }
|
|
/// <summary>
|
|
/// 文件主键
|
|
/// </summary>
|
|
public long AnnexId { get; set; }
|
|
}
|
|
} |