Commit 7e71d098 authored by 余海军's avatar 余海军

add

parent 67df4d58
'use strict';
module.exports = function(Hosrevenue) {
};
{
"name": "HosRevenue",
"base": "PersistedModel",
"idInjection": false,
"options": {
"validateUpsert": true
},
"mysql": {
"schema": "wordpress",
"table": "hos_revenue"
},
"properties": {
"id": {
"type": "String",
"required": false,
"length": 36,
"precision": null,
"scale": null,
"mysql": {
"columnName": "id",
"dataType": "varchar",
"dataLength": 36,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
}
},
"name": {
"type": "String",
"required": false,
"length": 3,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 3,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
}
},
"value": {
"type": "Number",
"required": false,
"length": null,
"precision": 17,
"scale": 0,
"mysql": {
"columnName": "value",
"dataType": "double",
"dataLength": null,
"dataPrecision": 17,
"dataScale": 0,
"nullable": "Y"
}
},
"year": {
"type": "Number",
"required": true,
"length": null,
"precision": 19,
"scale": 0,
"mysql": {
"columnName": "year",
"dataType": "bigint",
"dataLength": null,
"dataPrecision": 19,
"dataScale": 0,
"nullable": "N"
}
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": {}
}
...@@ -62992,6 +62992,1165 @@ paths: ...@@ -62992,6 +62992,1165 @@ paths:
type: number type: number
format: double format: double
deprecated: false deprecated: false
/AnotherForteachers:
post:
tags:
- AnotherForteachers
summary: Create a new instance of the model and persist it into the data source.
operationId: AnotherForteachers.create
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
patch:
tags:
- AnotherForteachers
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: AnotherForteachers.patchOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
put:
tags:
- AnotherForteachers
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: AnotherForteachers.replaceOrCreate__put_AnotherForteachers
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
get:
tags:
- AnotherForteachers
summary: Find all instances of the model matched by filter from the data source.
operationId: AnotherForteachers.find
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: array
items:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
/AnotherForteachers/replaceOrCreate:
post:
tags:
- AnotherForteachers
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: >-
AnotherForteachers.replaceOrCreate__post_AnotherForteachers_replaceOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
/AnotherForteachers/upsertWithWhere:
post:
tags:
- AnotherForteachers
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: AnotherForteachers.upsertWithWhere
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
'/AnotherForteachers/{id}/exists':
get:
tags:
- AnotherForteachers
summary: Check whether a model instance exists in the data source.
operationId: 'AnotherForteachers.exists__get_AnotherForteachers_{id}_exists'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
'/AnotherForteachers/{id}':
head:
tags:
- AnotherForteachers
summary: Check whether a model instance exists in the data source.
operationId: 'AnotherForteachers.exists__head_AnotherForteachers_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
get:
tags:
- AnotherForteachers
summary: 'Find a model instance by {{id}} from the data source.'
operationId: AnotherForteachers.findById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: filter
in: query
description: >-
Filter defining fields and include - must be a JSON-encoded string
({"something":"value"})
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
put:
tags:
- AnotherForteachers
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'AnotherForteachers.replaceById__put_AnotherForteachers_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
delete:
tags:
- AnotherForteachers
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: AnotherForteachers.deleteById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
deprecated: false
patch:
tags:
- AnotherForteachers
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: AnotherForteachers.prototype.patchAttributes
parameters:
- name: id
in: path
description: AnotherForteachers id
required: true
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
'/AnotherForteachers/{id}/replace':
post:
tags:
- AnotherForteachers
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'AnotherForteachers.replaceById__post_AnotherForteachers_{id}_replace'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
/AnotherForteachers/findOne:
get:
tags:
- AnotherForteachers
summary: Find first instance of the model matched by filter from the data source.
operationId: AnotherForteachers.findOne
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherForteachers'
deprecated: false
/AnotherForteachers/update:
post:
tags:
- AnotherForteachers
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: AnotherForteachers.updateAll
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherForteachers'
responses:
'200':
description: Request was successful
schema:
description: Information related to the outcome of the operation
type: object
properties:
count:
description: The number of instances updated
type: number
format: double
deprecated: false
/AnotherForteachers/count:
get:
tags:
- AnotherForteachers
summary: Count instances of the model matched by where from the data source.
operationId: AnotherForteachers.count
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
count:
type: number
format: double
deprecated: false
/AnotherTeachers:
post:
tags:
- AnotherTeacher
summary: Create a new instance of the model and persist it into the data source.
operationId: AnotherTeacher.create
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
patch:
tags:
- AnotherTeacher
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: AnotherTeacher.patchOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
put:
tags:
- AnotherTeacher
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: AnotherTeacher.replaceOrCreate__put_AnotherTeachers
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
get:
tags:
- AnotherTeacher
summary: Find all instances of the model matched by filter from the data source.
operationId: AnotherTeacher.find
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: array
items:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
/AnotherTeachers/replaceOrCreate:
post:
tags:
- AnotherTeacher
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: AnotherTeacher.replaceOrCreate__post_AnotherTeachers_replaceOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
/AnotherTeachers/upsertWithWhere:
post:
tags:
- AnotherTeacher
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: AnotherTeacher.upsertWithWhere
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
'/AnotherTeachers/{id}/exists':
get:
tags:
- AnotherTeacher
summary: Check whether a model instance exists in the data source.
operationId: 'AnotherTeacher.exists__get_AnotherTeachers_{id}_exists'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
'/AnotherTeachers/{id}':
head:
tags:
- AnotherTeacher
summary: Check whether a model instance exists in the data source.
operationId: 'AnotherTeacher.exists__head_AnotherTeachers_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
get:
tags:
- AnotherTeacher
summary: 'Find a model instance by {{id}} from the data source.'
operationId: AnotherTeacher.findById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: filter
in: query
description: >-
Filter defining fields and include - must be a JSON-encoded string
({"something":"value"})
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
put:
tags:
- AnotherTeacher
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'AnotherTeacher.replaceById__put_AnotherTeachers_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
delete:
tags:
- AnotherTeacher
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: AnotherTeacher.deleteById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
deprecated: false
patch:
tags:
- AnotherTeacher
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: AnotherTeacher.prototype.patchAttributes
parameters:
- name: id
in: path
description: AnotherTeacher id
required: true
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
'/AnotherTeachers/{id}/replace':
post:
tags:
- AnotherTeacher
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'AnotherTeacher.replaceById__post_AnotherTeachers_{id}_replace'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
/AnotherTeachers/findOne:
get:
tags:
- AnotherTeacher
summary: Find first instance of the model matched by filter from the data source.
operationId: AnotherTeacher.findOne
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/AnotherTeacher'
deprecated: false
/AnotherTeachers/update:
post:
tags:
- AnotherTeacher
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: AnotherTeacher.updateAll
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/AnotherTeacher'
responses:
'200':
description: Request was successful
schema:
description: Information related to the outcome of the operation
type: object
properties:
count:
description: The number of instances updated
type: number
format: double
deprecated: false
/AnotherTeachers/count:
get:
tags:
- AnotherTeacher
summary: Count instances of the model matched by where from the data source.
operationId: AnotherTeacher.count
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
count:
type: number
format: double
deprecated: false
/HosRevenues:
post:
tags:
- HosRevenue
summary: Create a new instance of the model and persist it into the data source.
operationId: HosRevenue.create
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
patch:
tags:
- HosRevenue
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: HosRevenue.patchOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
put:
tags:
- HosRevenue
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: HosRevenue.replaceOrCreate__put_HosRevenues
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
get:
tags:
- HosRevenue
summary: Find all instances of the model matched by filter from the data source.
operationId: HosRevenue.find
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: array
items:
$ref: '#/definitions/HosRevenue'
deprecated: false
/HosRevenues/replaceOrCreate:
post:
tags:
- HosRevenue
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: HosRevenue.replaceOrCreate__post_HosRevenues_replaceOrCreate
parameters:
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
/HosRevenues/upsertWithWhere:
post:
tags:
- HosRevenue
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: HosRevenue.upsertWithWhere
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
'/HosRevenues/{id}/exists':
get:
tags:
- HosRevenue
summary: Check whether a model instance exists in the data source.
operationId: 'HosRevenue.exists__get_HosRevenues_{id}_exists'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
'/HosRevenues/{id}':
head:
tags:
- HosRevenue
summary: Check whether a model instance exists in the data source.
operationId: 'HosRevenue.exists__head_HosRevenues_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
exists:
type: boolean
deprecated: false
get:
tags:
- HosRevenue
summary: 'Find a model instance by {{id}} from the data source.'
operationId: HosRevenue.findById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: filter
in: query
description: >-
Filter defining fields and include - must be a JSON-encoded string
({"something":"value"})
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
put:
tags:
- HosRevenue
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'HosRevenue.replaceById__put_HosRevenues_{id}'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
delete:
tags:
- HosRevenue
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: HosRevenue.deleteById
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
deprecated: false
patch:
tags:
- HosRevenue
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: HosRevenue.prototype.patchAttributes
parameters:
- name: id
in: path
description: HosRevenue id
required: true
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
'/HosRevenues/{id}/replace':
post:
tags:
- HosRevenue
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'HosRevenue.replaceById__post_HosRevenues_{id}_replace'
parameters:
- name: id
in: path
description: Model id
required: true
type: string
format: JSON
- name: data
in: body
description: Model instance data
required: false
schema:
description: Model instance data
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
/HosRevenues/findOne:
get:
tags:
- HosRevenue
summary: Find first instance of the model matched by filter from the data source.
operationId: HosRevenue.findOne
parameters:
- name: filter
in: query
description: >-
Filter defining fields, where, include, order, offset, and limit -
must be a JSON-encoded string (`{"where":{"something":"value"}}`).
See
https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries
for more details.
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/HosRevenue'
deprecated: false
/HosRevenues/update:
post:
tags:
- HosRevenue
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: HosRevenue.updateAll
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
- name: data
in: body
description: An object of model property name/value pairs
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/HosRevenue'
responses:
'200':
description: Request was successful
schema:
description: Information related to the outcome of the operation
type: object
properties:
count:
description: The number of instances updated
type: number
format: double
deprecated: false
/HosRevenues/count:
get:
tags:
- HosRevenue
summary: Count instances of the model matched by where from the data source.
operationId: HosRevenue.count
parameters:
- name: where
in: query
description: Criteria to match model instances
required: false
type: string
format: JSON
responses:
'200':
description: Request was successful
schema:
type: object
properties:
count:
type: number
format: double
deprecated: false
definitions: definitions:
DashboardHospitalAwenCount: DashboardHospitalAwenCount:
properties: properties:
...@@ -65438,6 +66597,65 @@ definitions: ...@@ -65438,6 +66597,65 @@ definitions:
maxLength: 6 maxLength: 6
type: string type: string
additionalProperties: false additionalProperties: false
AnotherForteachers:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 65535
type: string
post:
maxLength: 65535
type: string
intro:
maxLength: 4294967295
type: string
img:
maxLength: 65535
type: string
img1:
maxLength: 65535
type: string
additionalProperties: false
AnotherTeacher:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 65535
type: string
post:
maxLength: 65535
type: string
intro:
maxLength: 4294967295
type: string
img:
maxLength: 65535
type: string
img1:
maxLength: 65535
type: string
additionalProperties: false
HosRevenue:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 3
type: string
value:
type: number
format: double
year:
type: number
format: double
required:
- year
additionalProperties: false
basePath: /api/ruipeng basePath: /api/ruipeng
swagger: '2.0' swagger: '2.0'
info: info:
...@@ -672,5 +672,9 @@ ...@@ -672,5 +672,9 @@
"AnotherTeacher": { "AnotherTeacher": {
"dataSource": "ruipeng", "dataSource": "ruipeng",
"public": true "public": true
},
"HosRevenue": {
"dataSource": "ruipeng",
"public": true
} }
} }
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