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;
|
|
@Data
|
@TableName("zf_share_data")
|
public class ZfShareData {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 分享者的id
|
*/
|
private Integer userId;
|
|
/**
|
* 被分享者的id
|
*/
|
private Integer sharedId;
|
|
/**
|
* 主账户
|
*/
|
private Integer masterAccount;
|
|
|
}
|