40 lines
839 B
C#
40 lines
839 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TBRebate
|
|||
|
{
|
|||
|
public class Enums
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 结账提示类型
|
|||
|
/// </summary>
|
|||
|
public enum SettleType
|
|||
|
{
|
|||
|
已结算提示 = 0,
|
|||
|
未结算提示 = 1
|
|||
|
}
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 比价模式
|
|||
|
///// </summary>
|
|||
|
//public enum ComparisonType
|
|||
|
//{
|
|||
|
// 开启比价接口 = 0,
|
|||
|
// 关闭比价接口 = 1
|
|||
|
//}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 比价模式
|
|||
|
/// </summary>
|
|||
|
public enum QueryComparisonType
|
|||
|
{
|
|||
|
查询使用实时佣金 = 0,
|
|||
|
查询使用比价佣金 = 1,
|
|||
|
查询使用正常佣金 = 2
|
|||
|
}
|
|||
|
}
|
|||
|
}
|