whycxzp
2025-04-02 e8706ea0d262e796d1532ef5526dda2f2301073a
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
package com.whyc.pojo.db_batt;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.ToString;
 
/**
 * 电池单体的定位数据
 */
@TableName(schema = "db_batt",value = "tb_batt_mons_location")
@ToString
@Data
public class BattMonsLocation {
 
    private Integer id;
 
    private Integer battGroupId;
 
    @ApiModelProperty("电池单体方框的四个坐标点,示例: x1*y1,x2*y2,x3*y3,x4*y4")
    private String battMonsPoints;
 
    @ApiModelProperty("电池单体集合")
    private String battMons;
 
    @ApiModelProperty("单体集合对应磁条的百分比")
    private Float battMonsPercentage;
 
    @ApiModelProperty("单体集合对应的左右:left,right")
    private String battMonsPosition;
 
    @ApiModelProperty("磁条定位")
    private String magneticTrackPosition;
 
}