You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
542 B
22 lines
542 B
const {Class} = require("../common/Class");
|
|
const {RequestType} = require("../common/RequestType");
|
|
const {BaseRequest} = require('./BaseRequest')
|
|
|
|
/**
|
|
* 创建一个请求类,继承BaseRequest,重写三个函数
|
|
*/
|
|
const StoryGetRequest = Class.create({
|
|
|
|
getMethod: function () {
|
|
return "story.get"
|
|
},
|
|
getVersion: function () {
|
|
return "1.0"
|
|
},
|
|
getRequestType: function () {
|
|
return RequestType.GET
|
|
}
|
|
|
|
}, BaseRequest) // 继承BaseRequest
|
|
|
|
module.exports.StoryGetRequest = StoryGetRequest
|
|
|