whyclxw
6 天以前 2753ad7aee272a5a5a8a0124b1feea5a1e4cc83e
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
package com.whyc.pojo.db_param;
 
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 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-19
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_param",value ="tb_power_property_param")
@ApiModel(value="PowerPropertyParam对象", description="电源性能评估参考字段配置表")
public class PowerPropertyParam implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "自增主键")
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @ApiModelProperty(value = "1:直流,2:通信,3配网")
    private Integer powerType;
 
    @ApiModelProperty(value = "字段名称")
    private String propertyName;
 
    @ApiModelProperty(value = "字段中文名称")
    private String propertyNameZh;
 
    @ApiModelProperty(value = "字段使能[0-未启用 1-启用]")
    private Integer fieldEn;
 
    @TableField(exist = false)
    private Float basisVal;
 
    @TableField(exist = false)
    private Float alarmLimithUpper;
 
    @TableField(exist = false)
    private Float alarmLimitlLower;
}