Commit 86b6bd86 authored by 余海军's avatar 余海军

总订单量

parent 466a29fa
'use strict';
module.exports = function(Teachers) {
module.exports = function(Physical) {
};
{
"name": "Teachers",
"name": "Physical",
"base": "PersistedModel",
"idInjection": false,
"options": {
......@@ -7,7 +7,7 @@
},
"mysql": {
"schema": "wordpress",
"table": "teachers"
"table": "physical"
},
"properties": {
"id": {
......@@ -25,18 +25,33 @@
"nullable": "Y"
}
},
"name": {
"type": "String",
"required": true,
"length": 4,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 4,
"dataPrecision": null,
"dataScale": null,
"nullable": "N"
}
},
"value": {
"type": "Number",
"required": false,
"length": null,
"precision": 23,
"scale": null,
"precision": 32,
"scale": 0,
"mysql": {
"columnName": "value",
"dataType": "double",
"dataType": "decimal",
"dataLength": null,
"dataPrecision": 23,
"dataScale": null,
"dataPrecision": 32,
"dataScale": 0,
"nullable": "Y"
}
}
......
This diff is collapsed.
......@@ -69,11 +69,11 @@
"dataSource": "ruipeng",
"public": true
},
"Teachers": {
"Revenue": {
"dataSource": "ruipeng",
"public": true
},
"Revenue": {
"Physical": {
"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