import { Entity, PrimaryGeneratedColumn, Column, OneToMany, ManyToOne, ManyToMany } from "typeorm";
import { JsonProperty } from "@tsed/common";

import { addPrefix } from "../util/helper"
import CoreEntity from '../core/entity/CoreEntity';

@Entity(addPrefix("{{snake}}"))
export class {{classify}} extends CoreEntity {
    constructor() {
        super()
    }

    // PROPERTIES


    // RELATIONS


    // METHODS
    

} // END FILE
