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.

34 lines
661 B
C#

9 months ago
namespace EntrustSettle.Model
{
/// <summary>
/// 订单业务类型
/// </summary>
public enum OrderBusinessTypeEnum
{
= 1,
= 2
}
/// <summary>
/// 订单状态
/// </summary>
public enum OrderStatusEnum
{
= -1,
9 months ago
= 0,
= 1,
= 2,
= 3,
= 4,
= 99
}
/// <summary>
/// 附件类型
/// </summary>
public enum FileTypeEnum
{
= 1,
= 2,
= 3,
= 4
9 months ago
}
}