package com.usky.vpp.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.time.LocalDateTime; /** * vpp_device_control_log */ @Data @EqualsAndHashCode(callSuper = false) @TableName("vpp_device_control_log") public class VppDeviceControlLog implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.ASSIGN_ID) private Long id; @TableField("device_id") private Long deviceId; @TableField("control_type") private String controlType; @TableField("control_params") private String controlParams; @TableField("control_result") private Integer controlResult; @TableField("result_message") private String resultMessage; @TableField("operator_id") private Long operatorId; @TableField("operated_at") private LocalDateTime operatedAt; }