WxAppServer/src/main/java/com/bigdata/wxappserver/entity/Base.java

19 lines
474 B
Java
Raw Normal View History

2024-08-29 16:46:49 +08:00
package com.bigdata.wxappserver.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.time.LocalDateTime;
public class Base {
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
@TableField(fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updateTime;
@TableLogic
private Integer isDelete;
}