首先maven引入
<dependency>
<groupId>com.github.jeffreyning</groupId>
<artifactId>mybatisplus-plus</artifactId>
<version>1.2.0-RELEASE</version>
</dependency>
然后实体类的注解如下
@TableId(value = "doctor_id", type = IdType.INPUT)
@MppMultiId
private Integer doctorId;
@TableId(value = "team_id", type = IdType.INPUT)
@MppMultiId
private Integer teamId;