base-domain
Version:
simple module to help build Domain-Driven Design
26 lines (16 loc) • 306 B
text/coffeescript
BaseModel = require './base-model'
###*
Base model class with "id" column
@class Entity
@extends BaseModel
@module base-domain
###
class Entity extends BaseModel
@isEntity: true
###*
primary key for the model
@property id
@type any
###
id: null
module.exports = Entity