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.
BookingHeChuan/Myshipping.Application/Entity/ExpressDeliveryFee.cs

49 lines
1.2 KiB
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 快递费用
/// </summary>
[SugarTable("express_delivery_fee")]
[Description("快递费用")]
public class ExpressDeliveryFee : DBEntityTenant
{
/// <summary>
/// 快递订单记录主键
/// </summary>
public long? OrderId { get; set; }
/// <summary>
/// 快递运单号
/// </summary>
public string KDNO { get; set; }
/// <summary>
/// 费用类型编码
/// </summary>
public string FeeTypeCode { get; set; }
/// <summary>
/// 费用类型名称
/// </summary>
public string FeeTypeName { get; set; }
/// <summary>
/// 费用金额
/// </summary>
public decimal FeeAmount { get; set; }
/// <summary>
/// 付款账号
/// </summary>
public string Account { get; set; }
/// <summary>
/// 结费类型代码1现结2月结3到付
/// </summary>
public string SettleAccountsTypeCode { get; set; }
}
}