📄 bas_dict.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyCRM.Models
{
public class Bas_dict
{
private int dict_id;
private string dict_type;
private string dict_item;
private string dict_value;
private bool dict_is_editable;
public bool Dict_is_editable
{
get { return dict_is_editable; }
set { dict_is_editable = value; }
}
public string Dict_value
{
get { return dict_value; }
set { dict_value = value; }
}
public string Dict_item
{
get { return dict_item; }
set { dict_item = value; }
}
public string Dict_type
{
get { return dict_type; }
set { dict_type = value; }
}
public int Dict_id
{
get { return dict_id; }
set { dict_id = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -