/** 版本信息模板在安装目录下,可自行修改。 * admin_user.cs * * 功 能: N/A * 类 名: admin_user * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2022/5/24 19:43:56 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataModel.Model { /// /// 已废弃 /// //[Serializable] public partial class admin_user { public admin_user() {} #region Model private string _user_id; private string _login_name; private string _password; private string _real_name; private string _nick_name; private string _sex; private DateTime? _birth_date; private string _mobile; private string _phone; private string _email; private string _job_number; private string _id_card; private string _photo; private int _position; private int _is_lock; private string _job_state; private DateTime? _job_time; private DateTime? _create_time; private string _dep_id; private string _major; private string _grade; private decimal? _salary; private string _fault_id; private string _batch_id; private string _batch_name; private DateTime? _batch_time; private string _r1; private string _r2; private string _r3; private string _r4; private string _r5; /// /// /// public string user_id { set{ _user_id=value;} get{return _user_id;} } /// /// /// public string login_name { set{ _login_name=value;} get{return _login_name;} } /// /// /// public string password { set{ _password=value;} get{return _password;} } /// /// /// public string real_name { set{ _real_name=value;} get{return _real_name;} } /// /// /// public string nick_name { set{ _nick_name=value;} get{return _nick_name;} } /// /// /// public string sex { set{ _sex=value;} get{return _sex;} } /// /// /// public DateTime? birth_date { set{ _birth_date=value;} get{return _birth_date;} } /// /// /// public string mobile { set{ _mobile=value;} get{return _mobile;} } /// /// /// public string phone { set{ _phone=value;} get{return _phone;} } /// /// /// public string email { set{ _email=value;} get{return _email;} } /// /// /// public string job_number { set{ _job_number=value;} get{return _job_number;} } /// /// /// public string id_card { set{ _id_card=value;} get{return _id_card;} } /// /// /// public string photo { set{ _photo=value;} get{return _photo;} } /// /// /// public int position { set{ _position=value;} get{return _position;} } /// /// /// public int is_lock { set{ _is_lock=value;} get{return _is_lock;} } /// /// /// public string job_state { set{ _job_state=value;} get{return _job_state;} } /// /// /// public DateTime? job_time { set{ _job_time=value;} get{return _job_time;} } /// /// /// public DateTime? create_time { set{ _create_time=value;} get{return _create_time;} } /// /// /// public string dep_id { set{ _dep_id=value;} get{return _dep_id;} } /// /// /// public string major { set{ _major=value;} get{return _major;} } /// /// /// public string grade { set{ _grade=value;} get{return _grade;} } /// /// /// public decimal? salary { set{ _salary=value;} get{return _salary;} } /// /// /// public string fault_id { set{ _fault_id=value;} get{return _fault_id;} } /// /// /// public string batch_id { set{ _batch_id=value;} get{return _batch_id;} } /// /// /// public string batch_name { set{ _batch_name=value;} get{return _batch_name;} } /// /// /// public DateTime? batch_time { set{ _batch_time=value;} get{return _batch_time;} } /// /// /// public string r1 { set{ _r1=value;} get{return _r1;} } /// /// /// public string r2 { set{ _r2=value;} get{return _r2;} } /// /// /// public string r3 { set{ _r3=value;} get{return _r3;} } /// /// /// public string r4 { set{ _r4=value;} get{return _r4;} } /// /// /// public string r5 { set{ _r5=value;} get{return _r5;} } #endregion Model } }