Commit 83dde14a authored by 余海军's avatar 余海军

add

parent af46a32e
'use strict';
module.exports = function(Interage) {
};
{
"name": "InterAge",
"base": "PersistedModel",
"idInjection": false,
"options": {
"validateUpsert": true
},
"mysql": {
"schema": "wordpress",
"table": "inter_age"
},
"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": 50,
"precision": null,
"scale": null,
"mysql": {
"columnName": "name",
"dataType": "varchar",
"dataLength": 50,
"dataPrecision": null,
"dataScale": null,
"nullable": "Y"
}
},
"value": {
"type": "Number",
"required": false,
"length": null,
"precision": 11,
"scale": 2,
"mysql": {
"columnName": "value",
"dataType": "float",
"dataLength": null,
"dataPrecision": 11,
"dataScale": 2,
"nullable": "Y"
}
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": {}
}
This diff is collapsed.
...@@ -692,5 +692,9 @@ ...@@ -692,5 +692,9 @@
"BillCategory": { "BillCategory": {
"dataSource": "ruipeng", "dataSource": "ruipeng",
"public": true "public": true
},
"InterAge": {
"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