thinkjs/template/model/relation.js
2015-10-25 18:50:45 +08:00

17 lines
228 B
JavaScript

'use strict';
/**
* relation model
* @type {Class}
*/
module.exports = think.model('relation', {
/**
* init
* @return {} []
*/
init(){
this.super('init', arguments);
this.relation = {
}
}
});