42 lines
749 B
C#
42 lines
749 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace StandardDomeNewApp.Enums
|
|||
|
|
{
|
|||
|
|
public class CowainEnum
|
|||
|
|
{
|
|||
|
|
public enum DatabaseType
|
|||
|
|
{
|
|||
|
|
SQLModel,
|
|||
|
|
MySQLModel
|
|||
|
|
}
|
|||
|
|
public enum Language
|
|||
|
|
{
|
|||
|
|
English,
|
|||
|
|
Chinese
|
|||
|
|
}
|
|||
|
|
public enum LogLevel
|
|||
|
|
{
|
|||
|
|
OFF,
|
|||
|
|
FATAL,
|
|||
|
|
ERROR,
|
|||
|
|
WARN,
|
|||
|
|
INFO,
|
|||
|
|
DEBUG,
|
|||
|
|
ALL,
|
|||
|
|
OPERATE,
|
|||
|
|
}
|
|||
|
|
public enum ParaType
|
|||
|
|
{
|
|||
|
|
Temperature,
|
|||
|
|
Anemometer,
|
|||
|
|
Vacuum,
|
|||
|
|
Weight,
|
|||
|
|
Energy,//addw
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|