package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@TableName("zf_doctor_share")
|
public class ZfDoctorShare implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 分享的用户id
|
*/
|
private Long shareId;
|
|
/**
|
* 分享的内容
|
*/
|
private Long shareContent;
|
|
|
|
}
|