mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
18 lines
242 B
JavaScript
18 lines
242 B
JavaScript
'use strict';
|
|
/**
|
|
* relation model
|
|
*/
|
|
export default class extends think.model.relation {
|
|
/**
|
|
* init
|
|
* @param {} args []
|
|
* @return {} []
|
|
*/
|
|
init(...args){
|
|
super.init(...args);
|
|
|
|
this.relation = {
|
|
|
|
}
|
|
}
|
|
} |