⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xinxibiao.cs

📁 人力管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;

namespace Entity
{
    public class xinxibiao
    {
        string _id,_name,_sex,_birth,_id_card,_telephone,_address,_state,_jian,_bei,_indate,_begin,_end;
        int _bu, _wei, _cheng;
        double _gonzi;
        byte[] _image;

        public string ID
        {
            get {   return this._id; }
            set { this._id = value; }

        }
        public string Name
        {
            get { return this._name; }
            set { this._name = value; }

        }
        public string Sex
        {
            get { return this._sex; }
            set { this._sex = value; }

        }
        public string Birth
        {
            get { return this._birth; }
            set { this._birth = value; }

        }
        public string ID_card
        {
            get { return this._id_card; }
            set { this._id_card = value; }

        }
        public string Telephone
        {
            get { return this._telephone; }
            set { this._telephone = value; }

        }
        public string Address
        {
            get { return this._address; }
            set { this._address = value; }

        }
        public string State                          //员工状态
        {
            get { return this._state; }
            set { this._state = value; }

        }
        public string Jian                          //????
        {
            get { return this._jian; }
            set { this._jian = value; }

        }
        public string Bei                            //????
        {
            get { return this._bei; }
            set { this._bei = value; }

        }
        public byte[] Image          //图片地址
        {
            get { return this._image; }
            set { this._image = value; }

        }
        public string InDate
        {
            get { return this._indate; }
            set { this._indate = value; }

        }
        public string Begin
        {
            get { return this._begin; }
            set { this._begin = value; }

        }
        public string End
        {
            get { return this._end; }
            set { this._end = value; }

        }
        public int BuMen
        {
            get { return this._bu; }
            set { this._bu = value; }
        }
        public int Zhiwei
        {
            get { return this._wei; }
            set { this._wei = value; }
        }
        public int Cheng
        {
            get { return this._cheng; }
            set { this._cheng = value; }
        }
        public double GZ
        {
            get { return this._gonzi; }
            set { this._gonzi = value; }

        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -