应用程序:/api/myappnew


规范类:restful.myappnew.spec
Class restful.myappnew.spec Extends %REST.Spec [ ProcedureBlock ]
{
XData OpenAPI [ MimeType = application/json ]
{
{
"info":{
"title":"",
"description":"",
"version":"",
"x-ISC_Namespace":"BOE-APP"
},
"basePath":"/api/myappnew",
"paths":{
"/person":{
"get":{
"operationId":"GetPersonById",
"description":" GET http://localhost:52773/api/boe/myapp/person ",
"x-ISC_ServiceMethod":"GetPersonById",
"responses":{
"default":{
"description":"(Unexpected Error)"
},
"200":{
"description":"(Expected Result)"
}
}
},
"post":{
"operationId":"CreatePerson",
"description":" POST http://localhost:52773/api/boe/myapp/person ",
"x-ISC_ServiceMethod":"CreatePerson",
"parameters":[
{
"name":"payloadBody",
"in":"body",
"description":"Request body contents",
"required":false,
"schema":{
"type":"string"
}
}
],
"responses":{
"default":{
"description":"(Unexpected Error)"
},
"200":{
"description":"(Expected Result)"
}
}
}
}
},
"swagger":"2.0"
}
}
}
分派类:restful.myappnew.disp
Class restful.myappnew.disp Extends %CSP.REST [ GeneratedBy