123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- package cn.com.taiji.domain;
- import com.alibaba.excel.annotation.ExcelProperty;
- /**
- * @author xhl
- */
- public class TianAoOriginal {
- @ExcelProperty(value = "altitude")
- private String altitude;
- @ExcelProperty(value = "collectTime")
- private String collectTime;
- @ExcelProperty(value = "reliability")
- private int reliability;
- @ExcelProperty(value = "fusionBatchNum")
- private String fusionBatchNum;
- @ExcelProperty(value = "targetProper")
- private String targetProper;
- @ExcelProperty(value = "shipName")
- private String shipName;
- @ExcelProperty(value = "fusionTime")
- private String fusionTime;
- @ExcelProperty(value = "speed")
- private double speed;
- @ExcelProperty(value = "receiveTime")
- private String receiveTime;
- @ExcelProperty(value = "traceState")
- private String traceState;
- @ExcelProperty(value = "targetSize")
- private int targetSize;
- @ExcelProperty(value = "radarCode")
- private String radarCode;
- @ExcelProperty(value = "shipTrack")
- private String shipTrack;
- @ExcelProperty(value = "shiptracktime")
- private String shiptracktime;
- @ExcelProperty(value = "course")
- private String course;
- @ExcelProperty(value = "location")
- private String location;
- @ExcelProperty(value = "id")
- private String id;
- @ExcelProperty(value = "shipId")
- private String shipId;
- @ExcelProperty(value = "longitude")
- private String longitude;
- public void setAltitude(String altitude){
- this.altitude = altitude;
- }
- public String getAltitude(){
- return this.altitude;
- }
- public void setCollectTime(String collectTime){
- this.collectTime = collectTime;
- }
- public String getCollectTime(){
- return this.collectTime;
- }
- public void setReliability(int reliability){
- this.reliability = reliability;
- }
- public int getReliability(){
- return this.reliability;
- }
- public void setFusionBatchNum(String fusionBatchNum){
- this.fusionBatchNum = fusionBatchNum;
- }
- public String getFusionBatchNum(){
- return this.fusionBatchNum;
- }
- public void setTargetProper(String targetProper){
- this.targetProper = targetProper;
- }
- public String getTargetProper(){
- return this.targetProper;
- }
- public void setShipName(String shipName){
- this.shipName = shipName;
- }
- public String getShipName(){
- return this.shipName;
- }
- public void setFusionTime(String fusionTime){
- this.fusionTime = fusionTime;
- }
- public String getFusionTime(){
- return this.fusionTime;
- }
- public void setSpeed(double speed){
- this.speed = speed;
- }
- public double getSpeed(){
- return this.speed;
- }
- public void setReceiveTime(String receiveTime){
- this.receiveTime = receiveTime;
- }
- public String getReceiveTime(){
- return this.receiveTime;
- }
- public void setTraceState(String traceState){
- this.traceState = traceState;
- }
- public String getTraceState(){
- return this.traceState;
- }
- public void setTargetSize(int targetSize){
- this.targetSize = targetSize;
- }
- public int getTargetSize(){
- return this.targetSize;
- }
- public void setRadarCode(String radarCode){
- this.radarCode = radarCode;
- }
- public String getRadarCode(){
- return this.radarCode;
- }
- public void setShipTrack(String shipTrack){
- this.shipTrack = shipTrack;
- }
- public String getShipTrack(){
- return this.shipTrack;
- }
- public void setShiptracktime(String shiptracktime){
- this.shiptracktime = shiptracktime;
- }
- public String getShiptracktime(){
- return this.shiptracktime;
- }
- public void setCourse(String course){
- this.course = course;
- }
- public String getCourse(){
- return this.course;
- }
- public void setLocation(String location){
- this.location = location;
- }
- public String getLocation(){
- return this.location;
- }
- public void setId(String id){
- this.id = id;
- }
- public String getId(){
- return this.id;
- }
- public void setShipId(String shipId){
- this.shipId = shipId;
- }
- public String getShipId(){
- return this.shipId;
- }
- public void setLongitude(String longitude){
- this.longitude = longitude;
- }
- public String getLongitude(){
- return this.longitude;
- }
- }
|