12345678910111213141516171819 |
- 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 FrqCenterMode
- {
- [Description("不固定")]
- NotFix,
- [Description("固定不控")]
- FixNotCtrl,
- [Description("固定可控")]
- FixCtrl
- }
- }
|