dictionary_view.cs
来自「HR系统,人事,能力素质,考勤,薪资等,AJAX,ASP.NET」· CS 代码 · 共 36 行
CS
36 行
using System;namespace iSun.Entitys{ [Table("Dictionary_View","DictionaryId")] public class dictionary_view { public dictionary_view() { } private System.String _Caption; public System.String Caption { get { return _Caption; } set { _Caption = value; } } private System.String _DicValue; public System.String DicValue { get { return _DicValue; } set { _DicValue = value; } } private System.Int32 _DictionaryId; public System.Int32 DictionaryId { get { return _DictionaryId; } set { _DictionaryId = value; } } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?