UNPKG

pure-orm

Version:

A SQL Toolkit based on pure business objects passed to and from stateful data access objects

42 lines (35 loc) 763 B
import { IModel, ICollection, IColumns } from '../../../src/index'; export const tableName: string = 'color'; export const columns: IColumns = [ 'id', 'value', 'label', 'position', 'image_url' ]; export class Color implements IModel { id: number; value: string; label: string; position: number; imageUrl: string; constructor(props: any) { this.id = props.id; this.value = props.value; this.label = props.label; this.position = props.position; this.imageUrl = props.imageUrl; } } export class Colors implements ICollection<Color> { models: Array<Color>; constructor({ models }: any) { this.models = models; } } export const colorEntity = { tableName, columns, Model: Color, Collection: Colors };