1.0.2 • Published 3 years ago

egg-onecode-controller v1.0.2

Weekly downloads
41
License
ISC
Repository
-
Last release
3 years ago

使用说明

控制器下快捷设置

this.setEntity(this.ctx.repo.app.Log);
this.setPageOption({
    fieldEq: ['id'], //前端筛选
    fieldStatic: { "a.id": 11 }, //直接筛选
    select: ["a.id as a,l.id as b,a.createTime"], //字段提取
    alias: "a", //表别名
    leftJoin: [  //连接表
        [AppLog, "l", "l.id = a.id"]
    ]
});