Files
SamplePreSystem-CS/SamplePre.Models/EnumType.cs

27 lines
299 B
C#
Raw Normal View History

2026-04-30 11:34:41 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public enum LiXinJiEnum
{
//待机
Wait = 0,
//运行
Run = 1,
//故障
Err = 2
}
}