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.

74 lines
2.1 KiB
C#

using SqlSugar;
namespace EntrustSettle.Model.Models
{
///<summary>
///订单表
///</summary>
[SugarTable("order")]
public class Order : BaseEntity
{
/// <summary>
/// 平台方业务主键
/// </summary>
public long Bsno { get; set; }
/// <summary>
/// 提单号
/// </summary>
public string Mblno { get; set; }
/// <summary>
/// 公司Id
/// </summary>
public string CompanyId { get; set; }
/// <summary>
/// 公司名称
/// </summary>
public string CompanyName { get; set; }
/// <summary>
/// 联系人Id
/// </summary>
public string ContactId { get; set; }
/// <summary>
/// 联系人姓名
/// </summary>
public string ContactName { get; set; }
/// <summary>
/// 联系人电话
/// </summary>
public string ContactTel { get; set; }
/// <summary>
/// 服务类型 1:码头堆存缴费 2:查验代理缴费 3:码头换船缴费
/// </summary>
public int ServiceType { get; set; }
/// <summary>
/// 费用项目列表(使用,连接) 1:港杂费 2:堆存费
/// </summary>
public string ProjectType { get; set; }
/// <summary>
/// 缴费金额
/// </summary>
public decimal? Amount { get; set; }
/// <summary>
/// 是否已提交平台
/// </summary>
public bool IsSend { get; set; }
/// <summary>
/// 当前业务状态 0:已下单 1:已接单 2:待缴费 3:已缴费 4:已完结
/// </summary>
public int? Status { get; set; }
/// <summary>
/// 客户备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 是否邮寄(如果附件为发票)
/// </summary>
public bool? MailFlag { get; set; }
/// <summary>
/// 快递单号(如果附件为发票,且已邮寄)
/// </summary>
public string MailBillNo { get; set; }
}
}