whyclxw
2025-05-16 1fcb4e463fd4e3c22bf06a7a4ff6e1f8b9083225
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
package com.whyc.pojo.db_user;
 
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 lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author lxw
 * @since 2025-05-12
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema = "db_user",value = "tb_baojigroup_power")
@ApiModel(value="BaojigroupBattgroup对象", description="")
public class BaojigroupPower implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    private Integer baojiGroupId;
 
    private Integer stationId;
 
    private Integer powerId;
 
    @TableField(exist = false)
    private String provice;
 
    @TableField(exist = false)
    private String city;
 
    @TableField(exist = false)
    private String country;
 
    @TableField(exist = false)
    private String stationName;
 
 
}