@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
29 lines (28 loc) • 895 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 微信会员卡快速买单
*/
import { EventInMsg } from '../event/EventInMsg';
export declare class InUserPayFromCardEvent extends EventInMsg {
static EVENT: string;
private cardId;
private userCardCode;
private transId;
private locationId;
private fee;
private originalFee;
constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string);
get getCardId(): string;
set setCardId(cardId: string);
get getUserCardCode(): string;
set setUserCardCode(userCardCode: string);
get getTransId(): string;
set setTransId(transId: string);
get getLocationId(): string;
set setLocationId(locationId: string);
get getFee(): string;
set setFee(fee: string);
get getOriginalFee(): string;
set setOriginalFee(originalFee: string);
}