- add requirements for units, sergeants, buildings and weapons - add uiIndexHint for units, buildings, researches and addons - add addon affects - improve campaign entities clear - add dds converter definitive edition - add all files lowercase function before mod parse - add addon modifiers info - add advanced build menu grid
19 lines
451 B
Kotlin
19 lines
451 B
Kotlin
package com.dowstats.data.entities
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore
|
|
import jakarta.persistence.Entity
|
|
import jakarta.persistence.JoinColumn
|
|
import jakarta.persistence.ManyToOne
|
|
import jakarta.persistence.Table
|
|
|
|
|
|
@Entity
|
|
@Table(name = "building_requirements")
|
|
class BuildingRequirements: RequirementBase() {
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "building_id", nullable = false)
|
|
@JsonIgnore
|
|
var building: Building? = null
|
|
}
|