All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xin.altitude.cms.code.constant.DdlEnum Maven / Gradle / Ivy

There is a newer version: 1.3.4.1
Show newest version
/*
 * 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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy