vince
2025-06-04 0d9a7c8974add02c61d2471642e4e5a04013ab7b
src/main/java/com/fzzy/gateway/hx2023/data/KafkaGrainDataDetail1.java
@@ -21,22 +21,21 @@
    private String position;
    //该温度点所在的列,平方仓、地下仓必填
    private int linex;
    private String linex;
    //该温度点所在的行,平方仓、地下仓必填
    private int rowy;
    private String rowy;
    //浅圆仓、筒仓必填,示例:{\"totalCircle\":3,\"smallCircle\":\"4,10,16\"},totalCircle:总圈数,smallCircle:每圈有几根缆
   // private int total_circle;
    private String totalCircle = "{\"totalCircle\":1,\"smallCircle\":\"1\"}";
    //具体圈数--浅圆仓、筒仓必填
   // private int circle;
    private String circle = "1";
    public KafkaGrainDataDetail1() {
    }
    public KafkaGrainDataDetail1(String cableNum, String layerNumber, String temperature, String position, int linex, int rowy) {
    public KafkaGrainDataDetail1(String cableNum, String layerNumber, String temperature, String position, String linex, String rowy) {
        this.cableNum = cableNum;
        this.layerNumber = layerNumber;
        this.temperature = temperature;
@@ -44,4 +43,15 @@
        this.linex = linex;
        this.rowy = rowy;
    }
    public KafkaGrainDataDetail1(String cableNum, String layerNumber, String temperature, String position, String linex, String rowy, String circle, String totalCircle) {
        this.cableNum = cableNum;
        this.layerNumber = layerNumber;
        this.temperature = temperature;
        this.position = position;
        this.linex = linex;
        this.rowy = rowy;
        this.circle = circle;
        this.totalCircle = totalCircle;
    }
}