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.

EmergencyContactEntity.java 772B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package io.renren.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import io.renren.common.entity.BaseEntity;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. /**
  8. *
  9. *
  10. * @author Mark sunlightcs@gmail.com
  11. * @since 1.0.0 2022-05-11
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper=false)
  15. @TableName("emergency_contact")
  16. public class EmergencyContactEntity extends BaseEntity {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 用户id
  20. */
  21. private Long userId;
  22. /**
  23. * 姓名
  24. */
  25. private String name;
  26. /**
  27. * 手机号
  28. */
  29. private String phone;
  30. /**
  31. * 关系
  32. */
  33. private String relation;
  34. /**
  35. * 类型1亲属2朋友
  36. */
  37. private String type;
  38. }