Files
2026-04-30 11:34:41 +08:00

27 lines
299 B
C#

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
}
}