| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package io.renren.entity;
-
- import com.baomidou.mybatisplus.annotation.TableName;
-
- import io.renren.common.entity.BaseEntity;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
-
- /**
- *
- *
- * @author Mark sunlightcs@gmail.com
- * @since 1.0.0 2022-05-11
- */
- @Data
- @EqualsAndHashCode(callSuper=false)
- @TableName("emergency_contact")
- public class EmergencyContactEntity extends BaseEntity {
- private static final long serialVersionUID = 1L;
-
- /**
- * 用户id
- */
- private Long userId;
- /**
- * 姓名
- */
- private String name;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 关系
- */
- private String relation;
-
- /**
- * 类型1亲属2朋友
- */
- private String type;
- }
|