电能表预付费系统-标准传输规范(STS)(9)

ops/2024/10/18 10:13:10/

6.1.7 TI: TariffIndex(TI 费率指数)

A 2-digit number associated with a particular tariff that is allocated to a particular customer.
The maintenance and the content of the tariff tables are the responsibility of the utility.
        和具体费率有关的一个 2 位数字。此数字分配给具体客户。设施服务供应商负责费率表维护和费率表内容。

Values less than 10 shall be right justified and left padded with 0 (for example 01 , 02.. 09).
        这些值小于 10,其右边可变化,而左边为 0,如 01、02-09。
The TI is also encoded into the DecoderKey, which means that when a customer is moved from one TI to another, then his DecoderKey will also have to change (see 6.5.2.1 ).
        TI 还可以编码到 DecoderKey 中,表示当客户的 TI 号码变成另一个号码,则他们的 DecodeKey 应作更改。
参见 6.5.2.1。
NOTE The encoding of this value when used in the ControlBlock for Decoder Key Generation (see 6.5.3.2) is as two hexadecimal digits, whereas the encoding as used in the Set2ndSectionDecoderKey token (see 6.2.7.3) is as an 8 bit binary number. In these cases a tariff index of 99 decimal is encoded as binary string 10011001 and 01100011 respectively .
        注意:当在解密密钥生成控制块中使用此值时(见6.5.3.2节),其编码为两个十六进制数字,而在Set2ndSectionDecoderKey令牌中使用时(见6.2.7.3节),其编码为8位二进制数。在这些情况下,99的十进制编码分别对应于二进制串1001 1001和011 0001。
See also Clause C.10 for Code of practice on managing this data element.
        有关管理此数据元素的操作守则,请参见第C.10条。

6.1.8 KRN: KeyRevisionNumber

This is a 1-digit number in the range 1 to 9, which uniquely identifies a VendingKey within a SupplyGroup. A payment meter’s DecoderKey is associated with the SGC and KRN of the VendingKey from which it is derived.See 6.5.2.5 for a detailed definition of this data element. 

        这是一个1到9之间的1位数字,它唯一地标识了SupplyGroup中的VendingKey。支付计价器的解码器密钥与生成它的VendingKey的SGC和KRN相关联。有关该数据元素的详细定义,请参见6.5.2.5。 

6.1.9 KT: KeyType

This is a 1-digit number in the range 0 to 3 associated with a property of the VendingKey and thus also with the corresponding DecoderKey, which is derived from the VendingKey. See 6.5.2 for a detailed definition of this data element.

        这是一个0到3之间的1位数,与VendingKey的属性相关联,因此也与相应的DecoderKey相关联,后者由VendingKey派生而来。有关该数据元素的详细定义,请参见6.5.2。

 


http://www.ppmy.cn/ops/126450.html

相关文章

《15分钟轻松学Go》教程目录

在AI快速发展的时代,学习Go语言依然很有用。Go语言擅长处理高并发任务,也就是说可以同时处理很多请求,这对于需要快速响应的AI服务非常重要。另外,Go适合用来处理和传输大量数据,非常适合机器学习模型的数据预处理。 …

c# .net switch用法

在 C# 中,switch 语句用于基于表达式的值执行不同的代码块。switch 语句类似于一系列 if-else 语句,但通常更简洁、易读。以下是 switch 语句的基本用法和一些高级特性。 基本用法 csharp复制代码 using System; class Program { static void Main() {…

[权威出刊|稳定检索]2024年云计算、大数据与计算机应用技术国际会议(CCBDCAT 2024)

2024年云计算、大数据与计算机应用技术国际会议 2024 International Conference on Cloud Computing, Big Data, and Computer Application Technology 【1】大会信息 会议名称:2024年云计算、大数据与计算机应用技术国际会议 会议简称:CCBDCAT 2024 大…

git基础操作

“git” 文章目录 文章有误敬请斧正 不胜感恩! Git分布式版本控制工具1.目标:2.概述:3.git3.1git基本操作:常用命令配置git环境:git config --global创建本地空仓库:新建文件添加到本地仓库:git add、git commit -m添加到暂存区提…

k8s-NFS系统配置

NFS(network filesystem),nfs文件系统在k8s中主要用于持久化存储,可以被多个pod访问和共享数据。 特点 1、数据持久性 nfs为k8s的pod提供了一种持久化数据的方式,即使pod被删除,数据也不会丢失,这是因为数据存在nfs服务…

docker run和docker start的区别

docker run 和 docker start 是 Docker 中两个常用的命令,它们之间的区别主要在于以下几点: 1. **docker run**: - docker run 命令用于创建并启动一个新的容器。 - 当你运行 docker run 命令时,Docker 会在后台创建一个新…

在电脑上免费分区的 5 个有效磁盘分区软件工具

磁盘分区可能是一个脆弱而复杂的过程,磁盘崩溃或用户设备受到病毒攻击的风险很高。因此,它们很难由用户单独或手动管理。本文详细介绍了可以帮助简化磁盘分区过程的不同软件工具、它们的功能和优点。那么让我们开始吧。 什么是磁盘分区工具? …

Java 各种规则引擎

在软件开发中,经常会遇到需要根据不同的条件执行不同的业务逻辑的情况。为了提高代码的可维护性和灵活性,规则引擎应运而生。本文将详细介绍 Java 中的各种规则引擎,包括其概念、特点、使用场景以及示例。 一、规则引擎概述 (一&a…