@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
24 lines (23 loc) • 639 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 审核事件推送
*/
import { EventInMsg } from '../event/EventInMsg';
export declare class InCardPassCheckEvent extends EventInMsg {
static EVENT_PASS: string;
static EVENT_NOT_PASS: string;
/**
* 卡券ID
*/
private cardId;
/**
* 审核不通过原因
*/
private refuseReason;
constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string);
get getCardId(): string;
set setCardId(cardId: string);
get getRefuseReason(): string;
set setRefuseReason(refuseReason: string);
}