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

ru.foodtechlab.lib.auth.service.domain.migration.entity.MigrationEntity Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package ru.foodtechlab.lib.auth.service.domain.migration.entity;

import com.rcore.domain.commons.entity.BaseEntity;
import lombok.*;
import lombok.experimental.SuperBuilder;

/**
 * Миграция схемы данных
 */
@EqualsAndHashCode(callSuper = false)
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
@Data
public class MigrationEntity extends BaseEntity {
    public static final String ID = "MigrationEntity";

    /**
     * Версия 
     */
    protected Integer version = 0;


    public MigrationEntity(String id) {
        this.id = id;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy