PumpGroupCtorParamsJsonSchemas.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema",
  3. "title": "lang-zh-cn:英高系统数据库lang-en-us:EagleStar System Database",
  4. "type": "object",
  5. "required": [ "DatabaseConnectionString", "PriceDecimalDigits", "AmountDecimalDigits", "VolumeDecimalDigits", "VolumeTotalizerDecimalDigits" ],
  6. "format": "grid",
  7. "properties": {
  8. "DatabaseConnectionString": {
  9. "title": "lang-zh-cn:数据库连接字符串lang-en-us:Database connection string",
  10. "type": "string",
  11. "default": "Data Source=192.168.3.35\\AUDUCSYXSXKEVGJ,1180;Initial Catalog=moms;User ID=gc;Password=gc12345",
  12. "options": {
  13. "grid_columns": 12
  14. }
  15. },
  16. "PriceDecimalDigits": {
  17. "title": "lang-zh-cn:油品单价数值中的小数点位数 设置lang-en-us:Decimal digits in Fuel Product Price",
  18. "type": "integer",
  19. "default": 2,
  20. "minimum": 0,
  21. "maximum": 10,
  22. "options": {
  23. "grid_columns": 2
  24. }
  25. },
  26. "AmountDecimalDigits": {
  27. "title": "lang-zh-cn:交易总金额数值中的小数点位数 设置lang-en-us:Decimal digits in Trx Amount",
  28. "type": "integer",
  29. "default": 2,
  30. "minimum": 0,
  31. "maximum": 10,
  32. "options": {
  33. "grid_columns": 2
  34. }
  35. },
  36. "VolumeDecimalDigits": {
  37. "title": "lang-zh-cn:交易升数数值中的小数点位数 设置lang-en-us:Decimal digits in Trx Volume",
  38. "type": "integer",
  39. "default": 2,
  40. "minimum": 0,
  41. "maximum": 10,
  42. "options": {
  43. "grid_columns": 2
  44. }
  45. },
  46. "VolumeTotalizerDecimalDigits": {
  47. "title": "lang-zh-cn:油机升数累积读数数值中的小数点位数 设置lang-en-us:Decimal digits in Volume Totalizer",
  48. "type": "integer",
  49. "default": 2,
  50. "minimum": 0,
  51. "maximum": 10,
  52. "options": {
  53. "grid_columns": 2
  54. }
  55. }
  56. }
  57. }