DeviceManager/DeviceRepair.Models/Enum/SysModelType.cs

26 lines
344 B
C#
Raw Normal View History

2024-07-27 01:44:19 +00:00
namespace DeviceRepair.Models.Enum
2024-07-22 07:50:10 +00:00
{
public enum SysModelType
{
2024-07-27 01:44:19 +00:00
SYS_SET = 0,
USER_INFO = 1,
DEVICE = 2,
PM_PLAN = 3,
PM_PLAN_CurrentMonth = 4,
CheckForm = 5,
CustomField = 6,
Maintenance = 7,
MaintenanceAccessories = 8,
Attachment = 99
2024-07-22 07:50:10 +00:00
}
}