mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-21 15:29:36 +08:00
28 lines
539 B
Java
28 lines
539 B
Java
![]() |
package com.ics.admin.domain;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import com.ics.common.core.domain.BaseEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 房间用户关联对象 tb_wisdom_staff
|
||
|
*
|
||
|
* @author ics
|
||
|
* @date 2024-08-21
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName("tb_wisdom_staff")
|
||
|
public class WisdomStaff extends BaseEntity<WisdomStaff> {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** 房间id */
|
||
|
private Long wisdomRoomId;
|
||
|
|
||
|
/** 用户id */
|
||
|
private Long staffId;
|
||
|
|
||
|
/** 园区ID */
|
||
|
private Long parkId;
|
||
|
|
||
|
}
|