whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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;
 
 
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.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.apache.ibatis.type.Alias;
 
import java.util.List;
 
 
@Data
@ApiModel(value="BaojiGroupBattGroup", description="")
@AllArgsConstructor
@NoArgsConstructor
@ToString
@Alias("BaojiGroupBattGroup")
@TableName( schema = "`db_user`",value = "`tb_user_battgroup_baojigroup_battgroup`")
public class BaojiGroupBattGroup {
 
    private static final long serialVersionUID = 1L;
 
    @TableId("num")
    private Integer num;
    @TableField("baoji_group_id")
    private Integer baojiGroupId;
    @TableField(exist = false)
    private String baojiGroupName;
    @TableField("StationId")
    private Long stationId;
    @TableField("BattGroupId")
    private Integer battGroupId;
    @TableField(exist = false)
    private Integer devId;
 
    @TableField(exist = false)
    private List<Battinf> battGroupList;
    @TableField(exist = false)
    private String stationName1;
    @TableField(exist = false)
    private String stationName2;
    @TableField(exist = false)
    private String stationName3;
    @TableField(exist = false)
    private String stationName5;
 
    public BaojiGroupBattGroup(Integer baojiGroupId, Long stationId, Integer battGroupId) {
        this.baojiGroupId = baojiGroupId;
        this.stationId = stationId;
        this.battGroupId = battGroupId;
    }
}