xuhy
2024-08-06 5c138f709b4ebc695a791df44a3a9e63653206ad
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.ruoyi.chargingPile.api.model;
 
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 com.ruoyi.common.core.web.domain.BaseModel;
import com.ruoyi.common.core.web.domain.BasePojo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 充电枪
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-06
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_charging_gun")
@ApiModel(value="TChargingGun对象", description="充电枪")
public class TChargingGun extends BasePojo {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "充电枪编号")
    @TableField("code")
    private String code;
 
    @ApiModelProperty(value = "站点id")
    @TableField("site_id")
    private Integer siteId;
 
    @ApiModelProperty(value = "合作商id")
    @TableField("partner_id")
    private Integer partnerId;
 
    @ApiModelProperty(value = "充电桩id")
    @TableField("charging_pile_id")
    private Integer chargingPileId;
 
    @ApiModelProperty(value = "充电枪名称")
    @TableField("name")
    private String name;
 
    @ApiModelProperty(value = "充电枪类型(0=其他,1=家用插座(模式2),2=交流接口插座(模式3,连接方式B),3=交流接口插头(带枪线,模式3,连接方式C)4=直流接口枪头(带枪线,模式4)5=无线充电座)")
    @TableField("type")
    private Integer type;
 
    @ApiModelProperty(value = "充电枪状态(1=离线,2=空闲,3=占用(未充电),4=占用(充电中),5=占用(已充满),6=占用(预约锁定),7=故障)")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "充电模式(1=超级快充,2=快充,3=慢充)")
    @TableField("charge_mode")
    private Integer chargeMode;
 
    @ApiModelProperty(value = "计费策略id")
    @TableField("accounting_strategy_id")
    private Integer accountingStrategyId;
 
    @ApiModelProperty(value = "额定电压上限")
    @TableField("upper_rated_voltage")
    private BigDecimal upperRatedVoltage;
 
    @ApiModelProperty(value = "额定电压下限")
    @TableField("lower_limit_of_rated_voltage")
    private BigDecimal lowerLimitOfRatedVoltage;
 
    @ApiModelProperty(value = "额定电流")
    @TableField("rated_current")
    private BigDecimal ratedCurrent;
 
    @ApiModelProperty(value = "额定功率")
    @TableField("rated_power")
    private BigDecimal ratedPower;
 
    @ApiModelProperty(value = "车位号")
    @TableField("parking_number")
    private String parkingNumber;
 
    @ApiModelProperty(value = "车位状态(0=未知,1=空闲,2=占用)")
    @TableField("parking_status")
    private Integer parkingStatus;
 
    @ApiModelProperty(value = "地锁状态|(0=未知,1=已解锁,2=已上锁)")
    @TableField("parking_lock_state")
    private Integer parkingLockState;
 
    @ApiModelProperty(value = "国家标准")
    @TableField("national_standard")
    private String nationalStandard;
 
    @ApiModelProperty(value = "说明")
    @TableField("remark")
    private String remark;
 
}