猫妈狗爸伴宠师小程序后端代码
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.

179 lines
3.6 KiB

3 weeks ago
  1. package com.ruoyi.model.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 伴宠师认证对象 applet_users_teacher
  8. *
  9. * @author ruoyi
  10. * @date 2025-03-27
  11. */
  12. public class AppletUsersTeacher extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 标识 */
  16. private Long id;
  17. /** 关联用户 */
  18. @Excel(name = "关联用户")
  19. private Long userId;
  20. /** 姓名 */
  21. @Excel(name = "姓名")
  22. private String name;
  23. /** 身份证 */
  24. @Excel(name = "身份证")
  25. private String idCard;
  26. /** 性别 */
  27. @Excel(name = "性别")
  28. private Long sex;
  29. /** 手机号 */
  30. @Excel(name = "手机号")
  31. private String phone;
  32. /** 养宠经验 */
  33. @Excel(name = "养宠经验")
  34. private String experience;
  35. /** 是否有专业执照 */
  36. @Excel(name = "是否有专业执照")
  37. private Long isHave;
  38. /** 个人宠物类型 */
  39. @Excel(name = "个人宠物类型")
  40. private Long petType;
  41. /** 审核状态 */
  42. @Excel(name = "审核状态")
  43. private Long status;
  44. /** 审核图片 */
  45. @Excel(name = "审核图片")
  46. private String images;
  47. public void setId(Long id)
  48. {
  49. this.id = id;
  50. }
  51. public Long getId()
  52. {
  53. return id;
  54. }
  55. public void setUserId(Long userId)
  56. {
  57. this.userId = userId;
  58. }
  59. public Long getUserId()
  60. {
  61. return userId;
  62. }
  63. public void setName(String name)
  64. {
  65. this.name = name;
  66. }
  67. public String getName()
  68. {
  69. return name;
  70. }
  71. public void setIdCard(String idCard)
  72. {
  73. this.idCard = idCard;
  74. }
  75. public String getIdCard()
  76. {
  77. return idCard;
  78. }
  79. public void setSex(Long sex)
  80. {
  81. this.sex = sex;
  82. }
  83. public Long getSex()
  84. {
  85. return sex;
  86. }
  87. public void setPhone(String phone)
  88. {
  89. this.phone = phone;
  90. }
  91. public String getPhone()
  92. {
  93. return phone;
  94. }
  95. public void setExperience(String experience)
  96. {
  97. this.experience = experience;
  98. }
  99. public String getExperience()
  100. {
  101. return experience;
  102. }
  103. public void setIsHave(Long isHave)
  104. {
  105. this.isHave = isHave;
  106. }
  107. public Long getIsHave()
  108. {
  109. return isHave;
  110. }
  111. public void setPetType(Long petType)
  112. {
  113. this.petType = petType;
  114. }
  115. public Long getPetType()
  116. {
  117. return petType;
  118. }
  119. public void setStatus(Long status)
  120. {
  121. this.status = status;
  122. }
  123. public Long getStatus()
  124. {
  125. return status;
  126. }
  127. public void setImages(String images)
  128. {
  129. this.images = images;
  130. }
  131. public String getImages()
  132. {
  133. return images;
  134. }
  135. @Override
  136. public String toString() {
  137. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  138. .append("id", getId())
  139. .append("userId", getUserId())
  140. .append("name", getName())
  141. .append("idCard", getIdCard())
  142. .append("sex", getSex())
  143. .append("phone", getPhone())
  144. .append("experience", getExperience())
  145. .append("isHave", getIsHave())
  146. .append("petType", getPetType())
  147. .append("status", getStatus())
  148. .append("images", getImages())
  149. .append("createTime", getCreateTime())
  150. .append("updateTime", getUpdateTime())
  151. .toString();
  152. }
  153. }