UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

17 lines (16 loc) 496 B
/** * @author Javen * @copyright javendev@126.com * @description 库存报警事件 */ import { EventInMsg } from '../event/EventInMsg'; export declare class InCardSkuRemindEvent extends EventInMsg { static EVENT: string; private cardId; private detail; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getCardId(): string; set setCardId(cardId: string); get getDetail(): string; set setDetail(detail: string); }