whycxzp
2025-04-02 506168ae540c5aabb34f97a46a6248cd73b77f8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.whyc.pojo.db_batt;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.ToString;
 
/**
 * 电池机房的摄像头
 */
@TableName(schema = "db_batt",value = "tb_batt_camera")
@ToString
@Data
public class BattCamera {
 
    private Integer id;
    private String cameraId;
    private String cameraIp;
    private Integer battGroupId;
    private Integer stationId;
    /**磁条起点,终点,格式为x1*y1,x2*y2*/
    private String mstPoints;
 
}