electripper/electripper-system/src/main/java/com/ruoyi/system/domain/EtCommandLog.java

83 lines
1.6 KiB
Java
Raw Normal View History

2024-07-08 14:18:58 +08:00
package com.ruoyi.system.domain;
2025-03-04 11:15:42 +08:00
import com.baomidou.mybatisplus.annotation.TableField;
2024-07-08 14:18:58 +08:00
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
2024-07-08 14:18:58 +08:00
/**
* 命令日志对象 et_command_log
*
* @author 邱贞招
* @date 2024-07-06
*/
@Data
public class EtCommandLog extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 请求url */
@Excel(name = "请求url")
private String url;
/** 命令 */
@Excel(name = "命令")
private String command;
/** 类型 */
@Excel(name = "类型")
private String type;
/** mac */
@Excel(name = "mac")
private String mac;
/** sn */
@Excel(name = "sn")
private String sn;
/** 响应 */
@Excel(name = "响应")
private String result;
2024-07-15 10:02:56 +08:00
/** 经度 */
@Excel(name = "经度")
private String longitude;
/** 纬度 */
@Excel(name = "纬度")
private String latitude;
/** 手机经度 */
@Excel(name = "经度")
private String lon;
/** 手机纬度 */
@Excel(name = "纬度")
private String lat;
2024-07-15 10:02:56 +08:00
/** 回调状态 */
@Excel(name = "回调状态")
private String callStatus;
/** 订单号 */
@Excel(name = "订单号")
private String orderNo;
2024-07-08 14:18:58 +08:00
/** onenet上报的消息 */
@Excel(name = "onenet上报的消息")
private String msg;
2025-03-04 11:15:42 +08:00
/** 排序 */
@TableField(exist = false)
private String sortOrder;
// /** 是否蓝牙控制 0-否1-是否 */
// @Excel(name = "是否蓝牙控制 0-否1-是否 ")
// private String isBluetooth;
2024-07-08 14:18:58 +08:00
}