Blame view

src/main/java/com/objecteye/entity/VehiclePendantDetectResultParam.java 369 Bytes
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  package com.objecteye.entity;
  
  
  import lombok.AllArgsConstructor;
  import lombok.Data;
  import lombok.NoArgsConstructor;
  
  
  @AllArgsConstructor
  @NoArgsConstructor
  @Data
  public class VehiclePendantDetectResultParam {
      private static final long serialVersionUID = 8868263681803769170L;
      VehiclePendantDetectInfoParam[] vehiclePendantDetectInfoParams;
      int count;
  }