将WechatMpShipDeubg的getReceiverInfo变为public

This commit is contained in:
Xu Chang 2025-03-12 10:11:56 +08:00
parent 1c9d3ad826
commit a4baeeba49
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@ const ShipServiceCodeDict = {
export default class WechatMpShipDebug<ED extends EntityDict & BaseEntityDict, Context extends BackendRuntimeContext<ED>> implements ShipClazz<ED, Context> {
private wechatMpShipId: string;
private wechatMpShip?: EntityDict['wechatMpShip']['Schema'];
private getReceiverInfo: (orderIds: string[], applicationId: string, context: Context) => Promise<{
// 这个外部可能也需要调用
public getReceiverInfo: (orderIds: string[], applicationId: string, context: Context) => Promise<{
openId?: string;
appWxId?: string;
}>;