You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
537 B
28 lines
537 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.Enums
|
|
{
|
|
public enum OrderType
|
|
{
|
|
[Description("日程订单")]
|
|
New = 0,
|
|
[Description("离散订单")]
|
|
Release = 1,
|
|
|
|
}
|
|
public enum OrderStatus
|
|
{
|
|
[Description("新建")]
|
|
New = 0,
|
|
[Description("发布")]
|
|
Publish = 1,
|
|
[Description("取消发布")]
|
|
Cancel = 2,
|
|
|
|
}
|
|
}
|
|
|