TbLibReadManager.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.ssj.bean.weixin.libmy.domain;
  2. import com.ssj.bean.common.framework.core.domain.BaseEntity;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Table;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. @Entity
  8. @Table(name = "tb_lib_read_manager")
  9. public class TbLibReadManager extends BaseEntity {
  10. private static final long serialVersionUID = 1L;
  11. private String libId;
  12. /**
  13. * 用户id
  14. */
  15. private String userId;
  16. /**
  17. * 0:馆长,1:图书馆管理员,
  18. */
  19. private Integer type;
  20. /**
  21. * 真实姓名
  22. */
  23. private String name;
  24. /**
  25. * 电话号码
  26. */
  27. private String telephone;
  28. /**
  29. * 性别
  30. */
  31. private Integer sex;
  32. /**
  33. * 头像
  34. */
  35. private String tPhoto;
  36. /**
  37. * 1有效-2无效
  38. */
  39. private Integer state;
  40. private Date createTime;
  41. public String getLibId() {
  42. return libId;
  43. }
  44. public void setLibId(String libId) {
  45. this.libId = libId;
  46. }
  47. public String getUserId() {
  48. return userId;
  49. }
  50. public void setUserId(String userId) {
  51. this.userId = userId;
  52. }
  53. public Integer getType() {
  54. return type;
  55. }
  56. public void setType(Integer type) {
  57. this.type = type;
  58. }
  59. public String getName() {
  60. return name;
  61. }
  62. public void setName(String name) {
  63. this.name = name;
  64. }
  65. public String getTelephone() {
  66. return telephone;
  67. }
  68. public void setTelephone(String telephone) {
  69. this.telephone = telephone;
  70. }
  71. public Integer getSex() {
  72. return sex;
  73. }
  74. public void setSex(Integer sex) {
  75. this.sex = sex;
  76. }
  77. public String gettPhoto() {
  78. return tPhoto;
  79. }
  80. public void settPhoto(String tPhoto) {
  81. this.tPhoto = tPhoto;
  82. }
  83. public Integer getState() {
  84. return state;
  85. }
  86. public void setState(Integer state) {
  87. this.state = state;
  88. }
  89. public Date getCreateTime() {
  90. return createTime;
  91. }
  92. public void setCreateTime(Date createTime) {
  93. this.createTime = createTime;
  94. }
  95. }