mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
17 lines
228 B
JavaScript
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 = {
|
|
|
|
}
|
|
}
|
|
}); |