mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-20 14:05:06 +08:00
合并成单 module 的初始化
使用 spring boot 2.4.1 启动项目
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
package cn.iocoder.dashboard.framework.mybatis.core;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 基础实体对象
|
||||
*/
|
||||
@Data
|
||||
public class BaseDO implements Serializable {
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
/**
|
||||
* 最后更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
/**
|
||||
* 创建者 TODO 芋艿:迁移成编号
|
||||
*/
|
||||
private String createBy;
|
||||
/**
|
||||
* 更新者 TODO 芋艿:迁移成编号
|
||||
*/
|
||||
private String updateBy;
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
@TableLogic
|
||||
private Integer deleted;
|
||||
|
||||
// /** 备注 */ TODO 思考下,怎么解决
|
||||
// private String remark;
|
||||
|
||||
}
|
@ -0,0 +1 @@
|
||||
package cn.iocoder.dashboard.framework.mybatis;
|
Reference in New Issue
Block a user