xin.altitude.cms.code.constant.DdlEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucode-cms-code Show documentation
Show all versions of ucode-cms-code Show documentation
Java知识图谱之内容管理系统(CMS)代码自动生成部分
/*
* Copyright (Java知识图谱) 2022.
*/
package xin.altitude.cms.code.constant;
/**
* 数据标准化字段枚举
*
* @author explore
* @since 2019/11/23 15:38
**/
public enum DdlEnum {
/**
* 创建时间
*/
create_time,
/**
* 更新时间
*/
update_time,
/**
* 逻辑删除
*/
deleted;
@Override
public String toString() {
return name();
}
}