thinkjs/template/model/relation.ts
2016-01-07 16:50:59 +08:00

20 lines
304 B
TypeScript

/// <reference path="../../../typings/thinkjs/think.d.ts" />
'use strict';
/**
* relation model
*/
export default class extends think.model.relation {
/**
* init
* @param {} args []
* @return {} []
*/
init(...args){
super.init(...args);
this.relation = {
}
}
}