| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "基于TCP连接的IFSF协议的 恒山中油加油机 配置, 且工作于只读模式下",
- "type": "object",
- "format": "grid",
- "properties": {
- "HiddenIcCardAuthorizedFuelTrxToFdcServerApp": {
- "title": "忽略由 油机端插IC卡 而授权的加油交易",
- "type": "boolean",
- "default": true,
- "readOnly": false,
- "options": {
- "infoText": "如此项被设置为 true, 则由中油油机端先插入卡片而得到授权从而开始的加油交易, 在加油完成后, 不会被发送至 FdcServerApp, 即不会被 SmartFuel POS 以获取, 以避免重复支付",
- "grid_columns": 12
- }
- },
- "FccIfsfSubnetValue": {
- "title": "中控IFSF子网值",
- "type": "integer",
- "default": 2,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "FCC Ifsf Subnet,此值应与油机端配置中的相应值一致,即图中的Subnet Addr值,且与油机的Subnet Address值区分",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_fcc_subnet.png",
- "mediaType": "image"
- }
- ]
- },
- "FccIfsfNodeValue": {
- "title": "中控IFSF节点",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "FCC Ifsf Node,此值应与油机端配置中的相应值一致,即图中的Node Addr值",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_fcc_node.png",
- "mediaType": "image"
- }
- ]
- },
- "PumpIfsfSubnetValue": {
- "title": "油机IFSF子网",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "Pump Ifsf Subnet,一般油机出厂即默认此值为1,一般无需更改,请与FCC的Subnet值区分",
- "grid_columns": 3
- }
- },
- "PumpIfsfNodeValue": {
- "title": "油机IFSF子网",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "Pump Ifsf Node,每一通讯链路中的各台油机需此值各异, 油机遥控器设置选项: Main Menu –> Configuration –> Communication –> Comm Board – Node Address ",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_pump_node.png",
- "mediaType": "image"
- }
- ]
- },
- "PumpConfigurations": {
- "title": "所有加油点",
- "type": "array",
- "format": "grid",
- "uniqueItems": true,
- "items": {
- "type": "object",
- "title": "加油点",
- "format": "grid",
- "required": [ "PumpId", "PhysicalId", "NozzleConfigurations" ],
- "properties": {
- "PumpId": {
- "title": "加油点号(即PumpId)",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "",
- "grid_columns": 6
- }
- },
- "PhysicalId": {
- "title": "加油点IFSF物理地址",
- "type": "integer",
- "enum": [ 33, 34, 35, 36 ],
- "options": {
- "enum_titles": [ "0x21", "0x22", "0x23", "0x24" ],
- "grid_columns": 6
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsfPumpBoard_pump_nozzle_id.png",
- "mediaType": "image"
- }
- ]
- },
- "NozzleConfigurations": {
- "type": "array",
- "format": "tabs",
- "title": "所有油枪",
- "uniqueItems": true,
- "options": {
- "infoText": "",
- "grid_columns": 12
- },
- "items": {
- "type": "object",
- "title": "油枪",
- "required": [ "LogicalId", "PhysicalId" ],
- "format": "grid",
- "properties": {
- "LogicalId": {
- "title": "油枪逻辑号(Ifsf Fdc LogicalNozzle Id)",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 8
- },
- "PhysicalId": {
- "title": "油枪IFSF物理地址",
- "type": "integer",
- "enum": [ 17, 18, 19, 20, 21, 22, 23, 24 ],
- "options": {
- "enum_titles": [ "0x11", "0x12", "0x13", "0x14", "0x15", "0x16", "0x17", "0x18" ]
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
|