package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 五微服务-团队&成员关系表(ComFmsTeamMemberRelation)表实体类
|
*
|
* @author makejava
|
* @since 2022-02-14 14:41:36
|
*/
|
@Data
|
@TableName(value = "com_fms_team_member_relation")
|
@SuppressWarnings("serial")
|
public class ComFmsTeamMemberRelation implements Serializable {
|
private static final long serialVersionUID = -75599228117060880L;
|
/**
|
* 团队id
|
*/
|
private Long teamId;
|
/**
|
* 成员id
|
*/
|
private Long memberId;
|
|
}
|