12345678910111213141516171819202122 |
- 'use strict';
- /**
- *
- *
- * @author Mai
- * @date
- * @version
- */
- class S2b {
- constructor(ctx) {
- this.ctx = ctx;
- this.db = ctx.app.mysql;
- }
- getS2bProj(pid) {
- return this.db.get('zh_s2b_proj', { pid });
- }
- };
- module.exports = S2b;
|