📄 sys_right.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyCRM.Models
{
public class Sys_right
{
private string right_code;
private string right_parent_code;
private string right_type;
private string right_text;
private string right_url;
private string right_tip;
public string Right_tip
{
get { return right_tip; }
set { right_tip = value; }
}
public string Right_url
{
get { return right_url; }
set { right_url = value; }
}
public string Right_text
{
get { return right_text; }
set { right_text = value; }
}
public string Right_type
{
get { return right_type; }
set { right_type = value; }
}
public string Right_parent_code
{
get { return right_parent_code; }
set { right_parent_code = value; }
}
public string Right_code
{
get { return right_code; }
set { right_code = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -