| | |
| | | package com.dy.pipIrrGlobal.pojoRm; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-05-24 10:46 |
| | | * @LastEditTime 2024-05-24 10:46 |
| | | * @Description |
| | | */ |
| | | |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-05-21 16:53 |
| | | * @LastEditTime 2024-05-21 16:53 |
| | | * @Description 命令日志实体类 |
| | | */ |
| | | /** |
| | | * 命令日志表 |
| | | */ |
| | | |
| | | * 命令日志表 |
| | | */ |
| | | @TableName(value = "rm_command_history", autoResultMap = true) |
| | | @Data |
| | | @Builder |
| | | @ToString |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class RmCommandHistory implements BaseEntity{ |
| | | public class RmCommandHistory implements BaseEntity { |
| | | public static final long serialVersionUID = 202401151517005L; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @NotBlank(message = "通讯协议不能为空") |
| | | private String protocol; |
| | | |
| | | /** |
| | | * 命令类型 |
| | | */ |
| | | @NotBlank(message = "命令类型不能为空") |
| | | private String commandType; |
| | | |
| | | /** |
| | | * 回调URL |
| | | */ |
| | | @NotBlank(message = "回调URL不能为空") |
| | | private String callback; |
| | | |
| | | /** |
| | | * 参数数据 |