DeviceManager/DeviceRepair.Models/Enum/SysModelType.cs

44 lines
606 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,
2024-08-02 02:52:45 +00:00
Tag = 9,
Email = 10,
AM_PLAN = 11,
PLAN_Pregress = 12,
Get_EquiAnnualPlans = 13,
AM_PLAN_Scheduler = 14,
SFC_Batch_PE_QE_Email = 15,
Get_SFC_Auths = 16,
2024-08-06 06:11:07 +00:00
Get_JumpCheck = 17,
2024-07-27 01:44:19 +00:00
Attachment = 99
2024-07-22 07:50:10 +00:00
}
}