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.math.BigDecimal; import java.time.LocalDateTime; /** * vpp_dr_event */ @Data @EqualsAndHashCode(callSuper = false) @TableName("vpp_dr_event") public class VppDrEvent implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @TableField("event_id") private String eventId; @TableField("event_name") private String eventName; @TableField("response_type") private Integer responseType; @TableField("event_type") private Integer eventType; @TableField("start_time") private LocalDateTime startTime; @TableField("end_time") private LocalDateTime endTime; @TableField("target_capacity_kw") private BigDecimal targetCapacityKw; @TableField("cleared_capacity_kw") private BigDecimal clearedCapacityKw; @TableField("subsidy_price") private BigDecimal subsidyPrice; @TableField("event_status") private Integer eventStatus; @TableField("raw_payload") private String rawPayload; @TableField("tenant_id") private Integer tenantId; @TableField("create_time") private LocalDateTime createTime; @TableField("update_time") private LocalDateTime updateTime; @TableField("created_by") private String createdBy; @TableField("updated_by") private String updatedBy; @TableField("delete_flag") private Integer deleteFlag; @TableField("deleted_at") private LocalDateTime deletedAt; }