using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 员工类
///
public class Users
{
int id;
///
/// 主键
///
public int Id
{
get { return id; }
set { id = value; }
}
string cnName;
///
/// 中文姓名
///
public string CnName
{
get { return cnName; }
set { cnName = value; }
}
string enName;
///
/// 英文姓名
///
public string EnName
{
get { return enName; }
set { enName = value; }
}
string number;
///
/// 员工号
///
public string Number
{
get { return number; }
set { number = value; }
}
int did;
///
/// 设置数据类外键
///
public int Did
{
get { return did; }
set { did = value; }
}
string password;
///
/// 密码
///
public string Password
{
get { return password; }
set { password = value; }
}
int sex;
///
/// 性别
///
public int Sex
{
get { return sex; }
set { sex = value; }
}
string post;
///
/// 职位
///
public string Post
{
get { return post; }
set { post = value; }
}
string ext;
///
/// 分机号
///
public string Ext
{
get { return ext; }
set { ext = value; }
}
string phone;
///
/// 手机号
///
public string Phone
{
get { return phone; }
set { phone = value; }
}
string urgentPhone;
///
/// 紧急联络电话
///
public string UrgentPhone
{
get { return urgentPhone; }
set { urgentPhone = value; }
}
string email;
///
/// 电子邮箱
///
public string Email
{
get { return email; }
set { email = value; }
}
string address;
///
/// 目前所在地区
///
public string Address
{
get { return address; }
set { address = value; }
}
DateTime edate;
///
/// 入职日期
///
public DateTime Edate
{
get { return edate; }
set { edate = value; }
}
DateTime rdate;
///
/// 离职日期
///
public DateTime Rdate
{
get { return rdate; }
set { rdate = value; }
}
int seniority;
///
/// 工龄
///
public int Seniority
{
get { return seniority; }
set { seniority = value; }
}
string remark;
///
/// 备注
///
public string Remark
{
get { return remark; }
set { remark = value; }
}
int isDel;
///
/// 删除标识
///
public int IsDel
{
get { return isDel; }
set { isDel = value; }
}
int company;
///
/// 所属公司
///
public int Company
{
get { return company; }
set { company = value; }
}
string birthday;
///
/// 出生日期
///
public string Birthday
{
get { return birthday; }
set { birthday = value; }
}
string iDCard;
///
/// 身份证号码
///
public string IDCard
{
get { return iDCard; }
set { iDCard = value; }
}
string startWorkDate;
///
/// 最初参加工作时间
///
public string StartWorkDate
{
get { return startWorkDate; }
set { startWorkDate = value; }
}
string education;
///
/// 学历
///
public string Education
{
get { return education; }
set { education = value; }
}
string professional;
///
/// 专业
///
public string Professional
{
get { return professional; }
set { professional = value; }
}
string graduateInstitutions;
///
/// 毕业院校
///
public string GraduateInstitutions
{
get { return graduateInstitutions; }
set { graduateInstitutions = value; }
}
string theOrAdultEducation;
///
/// 统招/成教
///
public string TheOrAdultEducation
{
get { return theOrAdultEducation; }
set { theOrAdultEducation = value; }
}
string maritalStatus;
///
/// 婚姻状况
///
public string MaritalStatus
{
get { return maritalStatus; }
set { maritalStatus = value; }
}
string homeAddress;
///
/// 家庭地址
///
public string HomeAddress
{
get { return homeAddress; }
set { homeAddress = value; }
}
string usePeriod;
///
/// 试用期限
///
public string UsePeriod
{
get { return usePeriod; }
set { usePeriod = value; }
}
string workExperience;
///
/// 工作经历单位
///
public string WorkExperience
{
get { return workExperience; }
set { workExperience = value; }
}
string certificateTime;
///
/// 证书时间
///
public string CertificateTime
{
get { return certificateTime; }
set { certificateTime = value; }
}
string certificate;
///
/// 专业培训及资格证书
///
public string Certificate
{
get { return certificate; }
set { certificate = value; }
}
}
}