Commit 336af170 by 王昆

ddg

parent 6d83f643
var APIBase = require("../../api.base");
var system = require("../../../system");
class InvoiceAPI extends APIBase {
constructor() {
super();
this.orderSve = system.getObject("service.invoice.invoiceSve");
this.restClient = system.getObject("util.restClient");
}
async test(pobj, query, req) {
// var tmp = await this.orderSve.createLicense(pobj.action_body);
// 获取验证码
// await this.platformUtils.fetchVCode(pobj.action_body.mobile);
// 创建用户
// var result = await this.platformUtils.createUserInfo("13075556691", "13075556693", "9366");
// 创建用户
return pobj;
}
exam() {
return "";
}
classDesc() {
return {
groupName: "",
groupDesc: "",
name: "",
desc: "",
exam: "",
};
}
methodDescs() {
return [
{
methodDesc: "",
methodName: "",
paramdescs: [
{
paramDesc: "",
paramName: "",
paramType: "",
defaultValue: "",
}
],
rtnTypeDesc: "",
rtnType: ""
}
];
}
}
module.exports = InvoiceAPI;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment