using Myshipping.Core;
using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Application.Service.Fee.Dto
{
public class FeeCustTemplateDto
{
public long Id { get; set; }
///
/// 费用代码
///
[SugarColumn(ColumnName = "FeeCode")]
[Description("费用代码")]
public string FeeCode { get; set; }
///
/// 费用名称
///
[Description("费用名称")]
public string FeeName { get; set; }
///
/// 客户编码
///
[Description("客户编码")]
public string CustomerCode { get; set; }
///
/// 客户名称
///
[Description("客户名称")]
public string CustomerName { get; set; }
///
/// 费用标准
///
[Description("费用标准")]
public string Unit { get; set; }
///
/// 币别
///
[Description("币别")]
public string Currency { get; set; }
///
/// 单价
///
[Description("单价")]
public decimal UnitPrice { get; set; }
///
/// 备注
///
[Description("备注")]
public string Remark { get; set; }
///
/// 排序号
///
[Description("排序号")]
public int Sort { get; set; }
///
/// 汇率
///
[SugarColumn(ColumnName = "ExchangeRate")]
[Description("汇率")]
public decimal ExchangeRate { get; set; }
///
/// 是否开票
///
[Description("是否开票")]
public bool IsInvoice { get; set; }
///
/// 是否垫付
///
[Description("是否垫付")]
public bool IsAdvancedPay { get; set; }
///
/// Frt PP CC
///
[Description("Frt PP CC")]
public string FeeFrt { get; set; }
///
/// 税率
///
[Description("税率")]
public decimal TaxRate { get; set; }
///
/// 财务税率
///
[Description("财务税率")]
public decimal AccTaxRate { get; set; }
}
public class FeeCustTemplatePageInput : PageInputBase
{
}
}