Commit aaab4c87 authored by 余海军's avatar 余海军

add

parent c6958ca5
......@@ -25,33 +25,18 @@
"nullable": "Y"
}
},
"name": {
"type": "String",
"required": true,
"length": 8,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 8,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
}
},
"value": {
"type": "Number",
"required": false,
"length": null,
"precision": 32,
"scale": 0,
"precision": 36,
"scale": 4,
"mysql": {
"columnName": "value",
"dataType": "decimal",
"dataLength": null,
"dataPrecision": 32,
"dataScale": 0,
"dataPrecision": 36,
"dataScale": 4,
"nullable": "Y"
}
}
......
......@@ -25,33 +25,18 @@
"nullable": "Y"
}
},
"name": {
"type": "String",
"required": true,
"length": 8,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 8,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
}
},
"value": {
"type": "Number",
"required": false,
"length": null,
"precision": 32,
"scale": 0,
"precision": 36,
"scale": 4,
"mysql": {
"columnName": "value",
"dataType": "decimal",
"dataLength": null,
"dataPrecision": 32,
"dataScale": 0,
"dataPrecision": 36,
"dataScale": 4,
"nullable": "Y"
}
}
......
......@@ -17046,12 +17046,12 @@ paths:
type: number
format: double
deprecated: false
/MainVrrevenues:
/MainVocations:
post:
tags:
- MainVrrevenue
- MainVocation
summary: Create a new instance of the model and persist it into the data source.
operationId: MainVrrevenue.create
operationId: MainVocation.create
parameters:
- name: data
in: body
......@@ -17059,20 +17059,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
patch:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainVrrevenue.patchOrCreate
operationId: MainVocation.patchOrCreate
parameters:
- name: data
in: body
......@@ -17080,20 +17080,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
put:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVrrevenue.replaceOrCreate__put_MainVrrevenues
operationId: MainVocation.replaceOrCreate__put_MainVocations
parameters:
- name: data
in: body
......@@ -17101,18 +17101,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
get:
tags:
- MainVrrevenue
- MainVocation
summary: Find all instances of the model matched by filter from the data source.
operationId: MainVrrevenue.find
operationId: MainVocation.find
parameters:
- name: filter
in: query
......@@ -17131,16 +17131,16 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
/MainVrrevenues/replaceOrCreate:
/MainVocations/replaceOrCreate:
post:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVrrevenue.replaceOrCreate__post_MainVrrevenues_replaceOrCreate
operationId: MainVocation.replaceOrCreate__post_MainVocations_replaceOrCreate
parameters:
- name: data
in: body
......@@ -17148,21 +17148,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
/MainVrrevenues/upsertWithWhere:
/MainVocations/upsertWithWhere:
post:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainVrrevenue.upsertWithWhere
operationId: MainVocation.upsertWithWhere
parameters:
- name: where
in: query
......@@ -17176,19 +17176,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
'/MainVrrevenues/{id}/exists':
'/MainVocations/{id}/exists':
get:
tags:
- MainVrrevenue
- MainVocation
summary: Check whether a model instance exists in the data source.
operationId: 'MainVrrevenue.exists__get_MainVrrevenues_{id}_exists'
operationId: 'MainVocation.exists__get_MainVocations_{id}_exists'
parameters:
- name: id
in: path
......@@ -17205,12 +17205,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainVrrevenues/{id}':
'/MainVocations/{id}':
head:
tags:
- MainVrrevenue
- MainVocation
summary: Check whether a model instance exists in the data source.
operationId: 'MainVrrevenue.exists__head_MainVrrevenues_{id}'
operationId: 'MainVocation.exists__head_MainVocations_{id}'
parameters:
- name: id
in: path
......@@ -17229,9 +17229,9 @@ paths:
deprecated: false
get:
tags:
- MainVrrevenue
- MainVocation
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainVrrevenue.findById
operationId: MainVocation.findById
parameters:
- name: id
in: path
......@@ -17251,15 +17251,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
put:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVrrevenue.replaceById__put_MainVrrevenues_{id}'
operationId: 'MainVocation.replaceById__put_MainVocations_{id}'
parameters:
- name: id
in: path
......@@ -17273,18 +17273,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
delete:
tags:
- MainVrrevenue
- MainVocation
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainVrrevenue.deleteById
operationId: MainVocation.deleteById
parameters:
- name: id
in: path
......@@ -17300,15 +17300,15 @@ paths:
deprecated: false
patch:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainVrrevenue.prototype.patchAttributes
operationId: MainVocation.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainVrrevenue id
description: MainVocation id
required: true
type: string
format: JSON
......@@ -17318,21 +17318,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
'/MainVrrevenues/{id}/replace':
'/MainVocations/{id}/replace':
post:
tags:
- MainVrrevenue
- MainVocation
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVrrevenue.replaceById__post_MainVrrevenues_{id}_replace'
operationId: 'MainVocation.replaceById__post_MainVocations_{id}_replace'
parameters:
- name: id
in: path
......@@ -17346,19 +17346,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
/MainVrrevenues/findOne:
/MainVocations/findOne:
get:
tags:
- MainVrrevenue
- MainVocation
summary: Find first instance of the model matched by filter from the data source.
operationId: MainVrrevenue.findOne
operationId: MainVocation.findOne
parameters:
- name: filter
in: query
......@@ -17375,14 +17375,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
deprecated: false
/MainVrrevenues/update:
/MainVocations/update:
post:
tags:
- MainVrrevenue
- MainVocation
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainVrrevenue.updateAll
operationId: MainVocation.updateAll
parameters:
- name: where
in: query
......@@ -17396,7 +17396,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrrevenue'
$ref: '#/definitions/MainVocation'
responses:
'200':
description: Request was successful
......@@ -17409,12 +17409,12 @@ paths:
type: number
format: double
deprecated: false
/MainVrrevenues/count:
/MainVocations/count:
get:
tags:
- MainVrrevenue
- MainVocation
summary: Count instances of the model matched by where from the data source.
operationId: MainVrrevenue.count
operationId: MainVocation.count
parameters:
- name: where
in: query
......@@ -17432,12 +17432,12 @@ paths:
type: number
format: double
deprecated: false
/MainVrorders:
/MainTotalteachers:
post:
tags:
- MainVrorder
- MainTotalteacher
summary: Create a new instance of the model and persist it into the data source.
operationId: MainVrorder.create
operationId: MainTotalteacher.create
parameters:
- name: data
in: body
......@@ -17445,20 +17445,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
patch:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainVrorder.patchOrCreate
operationId: MainTotalteacher.patchOrCreate
parameters:
- name: data
in: body
......@@ -17466,20 +17466,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
put:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVrorder.replaceOrCreate__put_MainVrorders
operationId: MainTotalteacher.replaceOrCreate__put_MainTotalteachers
parameters:
- name: data
in: body
......@@ -17487,18 +17487,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
get:
tags:
- MainVrorder
- MainTotalteacher
summary: Find all instances of the model matched by filter from the data source.
operationId: MainVrorder.find
operationId: MainTotalteacher.find
parameters:
- name: filter
in: query
......@@ -17517,16 +17517,16 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
/MainVrorders/replaceOrCreate:
/MainTotalteachers/replaceOrCreate:
post:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVrorder.replaceOrCreate__post_MainVrorders_replaceOrCreate
operationId: MainTotalteacher.replaceOrCreate__post_MainTotalteachers_replaceOrCreate
parameters:
- name: data
in: body
......@@ -17534,21 +17534,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
/MainVrorders/upsertWithWhere:
/MainTotalteachers/upsertWithWhere:
post:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainVrorder.upsertWithWhere
operationId: MainTotalteacher.upsertWithWhere
parameters:
- name: where
in: query
......@@ -17562,19 +17562,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
'/MainVrorders/{id}/exists':
'/MainTotalteachers/{id}/exists':
get:
tags:
- MainVrorder
- MainTotalteacher
summary: Check whether a model instance exists in the data source.
operationId: 'MainVrorder.exists__get_MainVrorders_{id}_exists'
operationId: 'MainTotalteacher.exists__get_MainTotalteachers_{id}_exists'
parameters:
- name: id
in: path
......@@ -17591,12 +17591,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainVrorders/{id}':
'/MainTotalteachers/{id}':
head:
tags:
- MainVrorder
- MainTotalteacher
summary: Check whether a model instance exists in the data source.
operationId: 'MainVrorder.exists__head_MainVrorders_{id}'
operationId: 'MainTotalteacher.exists__head_MainTotalteachers_{id}'
parameters:
- name: id
in: path
......@@ -17615,9 +17615,9 @@ paths:
deprecated: false
get:
tags:
- MainVrorder
- MainTotalteacher
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainVrorder.findById
operationId: MainTotalteacher.findById
parameters:
- name: id
in: path
......@@ -17637,15 +17637,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
put:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVrorder.replaceById__put_MainVrorders_{id}'
operationId: 'MainTotalteacher.replaceById__put_MainTotalteachers_{id}'
parameters:
- name: id
in: path
......@@ -17659,18 +17659,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
delete:
tags:
- MainVrorder
- MainTotalteacher
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainVrorder.deleteById
operationId: MainTotalteacher.deleteById
parameters:
- name: id
in: path
......@@ -17686,15 +17686,15 @@ paths:
deprecated: false
patch:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainVrorder.prototype.patchAttributes
operationId: MainTotalteacher.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainVrorder id
description: MainTotalteacher id
required: true
type: string
format: JSON
......@@ -17704,21 +17704,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
'/MainVrorders/{id}/replace':
'/MainTotalteachers/{id}/replace':
post:
tags:
- MainVrorder
- MainTotalteacher
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVrorder.replaceById__post_MainVrorders_{id}_replace'
operationId: 'MainTotalteacher.replaceById__post_MainTotalteachers_{id}_replace'
parameters:
- name: id
in: path
......@@ -17732,19 +17732,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
/MainVrorders/findOne:
/MainTotalteachers/findOne:
get:
tags:
- MainVrorder
- MainTotalteacher
summary: Find first instance of the model matched by filter from the data source.
operationId: MainVrorder.findOne
operationId: MainTotalteacher.findOne
parameters:
- name: filter
in: query
......@@ -17761,14 +17761,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
deprecated: false
/MainVrorders/update:
/MainTotalteachers/update:
post:
tags:
- MainVrorder
- MainTotalteacher
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainVrorder.updateAll
operationId: MainTotalteacher.updateAll
parameters:
- name: where
in: query
......@@ -17782,7 +17782,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVrorder'
$ref: '#/definitions/MainTotalteacher'
responses:
'200':
description: Request was successful
......@@ -17795,12 +17795,12 @@ paths:
type: number
format: double
deprecated: false
/MainVrorders/count:
/MainTotalteachers/count:
get:
tags:
- MainVrorder
- MainTotalteacher
summary: Count instances of the model matched by where from the data source.
operationId: MainVrorder.count
operationId: MainTotalteacher.count
parameters:
- name: where
in: query
......@@ -17818,12 +17818,12 @@ paths:
type: number
format: double
deprecated: false
/MainVocations:
/MainTotalstudents:
post:
tags:
- MainVocation
- MainTotalstudent
summary: Create a new instance of the model and persist it into the data source.
operationId: MainVocation.create
operationId: MainTotalstudent.create
parameters:
- name: data
in: body
......@@ -17831,20 +17831,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
patch:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainVocation.patchOrCreate
operationId: MainTotalstudent.patchOrCreate
parameters:
- name: data
in: body
......@@ -17852,20 +17852,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
put:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVocation.replaceOrCreate__put_MainVocations
operationId: MainTotalstudent.replaceOrCreate__put_MainTotalstudents
parameters:
- name: data
in: body
......@@ -17873,18 +17873,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
get:
tags:
- MainVocation
- MainTotalstudent
summary: Find all instances of the model matched by filter from the data source.
operationId: MainVocation.find
operationId: MainTotalstudent.find
parameters:
- name: filter
in: query
......@@ -17903,16 +17903,16 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
/MainVocations/replaceOrCreate:
/MainTotalstudents/replaceOrCreate:
post:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainVocation.replaceOrCreate__post_MainVocations_replaceOrCreate
operationId: MainTotalstudent.replaceOrCreate__post_MainTotalstudents_replaceOrCreate
parameters:
- name: data
in: body
......@@ -17920,21 +17920,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
/MainVocations/upsertWithWhere:
/MainTotalstudents/upsertWithWhere:
post:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainVocation.upsertWithWhere
operationId: MainTotalstudent.upsertWithWhere
parameters:
- name: where
in: query
......@@ -17948,19 +17948,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
'/MainVocations/{id}/exists':
'/MainTotalstudents/{id}/exists':
get:
tags:
- MainVocation
- MainTotalstudent
summary: Check whether a model instance exists in the data source.
operationId: 'MainVocation.exists__get_MainVocations_{id}_exists'
operationId: 'MainTotalstudent.exists__get_MainTotalstudents_{id}_exists'
parameters:
- name: id
in: path
......@@ -17977,12 +17977,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainVocations/{id}':
'/MainTotalstudents/{id}':
head:
tags:
- MainVocation
- MainTotalstudent
summary: Check whether a model instance exists in the data source.
operationId: 'MainVocation.exists__head_MainVocations_{id}'
operationId: 'MainTotalstudent.exists__head_MainTotalstudents_{id}'
parameters:
- name: id
in: path
......@@ -18001,9 +18001,9 @@ paths:
deprecated: false
get:
tags:
- MainVocation
- MainTotalstudent
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainVocation.findById
operationId: MainTotalstudent.findById
parameters:
- name: id
in: path
......@@ -18023,15 +18023,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
put:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVocation.replaceById__put_MainVocations_{id}'
operationId: 'MainTotalstudent.replaceById__put_MainTotalstudents_{id}'
parameters:
- name: id
in: path
......@@ -18045,18 +18045,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
delete:
tags:
- MainVocation
- MainTotalstudent
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainVocation.deleteById
operationId: MainTotalstudent.deleteById
parameters:
- name: id
in: path
......@@ -18072,15 +18072,15 @@ paths:
deprecated: false
patch:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainVocation.prototype.patchAttributes
operationId: MainTotalstudent.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainVocation id
description: MainTotalstudent id
required: true
type: string
format: JSON
......@@ -18090,21 +18090,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
'/MainVocations/{id}/replace':
'/MainTotalstudents/{id}/replace':
post:
tags:
- MainVocation
- MainTotalstudent
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainVocation.replaceById__post_MainVocations_{id}_replace'
operationId: 'MainTotalstudent.replaceById__post_MainTotalstudents_{id}_replace'
parameters:
- name: id
in: path
......@@ -18118,19 +18118,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
/MainVocations/findOne:
/MainTotalstudents/findOne:
get:
tags:
- MainVocation
- MainTotalstudent
summary: Find first instance of the model matched by filter from the data source.
operationId: MainVocation.findOne
operationId: MainTotalstudent.findOne
parameters:
- name: filter
in: query
......@@ -18147,14 +18147,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
deprecated: false
/MainVocations/update:
/MainTotalstudents/update:
post:
tags:
- MainVocation
- MainTotalstudent
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainVocation.updateAll
operationId: MainTotalstudent.updateAll
parameters:
- name: where
in: query
......@@ -18168,7 +18168,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainVocation'
$ref: '#/definitions/MainTotalstudent'
responses:
'200':
description: Request was successful
......@@ -18181,12 +18181,12 @@ paths:
type: number
format: double
deprecated: false
/MainVocations/count:
/MainTotalstudents/count:
get:
tags:
- MainVocation
- MainTotalstudent
summary: Count instances of the model matched by where from the data source.
operationId: MainVocation.count
operationId: MainTotalstudent.count
parameters:
- name: where
in: query
......@@ -18204,12 +18204,12 @@ paths:
type: number
format: double
deprecated: false
/MainTotalteachers:
/MainRevenuetopeights:
post:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Create a new instance of the model and persist it into the data source.
operationId: MainTotalteacher.create
operationId: MainRevenuetopeight.create
parameters:
- name: data
in: body
......@@ -18217,20 +18217,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
patch:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainTotalteacher.patchOrCreate
operationId: MainRevenuetopeight.patchOrCreate
parameters:
- name: data
in: body
......@@ -18238,20 +18238,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
put:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainTotalteacher.replaceOrCreate__put_MainTotalteachers
operationId: MainRevenuetopeight.replaceOrCreate__put_MainRevenuetopeights
parameters:
- name: data
in: body
......@@ -18259,18 +18259,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
get:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Find all instances of the model matched by filter from the data source.
operationId: MainTotalteacher.find
operationId: MainRevenuetopeight.find
parameters:
- name: filter
in: query
......@@ -18289,16 +18289,17 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
/MainTotalteachers/replaceOrCreate:
/MainRevenuetopeights/replaceOrCreate:
post:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainTotalteacher.replaceOrCreate__post_MainTotalteachers_replaceOrCreate
operationId: >-
MainRevenuetopeight.replaceOrCreate__post_MainRevenuetopeights_replaceOrCreate
parameters:
- name: data
in: body
......@@ -18306,21 +18307,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
/MainTotalteachers/upsertWithWhere:
/MainRevenuetopeights/upsertWithWhere:
post:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainTotalteacher.upsertWithWhere
operationId: MainRevenuetopeight.upsertWithWhere
parameters:
- name: where
in: query
......@@ -18334,19 +18335,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
'/MainTotalteachers/{id}/exists':
'/MainRevenuetopeights/{id}/exists':
get:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Check whether a model instance exists in the data source.
operationId: 'MainTotalteacher.exists__get_MainTotalteachers_{id}_exists'
operationId: 'MainRevenuetopeight.exists__get_MainRevenuetopeights_{id}_exists'
parameters:
- name: id
in: path
......@@ -18363,12 +18364,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainTotalteachers/{id}':
'/MainRevenuetopeights/{id}':
head:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Check whether a model instance exists in the data source.
operationId: 'MainTotalteacher.exists__head_MainTotalteachers_{id}'
operationId: 'MainRevenuetopeight.exists__head_MainRevenuetopeights_{id}'
parameters:
- name: id
in: path
......@@ -18387,9 +18388,9 @@ paths:
deprecated: false
get:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainTotalteacher.findById
operationId: MainRevenuetopeight.findById
parameters:
- name: id
in: path
......@@ -18409,15 +18410,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
put:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainTotalteacher.replaceById__put_MainTotalteachers_{id}'
operationId: 'MainRevenuetopeight.replaceById__put_MainRevenuetopeights_{id}'
parameters:
- name: id
in: path
......@@ -18431,18 +18432,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
delete:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainTotalteacher.deleteById
operationId: MainRevenuetopeight.deleteById
parameters:
- name: id
in: path
......@@ -18458,15 +18459,15 @@ paths:
deprecated: false
patch:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainTotalteacher.prototype.patchAttributes
operationId: MainRevenuetopeight.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainTotalteacher id
description: MainRevenuetopeight id
required: true
type: string
format: JSON
......@@ -18476,21 +18477,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
'/MainTotalteachers/{id}/replace':
'/MainRevenuetopeights/{id}/replace':
post:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainTotalteacher.replaceById__post_MainTotalteachers_{id}_replace'
operationId: 'MainRevenuetopeight.replaceById__post_MainRevenuetopeights_{id}_replace'
parameters:
- name: id
in: path
......@@ -18504,19 +18505,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
/MainTotalteachers/findOne:
/MainRevenuetopeights/findOne:
get:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Find first instance of the model matched by filter from the data source.
operationId: MainTotalteacher.findOne
operationId: MainRevenuetopeight.findOne
parameters:
- name: filter
in: query
......@@ -18533,14 +18534,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
deprecated: false
/MainTotalteachers/update:
/MainRevenuetopeights/update:
post:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainTotalteacher.updateAll
operationId: MainRevenuetopeight.updateAll
parameters:
- name: where
in: query
......@@ -18554,7 +18555,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalteacher'
$ref: '#/definitions/MainRevenuetopeight'
responses:
'200':
description: Request was successful
......@@ -18567,12 +18568,12 @@ paths:
type: number
format: double
deprecated: false
/MainTotalteachers/count:
/MainRevenuetopeights/count:
get:
tags:
- MainTotalteacher
- MainRevenuetopeight
summary: Count instances of the model matched by where from the data source.
operationId: MainTotalteacher.count
operationId: MainRevenuetopeight.count
parameters:
- name: where
in: query
......@@ -18590,12 +18591,12 @@ paths:
type: number
format: double
deprecated: false
/MainTotalstudents:
/MainVrorders:
post:
tags:
- MainTotalstudent
- MainVrorder
summary: Create a new instance of the model and persist it into the data source.
operationId: MainTotalstudent.create
operationId: MainVrorder.create
parameters:
- name: data
in: body
......@@ -18603,20 +18604,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
patch:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainTotalstudent.patchOrCreate
operationId: MainVrorder.patchOrCreate
parameters:
- name: data
in: body
......@@ -18624,20 +18625,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
put:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainTotalstudent.replaceOrCreate__put_MainTotalstudents
operationId: MainVrorder.replaceOrCreate__put_MainVrorders
parameters:
- name: data
in: body
......@@ -18645,18 +18646,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
get:
tags:
- MainTotalstudent
- MainVrorder
summary: Find all instances of the model matched by filter from the data source.
operationId: MainTotalstudent.find
operationId: MainVrorder.find
parameters:
- name: filter
in: query
......@@ -18675,16 +18676,16 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
/MainTotalstudents/replaceOrCreate:
/MainVrorders/replaceOrCreate:
post:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainTotalstudent.replaceOrCreate__post_MainTotalstudents_replaceOrCreate
operationId: MainVrorder.replaceOrCreate__post_MainVrorders_replaceOrCreate
parameters:
- name: data
in: body
......@@ -18692,21 +18693,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
/MainTotalstudents/upsertWithWhere:
/MainVrorders/upsertWithWhere:
post:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainTotalstudent.upsertWithWhere
operationId: MainVrorder.upsertWithWhere
parameters:
- name: where
in: query
......@@ -18720,19 +18721,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
'/MainTotalstudents/{id}/exists':
'/MainVrorders/{id}/exists':
get:
tags:
- MainTotalstudent
- MainVrorder
summary: Check whether a model instance exists in the data source.
operationId: 'MainTotalstudent.exists__get_MainTotalstudents_{id}_exists'
operationId: 'MainVrorder.exists__get_MainVrorders_{id}_exists'
parameters:
- name: id
in: path
......@@ -18749,12 +18750,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainTotalstudents/{id}':
'/MainVrorders/{id}':
head:
tags:
- MainTotalstudent
- MainVrorder
summary: Check whether a model instance exists in the data source.
operationId: 'MainTotalstudent.exists__head_MainTotalstudents_{id}'
operationId: 'MainVrorder.exists__head_MainVrorders_{id}'
parameters:
- name: id
in: path
......@@ -18773,9 +18774,9 @@ paths:
deprecated: false
get:
tags:
- MainTotalstudent
- MainVrorder
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainTotalstudent.findById
operationId: MainVrorder.findById
parameters:
- name: id
in: path
......@@ -18795,15 +18796,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
put:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainTotalstudent.replaceById__put_MainTotalstudents_{id}'
operationId: 'MainVrorder.replaceById__put_MainVrorders_{id}'
parameters:
- name: id
in: path
......@@ -18817,18 +18818,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
delete:
tags:
- MainTotalstudent
- MainVrorder
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainTotalstudent.deleteById
operationId: MainVrorder.deleteById
parameters:
- name: id
in: path
......@@ -18844,15 +18845,15 @@ paths:
deprecated: false
patch:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainTotalstudent.prototype.patchAttributes
operationId: MainVrorder.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainTotalstudent id
description: MainVrorder id
required: true
type: string
format: JSON
......@@ -18862,21 +18863,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
'/MainTotalstudents/{id}/replace':
'/MainVrorders/{id}/replace':
post:
tags:
- MainTotalstudent
- MainVrorder
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainTotalstudent.replaceById__post_MainTotalstudents_{id}_replace'
operationId: 'MainVrorder.replaceById__post_MainVrorders_{id}_replace'
parameters:
- name: id
in: path
......@@ -18890,19 +18891,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
/MainTotalstudents/findOne:
/MainVrorders/findOne:
get:
tags:
- MainTotalstudent
- MainVrorder
summary: Find first instance of the model matched by filter from the data source.
operationId: MainTotalstudent.findOne
operationId: MainVrorder.findOne
parameters:
- name: filter
in: query
......@@ -18919,14 +18920,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
deprecated: false
/MainTotalstudents/update:
/MainVrorders/update:
post:
tags:
- MainTotalstudent
- MainVrorder
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainTotalstudent.updateAll
operationId: MainVrorder.updateAll
parameters:
- name: where
in: query
......@@ -18940,7 +18941,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainTotalstudent'
$ref: '#/definitions/MainVrorder'
responses:
'200':
description: Request was successful
......@@ -18953,12 +18954,12 @@ paths:
type: number
format: double
deprecated: false
/MainTotalstudents/count:
/MainVrorders/count:
get:
tags:
- MainTotalstudent
- MainVrorder
summary: Count instances of the model matched by where from the data source.
operationId: MainTotalstudent.count
operationId: MainVrorder.count
parameters:
- name: where
in: query
......@@ -18976,12 +18977,12 @@ paths:
type: number
format: double
deprecated: false
/MainRevenuetopeights:
/MainVrrevenues:
post:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Create a new instance of the model and persist it into the data source.
operationId: MainRevenuetopeight.create
operationId: MainVrrevenue.create
parameters:
- name: data
in: body
......@@ -18989,20 +18990,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
patch:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Patch an existing model instance or insert a new one into the data
source.
operationId: MainRevenuetopeight.patchOrCreate
operationId: MainVrrevenue.patchOrCreate
parameters:
- name: data
in: body
......@@ -19010,20 +19011,20 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
put:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: MainRevenuetopeight.replaceOrCreate__put_MainRevenuetopeights
operationId: MainVrrevenue.replaceOrCreate__put_MainVrrevenues
parameters:
- name: data
in: body
......@@ -19031,18 +19032,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
get:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Find all instances of the model matched by filter from the data source.
operationId: MainRevenuetopeight.find
operationId: MainVrrevenue.find
parameters:
- name: filter
in: query
......@@ -19061,17 +19062,16 @@ paths:
schema:
type: array
items:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
/MainRevenuetopeights/replaceOrCreate:
/MainVrrevenues/replaceOrCreate:
post:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Replace an existing model instance or insert a new one into the data
source.
operationId: >-
MainRevenuetopeight.replaceOrCreate__post_MainRevenuetopeights_replaceOrCreate
operationId: MainVrrevenue.replaceOrCreate__post_MainVrrevenues_replaceOrCreate
parameters:
- name: data
in: body
......@@ -19079,21 +19079,21 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
/MainRevenuetopeights/upsertWithWhere:
/MainVrrevenues/upsertWithWhere:
post:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Update an existing model instance or insert a new one into the data
source based on the where criteria.
operationId: MainRevenuetopeight.upsertWithWhere
operationId: MainVrrevenue.upsertWithWhere
parameters:
- name: where
in: query
......@@ -19107,19 +19107,19 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
'/MainRevenuetopeights/{id}/exists':
'/MainVrrevenues/{id}/exists':
get:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Check whether a model instance exists in the data source.
operationId: 'MainRevenuetopeight.exists__get_MainRevenuetopeights_{id}_exists'
operationId: 'MainVrrevenue.exists__get_MainVrrevenues_{id}_exists'
parameters:
- name: id
in: path
......@@ -19136,12 +19136,12 @@ paths:
exists:
type: boolean
deprecated: false
'/MainRevenuetopeights/{id}':
'/MainVrrevenues/{id}':
head:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Check whether a model instance exists in the data source.
operationId: 'MainRevenuetopeight.exists__head_MainRevenuetopeights_{id}'
operationId: 'MainVrrevenue.exists__head_MainVrrevenues_{id}'
parameters:
- name: id
in: path
......@@ -19160,9 +19160,9 @@ paths:
deprecated: false
get:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: 'Find a model instance by {{id}} from the data source.'
operationId: MainRevenuetopeight.findById
operationId: MainVrrevenue.findById
parameters:
- name: id
in: path
......@@ -19182,15 +19182,15 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
put:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainRevenuetopeight.replaceById__put_MainRevenuetopeights_{id}'
operationId: 'MainVrrevenue.replaceById__put_MainVrrevenues_{id}'
parameters:
- name: id
in: path
......@@ -19204,18 +19204,18 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
delete:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: 'Delete a model instance by {{id}} from the data source.'
operationId: MainRevenuetopeight.deleteById
operationId: MainVrrevenue.deleteById
parameters:
- name: id
in: path
......@@ -19231,15 +19231,15 @@ paths:
deprecated: false
patch:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Patch attributes for a model instance and persist it into the data
source.
operationId: MainRevenuetopeight.prototype.patchAttributes
operationId: MainVrrevenue.prototype.patchAttributes
parameters:
- name: id
in: path
description: MainRevenuetopeight id
description: MainVrrevenue id
required: true
type: string
format: JSON
......@@ -19249,21 +19249,21 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
'/MainRevenuetopeights/{id}/replace':
'/MainVrrevenues/{id}/replace':
post:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: >-
Replace attributes for a model instance and persist it into the data
source.
operationId: 'MainRevenuetopeight.replaceById__post_MainRevenuetopeights_{id}_replace'
operationId: 'MainVrrevenue.replaceById__post_MainVrrevenues_{id}_replace'
parameters:
- name: id
in: path
......@@ -19277,19 +19277,19 @@ paths:
required: false
schema:
description: Model instance data
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
/MainRevenuetopeights/findOne:
/MainVrrevenues/findOne:
get:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Find first instance of the model matched by filter from the data source.
operationId: MainRevenuetopeight.findOne
operationId: MainVrrevenue.findOne
parameters:
- name: filter
in: query
......@@ -19306,14 +19306,14 @@ paths:
'200':
description: Request was successful
schema:
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
deprecated: false
/MainRevenuetopeights/update:
/MainVrrevenues/update:
post:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: 'Update instances of the model matched by {{where}} from the data source.'
operationId: MainRevenuetopeight.updateAll
operationId: MainVrrevenue.updateAll
parameters:
- name: where
in: query
......@@ -19327,7 +19327,7 @@ paths:
required: false
schema:
description: An object of model property name/value pairs
$ref: '#/definitions/MainRevenuetopeight'
$ref: '#/definitions/MainVrrevenue'
responses:
'200':
description: Request was successful
......@@ -19340,12 +19340,12 @@ paths:
type: number
format: double
deprecated: false
/MainRevenuetopeights/count:
/MainVrrevenues/count:
get:
tags:
- MainRevenuetopeight
- MainVrrevenue
summary: Count instances of the model matched by where from the data source.
operationId: MainRevenuetopeight.count
operationId: MainVrrevenue.count
parameters:
- name: where
in: query
......@@ -20193,13 +20193,13 @@ definitions:
required:
- name
additionalProperties: false
MainVrrevenue:
MainVocation:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 8
maxLength: 5
type: string
value:
type: number
......@@ -20207,13 +20207,13 @@ definitions:
required:
- name
additionalProperties: false
MainVrorder:
MainTotalteacher:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 8
maxLength: 4
type: string
value:
type: number
......@@ -20221,13 +20221,13 @@ definitions:
required:
- name
additionalProperties: false
MainVocation:
MainTotalstudent:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 5
maxLength: 4
type: string
value:
type: number
......@@ -20235,42 +20235,32 @@ definitions:
required:
- name
additionalProperties: false
MainTotalteacher:
MainRevenuetopeight:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 4
maxLength: 200
type: string
value:
type: number
format: double
required:
- name
additionalProperties: false
MainTotalstudent:
MainVrorder:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 4
type: string
value:
type: number
format: double
required:
- name
additionalProperties: false
MainRevenuetopeight:
MainVrrevenue:
properties:
id:
maxLength: 36
type: string
name:
maxLength: 200
type: string
value:
type: number
format: double
......
......@@ -189,27 +189,27 @@
"dataSource": "ruipeng",
"public": true
},
"MainVrrevenue": {
"MainVocation": {
"dataSource": "ruipeng",
"public": true
},
"MainVrorder": {
"MainTotalteacher": {
"dataSource": "ruipeng",
"public": true
},
"MainVocation": {
"MainTotalstudent": {
"dataSource": "ruipeng",
"public": true
},
"MainTotalteacher": {
"MainRevenuetopeight": {
"dataSource": "ruipeng",
"public": true
},
"MainTotalstudent": {
"MainVrorder": {
"dataSource": "ruipeng",
"public": true
},
"MainRevenuetopeight": {
"MainVrrevenue": {
"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