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

org.octopusden.octopus.dms.entity.Component.kt Maven / Gradle / Ivy

package org.octopusden.octopus.dms.entity

import javax.persistence.*

@Entity
@Table(name = "component")
class Component(
        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        val id: Long = 0,
        val name: String
) {
        override fun toString(): String {
                return "Component(id=$id, name=$name)"
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy