using System; using System.Collections.Generic; using SqlSugar; using Myshipping.Core.Entity; using System.ComponentModel; /* * @author : whm * @date : 2024-1-22 * @desc : 往来单位固定费用 */ namespace Myshipping.Application.Entity { /// /// 往来单位固定费用 /// [SugarTable("fee_cust_template_detail", TableDescription = "往来单位固定费用")] public class FeeCustTemplateDetail : DBEntityTenant { /// /// 费用代码 /// [SugarColumn(ColumnName = "FeeCode")] [Description("费用代码")] public string FeeCode { get; set; } /// /// 费用名称 /// [SugarColumn(ColumnName = "FeeName")] [Description("费用名称")] public string FeeName{ get; set; } /// /// 客户代码 /// [SugarColumn(ColumnName = "CustomerCode")] [Description("客户代码")] public string CustomerCode { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName = "CustomerName")] [Description("客户名称")] public string CustomerName{ get; set; } /// /// 费用标准 /// [SugarColumn(ColumnName = "Unit")] [Description("费用标准")] public string Unit{ get; set; } /// /// 币别 /// [SugarColumn(ColumnName = "Currency")] [Description("币别")] public string Currency{ get; set; } /// /// 单价 /// [SugarColumn(ColumnName = "UnitPrice")] [Description("单价")] public decimal UnitPrice{ get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remark")] [Description("备注")] public string Remark{ get; set; } /// /// 排序号 /// [SugarColumn(ColumnName = "Sort")] [Description("排序号")] public int Sort{ get; set; } /// /// 汇率 /// [SugarColumn(ColumnName = "ExchangeRate")] [Description("汇率")] public decimal ExchangeRate{ get; set; } /// /// 是否开票 /// [SugarColumn(ColumnName = "IsInvoice")] [Description("是否开票")] public bool IsInvoice{ get; set; } /// /// 是否垫付 /// [SugarColumn(ColumnName = "IsAdvancedPay")] [Description("是否垫付")] public bool IsAdvancedPay{ get; set; } /// /// Frt PP CC /// [SugarColumn(ColumnName = "FeeFrt")] [Description("Frt PP CC")] public string FeeFrt{ get; set; } /// /// 税率 /// [SugarColumn(ColumnName = "TaxRate")] [Description("税率")] public decimal TaxRate{ get; set; } /// /// 财务税率 /// [SugarColumn(ColumnName = "AccTaxRate")] [Description("财务税率")] public decimal AccTaxRate{ get; set; } /// /// 租户名称 /// [SugarColumn(ColumnName = "TenantName")] [Description("租户名称")] public string TenantName{ get; set; } } }