using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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 DeviceConfigView = "DeviceConfigView"; /// /// 流程界面可视 /// public static string ProcessView = "ProcessView"; /// /// 流程参数界面可视 /// public static string ProcessBaseConfigView = "ProcessBaseConfigView"; /// /// 流程参数界面可操作 /// public static string ProcessBaseConfigOper = "ProcessBaseConfigOper"; /// /// 流程高级参数界面可视 /// public static string ProcessAdvConfigView = "ProcessAdvConfigView"; /// /// 流程高级参数界面可操作 /// public static string ProcessAdvConfigOper = "ProcessAdvConfigOper"; /// /// 流程点位界面可视 /// public static string ProcessPointView = "ProcessPointView"; /// /// 流程点位界面可操作 /// public static string ProcessPointOper = "ProcessPointOper"; /// /// 速度设置界面可视 /// public static string ProcessSpeedView = "ProcessSpeedView"; /// /// 速度设置界面可操作 /// public static string ProcessSpeedOper = "ProcessSpeedOper"; /// /// 手动界面可视 /// 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 } }