All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.foxtech.device.protocol.v1.zktl.electric.entity.ZktlConfigEntity Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/* ----------------------------------------------------------------------------
 * Copyright (c) Guangzhou Fox-Tech Co., Ltd. 2020-2024. All rights reserved.
 * --------------------------------------------------------------------------- */

package cn.foxtech.device.protocol.v1.zktl.electric.entity;

import lombok.Getter;
import lombok.Setter;

/**
 * 设备的配置命令为:SETxxx=yyyAA的格式,xxx是大写的命令字,yyy是命令字规定的数值格式
 * 例如:
 * SETCH=255AA
 * SETUL=200VAA
 * SETINH=500mAAA
 */
@Getter
@Setter
public class ZktlConfigEntity {
    /**
     * 命令
     */
    private String cmd = "";
    /**
     * 数值
     */
    private String value = "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy