123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace GDNXFD.Data
- {
- public enum AlertObjectType
- {
- WindTurbine = 1, //风机
- WindPowerStation = 2, //风场
- Project = 3, //工程
- Line = 4, //线路
- Electrical = 5 //电气
- }
- }
|