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.
29 lines
473 B
29 lines
473 B
1 year ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
public enum DataState
|
||
|
{
|
||
|
[Description("无效")]
|
||
|
Disabled = 0,
|
||
|
[Description("有效")]
|
||
|
Enabled = 1,
|
||
|
}
|
||
|
|
||
|
public enum FormState
|
||
|
{
|
||
|
[Description("开放")]
|
||
|
开放 = 1,
|
||
|
[Description("关闭")]
|
||
|
关闭 = 0,
|
||
|
|
||
|
}
|
||
|
|
||
|
public enum BillState
|
||
|
{
|
||
|
Cancel = -1,
|
||
|
New = 0,
|
||
|
Process = 1,
|
||
|
Finish = 2,
|
||
|
}
|
||
|
}
|