sys_right.cs
来自「客户关系管理系统源码 北大青鸟项目 系统采用多层模式开发 主要功能有:」· CS 代码 · 共 54 行
CS
54 行
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 + =
减小字号Ctrl + -
显示快捷键?