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.
26 lines
450 B
26 lines
450 B
1 year ago
|
namespace Win.Sfs.Shared.Enums
|
||
|
{
|
||
|
public enum EnumDocumentStatus
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 新增
|
||
|
/// </summary>
|
||
|
New = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 处理中
|
||
|
/// </summary>
|
||
|
Process = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 完结
|
||
|
/// </summary>
|
||
|
Finish = 5,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 作废
|
||
|
/// </summary>
|
||
|
Cancel = 9,
|
||
|
|
||
|
}
|
||
|
}
|