using Business.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Numerics;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.SystemData
{
///
/// 员工表
///
public class sys_staff:BaseEntity
{
///
/// 主键id
///
[Key]
public long staff_id { get; set; }
///
/// 员工编码
///
[StringLength(50)]
public string staff_no { get; set; }
///
/// 用户id
///
public long user_id { get; set; }
///
/// 用户名称
///
[StringLength(255)]
public string user_name { get; set; }
///
/// 中文名
///
[StringLength(255)]
public string chinese_name { get; set; }
///
/// 电话
///
[StringLength(80)]
public string phone { get; set; }
///
/// 照片
///
[StringLength(255)]
public string photo { get; set; }
///
/// 组织名称
///
[StringLength(255)]
public string org_name { get; set; }
///
/// 生日
///
public DateOnly birthday { get; set; }
///
/// 邮箱
///
[StringLength(255)]
public string email { get; set; }
///
/// 性别
///
[StringLength(1)]
public string sex { get; set; }
///
/// 卡号
///
[StringLength(50)]
public string card_no { get; set; }
///
/// 工号
///
[StringLength(50)]
public string emp_no { get; set; }
///
/// 身份证号
///
[StringLength(50)]
public string id_no { get; set; }
///
/// 移动电话
///
[StringLength(50)]
public string mobile { get; set; }
///
/// 政治面貌
///
[StringLength(50)]
public string politics { get; set; }
///
/// 备注
///
[StringLength(255)]
public string staff_remark { get; set; }
///
/// 部门id
///
public long dept_id { get; set; }
///
/// 部门编号
///
[StringLength(50)]
public string dept_no { get; set; }
///
/// 部门名称
///
[StringLength(255)]
public string dept_name { get; set; }
///
/// 数据状态标识 1启用 0停用
///
[StringLength(255)]
public bool state { get; set; }
}
}