whyclxw
5 天以前 a87fc3c9375d5d77017d9dff8dc1ea425acb932d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.whyc.pojo.db_param;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 * 电源心跳配置参数表
 * </p>
 *
 * @author lxw
 * @since 2025-06-21
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_param",value ="tb_powerheart_param")
@ApiModel(value="PowerheartParam对象", description="电源心跳配置参数表")
public class PowerheartParam implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "自增主键")
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @ApiModelProperty(value = "电源ID")
    private Integer powerId;
 
    @ApiModelProperty(value = "交流输入曲线数据间隔(分钟)")
    private Integer acinInterverCfg;
 
    @ApiModelProperty(value = "交流输入展示笔数")
    private Integer acinCountCfg;
 
    @ApiModelProperty(value = "直流输入间隔配置(分钟)")
    private Integer acoutInterverCfg;
 
    @ApiModelProperty(value = "直流输入展示笔数")
    private Integer acoutCountCfg;
 
    @ApiModelProperty(value = "核容设备信息间隔配置(分钟)")
    private Integer hrInterverCfg;
 
    @ApiModelProperty(value = "核容设备信息展示笔数")
    private Integer hrCountCfg;
 
 
}