|
@@ -0,0 +1,20 @@
|
|
|
+package com.game.framework.interceptor;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
|
|
|
+import org.apache.ibatis.reflection.MetaObject;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Configuration
|
|
|
+public class MybatisPlusMetaObjectHandler implements MetaObjectHandler {
|
|
|
+ @Override
|
|
|
+ public void insertFill(MetaObject metaObject) {
|
|
|
+ this.strictInsertFill(metaObject,"createTime", Date.class,new Date());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void updateFill(MetaObject metaObject) {
|
|
|
+ this.strictInsertFill(metaObject,"updateTime", Date.class,new Date());
|
|
|
+ }
|
|
|
+}
|