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.
77 lines
1.6 KiB
C#
77 lines
1.6 KiB
C#
using System.ComponentModel;
|
|
|
|
namespace DS.Module.Core.Enums
|
|
{
|
|
/// <summary>
|
|
/// 结算模式
|
|
/// </summary>
|
|
public enum SettlementMode
|
|
{
|
|
/// <summary>
|
|
/// 付费申请
|
|
/// </summary>
|
|
[Description("付费申请")]
|
|
Payment = 1,
|
|
|
|
/// <summary>
|
|
/// 收费申请
|
|
/// </summary>
|
|
[Description("收费申请")]
|
|
Charge = 2,
|
|
|
|
/// <summary>
|
|
/// 自由结算
|
|
/// </summary>
|
|
[Description("自由结算")]
|
|
FreeSettlement = 3,
|
|
|
|
/// <summary>
|
|
/// 发票结算
|
|
/// </summary>
|
|
[Description("发票结算")]
|
|
InvoiceSettlement = 4,
|
|
|
|
/// <summary>
|
|
/// 付费发票结算
|
|
/// </summary>
|
|
[Description("付费发票结算")]
|
|
PaymentInvoiceSettlement = 5
|
|
}
|
|
|
|
/// <summary>
|
|
/// 结算单据类型
|
|
/// </summary>
|
|
public enum SettlementBillType
|
|
{
|
|
/// <summary>
|
|
/// 收费结算
|
|
/// </summary>
|
|
[Description("收费结算")]
|
|
Charge = 1,
|
|
|
|
/// <summary>
|
|
/// 付费结算
|
|
/// </summary>
|
|
[Description("付费结算")]
|
|
Payment = 2
|
|
}
|
|
|
|
/// <summary>
|
|
/// 结算业务类别
|
|
/// </summary>
|
|
public enum SettlementCategory
|
|
{
|
|
/// <summary>
|
|
/// 货运收入
|
|
/// </summary>
|
|
[Description("货运收入")]
|
|
FreightIncome = 1,
|
|
|
|
/// <summary>
|
|
/// 利息收入
|
|
/// </summary>
|
|
[Description("利息收入")]
|
|
InterestIncome = 2
|
|
}
|
|
}
|