?? 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 + -