26 lines
344 B
C#
26 lines
344 B
C#
namespace DeviceRepair.Models.Enum
|
|
{
|
|
public enum SysModelType
|
|
{
|
|
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
|
|
}
|
|
}
|