123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "lang-zh-cn:英高系统数据库lang-en-us:EagleStar System Database",
- "type": "object",
- "required": [ "DatabaseConnectionString", "PriceDecimalDigits", "AmountDecimalDigits", "VolumeDecimalDigits", "VolumeTotalizerDecimalDigits" ],
- "format": "grid",
- "properties": {
- "DatabaseConnectionString": {
- "title": "lang-zh-cn:数据库连接字符串lang-en-us:Database connection string",
- "type": "string",
- "default": "Data Source=192.168.3.35\\AUDUCSYXSXKEVGJ,1180;Initial Catalog=moms;User ID=gc;Password=gc12345",
- "options": {
- "grid_columns": 12
- }
- },
- "PriceDecimalDigits": {
- "title": "lang-zh-cn:油品单价数值中的小数点位数 设置lang-en-us:Decimal digits in Fuel Product Price",
- "type": "integer",
- "default": 2,
- "minimum": 0,
- "maximum": 10,
- "options": {
- "grid_columns": 2
- }
- },
- "AmountDecimalDigits": {
- "title": "lang-zh-cn:交易总金额数值中的小数点位数 设置lang-en-us:Decimal digits in Trx Amount",
- "type": "integer",
- "default": 2,
- "minimum": 0,
- "maximum": 10,
- "options": {
- "grid_columns": 2
- }
- },
- "VolumeDecimalDigits": {
- "title": "lang-zh-cn:交易升数数值中的小数点位数 设置lang-en-us:Decimal digits in Trx Volume",
- "type": "integer",
- "default": 2,
- "minimum": 0,
- "maximum": 10,
- "options": {
- "grid_columns": 2
- }
- },
- "VolumeTotalizerDecimalDigits": {
- "title": "lang-zh-cn:油机升数累积读数数值中的小数点位数 设置lang-en-us:Decimal digits in Volume Totalizer",
- "type": "integer",
- "default": 2,
- "minimum": 0,
- "maximum": 10,
- "options": {
- "grid_columns": 2
- }
- }
- }
- }
|