Commit 884fc83a by ning

新增单位列表查询

parent 5020584f
......@@ -66,4 +66,15 @@ export class BgglDao extends BaseTable<Bggl> {
)`;
return bggl_sql;
}
/**
* 根据订单号查询包裹信息
*/
async getDdh(ddh: string): Promise<Bggl[]> {
let wp = this.getPredicates();
if (ddh) {
wp.equalTo('DDH', ddh);
}
return this.query(wp, this.getTableColumns());
}
}
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论