| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum ImportState
- {
- [Description("未导入")]
- None,
- [Description("导入中")]
- Import,
- [Description("导入成功")]
- Success,
- [Description("导入失败")]
- Fail
- }
- }
|