12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace YiSha.Enum.ZX
- {
-
-
-
- public enum ZxIsDeleteEnum
- {
-
-
-
- [Description("正常")]
- 正常 = 0,
-
-
-
- [Description("已删除")]
- 已删除 = 1
- }
- }
|