xc
2020-12-07 819e87d22ac1fd61adc2c0de52212a6ff322e77f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.hbbh.adapter.pojo;
 
import lombok.Data;
 
import java.util.List;
 
 
@Data
@Deprecated
public class Table {
 
    private int id;
    private String tableName;
    private List<Point> pointList;
 
}