bas_dict.cs

来自「客户关系管理系统 客户关系管理系统」· CS 代码 · 共 47 行

CS
47
字号
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 + =
减小字号Ctrl + -
显示快捷键?