mybatis-plus的自动填充时间,@TableField 注解,@TableField 注解
@TableField 注解填充策略主要是告诉他我啥时候开始填充,1。在实体类加上@TableField 注解,//字段插入自动填充@TableField(fill = FieldFill.INSERT)private Date createTime;//字段更新自动填充@TableField(fill = FieldFill.INSERT_UPDATE)private Date updateTime;2.看看@TableField的源码@Documented@Retention(Re