123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package com.ssj.bean.weixin.libmy.domain;
- import com.ssj.bean.common.framework.core.domain.BaseEntity;
- import javax.persistence.Entity;
- import javax.persistence.Table;
- import java.math.BigDecimal;
- import java.util.Date;
- @Entity
- @Table(name = "tb_lib_read_manager")
- public class TbLibReadManager extends BaseEntity {
- private static final long serialVersionUID = 1L;
- private String libId;
- /**
- * 用户id
- */
- private String userId;
- /**
- * 0:馆长,1:图书馆管理员,
- */
- private Integer type;
- /**
- * 真实姓名
- */
- private String name;
- /**
- * 电话号码
- */
- private String telephone;
- /**
- * 性别
- */
- private Integer sex;
- /**
- * 头像
- */
- private String tPhoto;
- /**
- * 1有效-2无效
- */
- private Integer state;
- private Date createTime;
- public String getLibId() {
- return libId;
- }
- public void setLibId(String libId) {
- this.libId = libId;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getTelephone() {
- return telephone;
- }
- public void setTelephone(String telephone) {
- this.telephone = telephone;
- }
- public Integer getSex() {
- return sex;
- }
- public void setSex(Integer sex) {
- this.sex = sex;
- }
- public String gettPhoto() {
- return tPhoto;
- }
- public void settPhoto(String tPhoto) {
- this.tPhoto = tPhoto;
- }
- public Integer getState() {
- return state;
- }
- public void setState(Integer state) {
- this.state = state;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|