MyBatis 与 MySQL tinyint(1) 踩坑现象原因解决办法参考链接
现象如果使用了 MyBatis-Plus 的枚举自动映射,那么在代码运行时,可能会存在查询得到的 POJO对象 中,枚举的数据为 null 。实体类定义:public class Communication implements BasePO { @TableId private Long communicationId; private String content; private Status status; private Show show;枚举类