old_flsystem/应用/TBRebate/Enums.cs

40 lines
839 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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
}
}
}