NGToolsAdmin/uniCloud-aliyun/database/ngTools_SamplingLocation.schema.json
2024-09-13 16:39:31 +08:00

34 lines
665 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType": "object",
"required": [],
"permission": {
"read": true,
"create": true,
"update": true,
"delete": true
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"samplingLocation": {
"description": "取样地点",
"bsonType": "string",
"title": "取样地点",
"trim": "both"
},
"departName": {
"description": "单位名称",
"bsonType": "string",
"title": "单位名称",
"trim": "both"
},
"stationName": {
"description": "站场名称",
"bsonType": "string",
"title": "站场名称",
"trim": "both"
}
}
}