UNPKG

owhat-job

Version:

owhat红包清理

25 lines 550 B
/** * UPT1.170917. * @param {*} name */ export const ASCDealer = class { constructor(name = '未定义') { this.name = name; this.Sex = true; } get Name() { return this.name; } set Name(value) { this.name = value; } /** * 注意会话内容 data.Template 和 data.Log对象为会话提供对象 * @param {*} ret * @param {*} data */ async deal(ret, data) { return [{ ID: V.random() }]; } }; export default { ASCDealer };