@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
23 lines (22 loc) • 646 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 门店审核通知事件
*/
import { EventInMsg } from './EventInMsg';
export declare class InPoiCheckNotifyEvent extends EventInMsg {
static EVENT: string;
private uniqId;
private poiId;
private result;
private msg;
constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
get getUniqId(): string;
set setUniqId(uniqId: string);
get getPoiId(): string;
set setPoiId(poiId: string);
get getResult(): string;
set setResult(result: string);
get getMsg(): string;
set setMsg(msg: string);
}