Files
yinyitong-zhongyuyuan-dll-s…/src/main/java/com/dpkj/common/dto/LexMarkDTO.java

64 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.dpkj.common.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import java.io.Serializable;
/**
* 利盟请求参数DTO
*
* @author <a href="https://gitee.com/shi-chongli">石头人</a>
* @version 1.0
* @since 2025-02-08 10:46:44
*/
@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
public class LexMarkDTO implements Serializable {
/**
* 默认异步
* 0:代表同步1:代表异步3:代表属性
*/
private Integer methodType = 1;
/**
* 默认com.gwi.device
* 插件名称如果是设备调用则固定填写com.gwi.device如果是插件调用此处填
* 写插件动态库文件名去掉文件名前面的lib和文件后缀名GWI_Plugin
*/
private String pluginName = "com.gwi.device";
/**
* 固定填写execute
*/
private String pluginMethod = "execute";
/**
* 设备名。如果是设备调用则填写设备名称需要和SP服务配置中的 DevList.ini 配置的设备名称一致;
* 如果是插件调用,可忽略此参数
*/
private String devName;
/**
* 调用id应用生成用于区分不同的调用
*/
private Integer callID;
/**
* 调用的函数名称,设备执行的动作名称,简称动作名
*/
private String actionName;
/**
* 设备执行的输入参数格式为json字符串注意此处为字符串不是json对象
*/
private String param;
}