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.
16 lines
317 B
16 lines
317 B
1 year ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
public enum ShipState
|
||
|
{
|
||
|
[Description("新建")]
|
||
|
New = 0,
|
||
|
[Description("已发货")]
|
||
|
Ship =1,
|
||
|
[Description("已收货")]
|
||
|
Receive = 2,
|
||
|
[Description("已作废")]
|
||
|
Reject = -1,
|
||
|
}
|
||
|
}
|