123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShakerManger.Data
- {
- public enum ShakerViewType
- {
- [Description("None")]
- None,
- [Description("功放控制")]
- ShakerControl,
- [Description("运行信息")]
- CoolingWater,
- [Description("曲线")]
- Plot,
- }
- }
|