You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

204 lines
5.1 KiB

10 months ago
package com.dsideal.base.Bean;
10 months ago
import lombok.Setter;
import lombok.Getter;
//
public class TSysLoginperson {
// 人员ID
@Getter
@Setter
10 months ago
private String person_id;
10 months ago
// 人员姓名
@Getter
@Setter
10 months ago
private String person_name;
10 months ago
// 身份ID
@Getter
@Setter
10 months ago
private int identity_id;
10 months ago
// 登录名
@Getter
@Setter
10 months ago
private String login_name;
10 months ago
// 密码
@Getter
@Setter
10 months ago
private String pwd;
10 months ago
// 原始密码
@Getter
@Setter
10 months ago
private String original_pwd;
10 months ago
// md5后的密码用于CAS验证
@Getter
@Setter
10 months ago
private String pwdmd5;
10 months ago
// 性别
@Getter
@Setter
10 months ago
private int xb;
10 months ago
// 民族
@Getter
@Setter
10 months ago
private String mz;
10 months ago
// 政治面貌
@Getter
@Setter
10 months ago
private String zzmm;
10 months ago
// 身份证号
@Getter
@Setter
10 months ago
private String idcard_code;
10 months ago
// 出生日期
@Getter
@Setter
10 months ago
private java.util.Date birthday;
10 months ago
// 创建时间
@Getter
@Setter
10 months ago
private java.util.Date create_time;
10 months ago
// 在单位内部的排序号
@Getter
@Setter
10 months ago
private int sort_id;
10 months ago
// 手机号
@Getter
@Setter
10 months ago
private String telephone;
10 months ago
// 绑定微信的openid
@Getter
@Setter
10 months ago
private String wx_openid;
10 months ago
// 绑定QQ的openid
@Getter
@Setter
10 months ago
private String qq_openid;
10 months ago
// 电子邮箱
@Getter
@Setter
10 months ago
private String email;
10 months ago
// 人员状态
@Getter
@Setter
10 months ago
private String status_code;
10 months ago
// 是不是可用
@Getter
@Setter
10 months ago
private int b_use;
10 months ago
// 身份主键序列
@Getter
@Setter
10 months ago
private int identity_pk_num;
10 months ago
// 市ID
@Getter
@Setter
10 months ago
private String city_id;
10 months ago
// 县区ID
@Getter
@Setter
10 months ago
private String area_id;
10 months ago
// 主校ID
@Getter
@Setter
10 months ago
private String main_school_id;
10 months ago
// 单位ID
@Getter
@Setter
10 months ago
private String bureau_id;
10 months ago
// 所在部门
@Getter
@Setter
10 months ago
private String org_id;
10 months ago
// 学生所在班级
@Getter
@Setter
10 months ago
private String s_class_id;
10 months ago
// 学籍号 规定为16位
@Getter
@Setter
10 months ago
private String s_xjh;
10 months ago
// 学籍辅号 规定为13位
@Getter
@Setter
10 months ago
private String s_xjfh;
10 months ago
// 学生来源 1正常入学 2借读 9其他
@Getter
@Setter
10 months ago
private int s_source;
10 months ago
// 学生是哪个学段的
@Getter
@Setter
10 months ago
private int s_stage_id;
10 months ago
// 进城务工随迁子女
@Getter
@Setter
10 months ago
private int s_suiqian;
10 months ago
// 是否留守儿童
@Getter
@Setter
10 months ago
private int s_liushou;
10 months ago
// 是否孤儿
@Getter
@Setter
10 months ago
private int s_guer;
10 months ago
// 是否残疾
@Getter
@Setter
10 months ago
private int s_canji;
10 months ago
// 如果是家长,那么他是哪个孩子的家长
@Getter
@Setter
10 months ago
private String p_child_id;
10 months ago
// 职务与分管,json形式
@Getter
@Setter
10 months ago
private String t_duty_charge;
10 months ago
// 最高学历 字典表t_dm_xl
@Getter
@Setter
10 months ago
private String t_xl_id;
10 months ago
// 职称
@Getter
@Setter
10 months ago
private String t_zc_id;
10 months ago
// 学段
@Getter
@Setter
10 months ago
private int t_stage_id;
10 months ago
// 主教学科
@Getter
@Setter
10 months ago
private int t_subject_id;
10 months ago
// 从教年月日
@Getter
@Setter
10 months ago
private java.util.Date t_teaching_date;
10 months ago
// 是否骨干教师
@Getter
@Setter
10 months ago
private int t_gugan;
10 months ago
//
@Getter
@Setter
10 months ago
private java.util.Date update_ts;
10 months ago
// 整数主键
@Getter
@Setter
10 months ago
private int id_int;
10 months ago
// 操作人员
@Getter
@Setter
10 months ago
private String operator;
10 months ago
// 操作者IP
@Getter
@Setter
10 months ago
private long ip_address;
10 months ago
// 微信小程序的openid
@Getter
@Setter
10 months ago
private String mini_openid;
10 months ago
public String toString(){
return "{ person_id: " + person_id +", person_name: " + person_name +", identity_id: " + identity_id +", login_name: " + login_name +", pwd: " + pwd +", original_pwd: " + original_pwd +", pwdmd5: " + pwdmd5 +", xb: " + xb +", mz: " + mz +", zzmm: " + zzmm +", idcard_code: " + idcard_code +", birthday: " + birthday +", create_time: " + create_time +", sort_id: " + sort_id +", telephone: " + telephone +", wx_openid: " + wx_openid +", qq_openid: " + qq_openid +", email: " + email +", status_code: " + status_code +", b_use: " + b_use +", identity_pk_num: " + identity_pk_num +", city_id: " + city_id +", area_id: " + area_id +", main_school_id: " + main_school_id +", bureau_id: " + bureau_id +", org_id: " + org_id +", s_class_id: " + s_class_id +", s_xjh: " + s_xjh +", s_xjfh: " + s_xjfh +", s_source: " + s_source +", s_stage_id: " + s_stage_id +", s_suiqian: " + s_suiqian +", s_liushou: " + s_liushou +", s_guer: " + s_guer +", s_canji: " + s_canji +", p_child_id: " + p_child_id +", t_duty_charge: " + t_duty_charge +", t_xl_id: " + t_xl_id +", t_zc_id: " + t_zc_id +", t_stage_id: " + t_stage_id +", t_subject_id: " + t_subject_id +", t_teaching_date: " + t_teaching_date +", t_gugan: " + t_gugan +", update_ts: " + update_ts +", id_int: " + id_int +", operator: " + operator +", ip_address: " + ip_address +", mini_openid: " + mini_openid +"}";
}
}