namespace SKMC.Api.Client.Access
{
///
/// 权限列表 - 配合数据表SKMC_CLIENT_ACCESS
///
public class ClientAccessCodes
{
#region 普通权限
///
/// 主界面可视
///
public static string MainView = "MainView";
///
/// 主界面可操作
///
public static string MainOper = "MainOper";
///
/// 电气界面可视
///
public static string ElectricView = "ElectricView";
///
/// 电机界面可视
///
public static string MotionAxisView = "MotionAxisView";
///
/// 电机界面可操作
///
public static string MotionAxisOper = "MotionAxisOper";
///
/// IO界面可视
///
public static string MotionIOView = "MotionIOView";
///
/// IO界面可操作
///
public static string MotionDoOper = "MotionDoOper";
///
/// 机台配置界面可视
///
public static string MachineConfigView = "MachineConfigView";
///
/// 机台配置界面可操作
///
public static string MachineConfigOper = "MachineConfigOper";
///
/// 机台驱动器参数修改界面可视
///
public static string MachineDriverEditView = "MachineDriverEditView";
///
/// 机台驱动器参数修改界面可操作
///
public static string MachineDriverEditOper = "MachineDriverEditOper";
///
/// 配方界面可视
///
public static string RecipeView = "RecipeView";
///
/// 配方参数界面可视
///
public static string RecipeBaseConfigView = "RecipeBaseConfigView";
///
/// 配方参数界面可操作
///
public static string RecipeBaseConfigOper = "RecipeBaseConfigOper";
///
/// 配方高级参数界面可视
///
public static string RecipeAdvConfigView = "RecipeAdvConfigView";
///
/// 配方高级参数界面可操作
///
public static string RecipeAdvConfigOper = "RecipeAdvConfigOper";
///
/// 配方点位界面可视
///
public static string RecipePointView = "RecipePointView";
///
/// 配方点位界面可操作
///
public static string RecipePointOper = "RecipePointOper";
///
/// 速度设置界面可视
///
public static string RecipeSpeedView = "RecipeSpeedView";
///
/// 速度设置界面可操作
///
public static string RecipeSpeedOper = "RecipeSpeedOper";
///
/// 差异管理界面可视
///
public static string RecipeDifferenceView = "RecipeDifferenceView";
///
/// 差异管理界面可操作
///
public static string RecipeDifferenceOper = "RecipeDifferenceOper";
///
/// 手动界面可视
///
public static string MannualView = "MannualView";
///
/// 手动界面可操作
///
public static string MannualOper = "MannualOper";
///
/// 调试界面可视
///
public static string DevelopView = "DevelopView";
///
/// 调试界面可操作
///
public static string DevelopOper = "DevelopOper";
///
/// 生产记录界面可视
///
public static string RecordView = "RecordView";
///
/// 生产记录界面可操作
///
public static string RecordOper = "RecordOper";
#endregion
#region 管理权限
public static string SystemManageView = "SystemManageView";
public static string SystemManageOper = "SystemManageOper";
public static string AccessManageView = "AccessManageView";
public static string AccessManageOper = "AccessManageOper";
#endregion
}
}