UNPKG

@tnwx/commons

Version:

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

40 lines 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @author Javen * @copyright javendev@126.com * @description 门店审核通知事件 */ const EventInMsg_1 = require("./EventInMsg"); class InPoiCheckNotifyEvent extends EventInMsg_1.EventInMsg { constructor(toUserName, fromUserName, createTime, event) { super(toUserName, fromUserName, createTime, event); } get getUniqId() { return this.uniqId; } set setUniqId(uniqId) { this.uniqId = uniqId; } get getPoiId() { return this.poiId; } set setPoiId(poiId) { this.poiId = poiId; } get getResult() { return this.result; } set setResult(result) { this.result = result; } get getMsg() { return this.msg; } set setMsg(msg) { this.msg = msg; } } exports.InPoiCheckNotifyEvent = InPoiCheckNotifyEvent; InPoiCheckNotifyEvent.EVENT = 'poi_check_notify'; //# sourceMappingURL=InPoiCheckNotifyEvent.js.map