Blame view

src/main/java/com/objecteye/pojo/PendantParams.java 1.12 KB
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
1
2
3
4
  package com.objecteye.pojo;
  
  import java.util.Arrays;
  
40c853a1   Liu Haoyu   去掉MySQL相关内容, 去掉my...
5
6
7
  /**
   * 车辆装饰拼
   */
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
  public class PendantParams {
      private int index;
      private int[] syrectparam;
      private double confidence;
  
      public PendantParams() {
      }
  
      public PendantParams(int index, int[] syrectparam, double confidence) {
          this.index = index;
          this.syrectparam = syrectparam;
          this.confidence = confidence;
      }
  
      public int getIndex() {
          return index;
      }
  
      public void setIndex(int index) {
          this.index = index;
      }
  
      public int[] getSyrectparam() {
          return syrectparam;
      }
  
      public void setSyrectparam(int[] syrectparam) {
          this.syrectparam = syrectparam;
      }
  
      public double getConfidence() {
          return confidence;
      }
  
      public void setConfidence(double confidence) {
          this.confidence = confidence;
      }
  
      @Override
      public String toString() {
          return "PendantParams{" +
                  "index=" + index +
                  ", syrectparam=" + Arrays.toString(syrectparam) +
                  ", confidence=" + confidence +
                  '}';
      }
  }