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

93 lines
1.9 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. package com.ruoyi.model.domain;
  2. import lombok.Data;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. import java.time.LocalDateTime;
  8. @Data
  9. public class AppletUsersTeacher {
  10. private static final long serialVersionUID = 1L;
  11. /** 标识 */
  12. private Long id;
  13. /** 关联用户 */
  14. @Excel(name = "关联用户")
  15. private Long userId;
  16. /** 姓名 */
  17. @Excel(name = "姓名")
  18. private String name;
  19. /** 身份证 */
  20. @Excel(name = "身份证")
  21. private String idCard;
  22. /** 性别 */
  23. @Excel(name = "性别")
  24. private Long sex;
  25. /** 手机号 */
  26. @Excel(name = "手机号")
  27. private String phone;
  28. /** 养宠经验 */
  29. @Excel(name = "养宠经验")
  30. private String experience;
  31. /** 是否有专业执照 */
  32. @Excel(name = "是否有专业执照")
  33. private Long isHave;
  34. /** 个人宠物类型 */
  35. @Excel(name = "个人宠物类型")
  36. private Long petType;
  37. /** 审核状态 */
  38. @Excel(name = "审核状态")
  39. private Long status;
  40. /** 审核图片 */
  41. @Excel(name = "审核图片")
  42. private String images;
  43. /** 创建时间 */
  44. private LocalDateTime createTime;
  45. /** 所在地区 */
  46. @Excel(name = "所在地区")
  47. private String area;
  48. /** 审核时间 */
  49. private LocalDateTime updateTime;
  50. /** 详细地址 */
  51. @Excel(name = "详细地址")
  52. private String address;
  53. /** 经度 */
  54. @Excel(name = "经度")
  55. private String longitude;
  56. /** 纬度 */
  57. @Excel(name = "纬度")
  58. private String latitude;
  59. /** 创建人 */
  60. private String createBy;
  61. /** 修改人 */
  62. private String updateBy;
  63. /** 年龄 */
  64. @Excel(name = "年龄")
  65. private Long age;
  66. /** 专业执照选项 */
  67. @Excel(name = "专业执照选项")
  68. private String license;
  69. }