|
@@ -0,0 +1,266 @@
|
|
|
+package cn.com.taiji.domain;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author xhl
|
|
|
+ */
|
|
|
+public class FuseOriginal {
|
|
|
+ @ExcelProperty(value = "targetName")
|
|
|
+ private String targetName;
|
|
|
+ @ExcelProperty(value = "supplyIceWaterAreaId")
|
|
|
+ private String supplyIceWaterAreaId;
|
|
|
+ @ExcelProperty(value = "portState")
|
|
|
+ private String portState;
|
|
|
+ @ExcelProperty(value = "targetHeading")
|
|
|
+ private String targetHeading;
|
|
|
+ @ExcelProperty(value = "portId")
|
|
|
+ private String portId;
|
|
|
+ @ExcelProperty(value = "mergeTarget")
|
|
|
+ private String mergeTarget;
|
|
|
+ @ExcelProperty(value = "targetTrackState")
|
|
|
+ private String targetTrackState;
|
|
|
+ @ExcelProperty(value = "targetShipType")
|
|
|
+ private String targetShipType;
|
|
|
+ @ExcelProperty(value = "targetSource")
|
|
|
+ private String targetSource;
|
|
|
+ @ExcelProperty(value = "gisNationality")
|
|
|
+ private String gisNationality;
|
|
|
+ @ExcelProperty(value = "targetState")
|
|
|
+ private String targetState;
|
|
|
+ @ExcelProperty(value = "targetLength")
|
|
|
+ private int targetLength;
|
|
|
+ @ExcelProperty(value = "targetTrackTime")
|
|
|
+ private String targetTrackTime;
|
|
|
+ @ExcelProperty(value = "motionState")
|
|
|
+ private String motionState;
|
|
|
+ @ExcelProperty(value = "mergeTime")
|
|
|
+ private String mergeTime;
|
|
|
+ @ExcelProperty(value = "targetSpeed")
|
|
|
+ private double targetSpeed;
|
|
|
+ @ExcelProperty(value = "mergeId")
|
|
|
+ private String mergeId;
|
|
|
+ @ExcelProperty(value = "targetRot")
|
|
|
+ private String targetRot;
|
|
|
+ @ExcelProperty(value = "mergeType")
|
|
|
+ private String mergeType;
|
|
|
+ @ExcelProperty(value = "targetType")
|
|
|
+ private String targetType;
|
|
|
+ @ExcelProperty(value = "gisShipType")
|
|
|
+ private String gisShipType;
|
|
|
+ @ExcelProperty(value = "supplyIceWaterState")
|
|
|
+ private String supplyIceWaterState;
|
|
|
+ @ExcelProperty(value = "refueledAreaId")
|
|
|
+ private String refueledAreaId;
|
|
|
+ @ExcelProperty(value = "targetNameEn")
|
|
|
+ private String targetNameEn;
|
|
|
+ @ExcelProperty(value = "refueledState")
|
|
|
+ private String refueledState;
|
|
|
+ @ExcelProperty(value = "targetMonitorId")
|
|
|
+ private String targetMonitorId;
|
|
|
+ @ExcelProperty(value = "targetDraught")
|
|
|
+ private String targetDraught;
|
|
|
+ @ExcelProperty(value = "trackDeviceNo")
|
|
|
+ private String trackDeviceNo;
|
|
|
+ @ExcelProperty(value = "targetCourse")
|
|
|
+ private String targetCourse;
|
|
|
+ @ExcelProperty(value = "targetNationality")
|
|
|
+ private String targetNationality;
|
|
|
+ @ExcelProperty(value = "location")
|
|
|
+ private String location;
|
|
|
+ @ExcelProperty(value = "targetTypeReliability")
|
|
|
+ private int targetTypeReliability;
|
|
|
+
|
|
|
+ public void setTargetName(String targetName){
|
|
|
+ this.targetName = targetName;
|
|
|
+ }
|
|
|
+ public String getTargetName(){
|
|
|
+ return this.targetName;
|
|
|
+ }
|
|
|
+ public void setSupplyIceWaterAreaId(String supplyIceWaterAreaId){
|
|
|
+ this.supplyIceWaterAreaId = supplyIceWaterAreaId;
|
|
|
+ }
|
|
|
+ public String getSupplyIceWaterAreaId(){
|
|
|
+ return this.supplyIceWaterAreaId;
|
|
|
+ }
|
|
|
+ public void setPortState(String portState){
|
|
|
+ this.portState = portState;
|
|
|
+ }
|
|
|
+ public String getPortState(){
|
|
|
+ return this.portState;
|
|
|
+ }
|
|
|
+ public void setTargetHeading(String targetHeading){
|
|
|
+ this.targetHeading = targetHeading;
|
|
|
+ }
|
|
|
+ public String getTargetHeading(){
|
|
|
+ return this.targetHeading;
|
|
|
+ }
|
|
|
+ public void setPortId(String portId){
|
|
|
+ this.portId = portId;
|
|
|
+ }
|
|
|
+ public String getPortId(){
|
|
|
+ return this.portId;
|
|
|
+ }
|
|
|
+ public void setMergeTarget(String mergeTarget){
|
|
|
+ this.mergeTarget = mergeTarget;
|
|
|
+ }
|
|
|
+ public String getMergeTarget(){
|
|
|
+ return this.mergeTarget;
|
|
|
+ }
|
|
|
+ public void setTargetTrackState(String targetTrackState){
|
|
|
+ this.targetTrackState = targetTrackState;
|
|
|
+ }
|
|
|
+ public String getTargetTrackState(){
|
|
|
+ return this.targetTrackState;
|
|
|
+ }
|
|
|
+ public void setTargetShipType(String targetShipType){
|
|
|
+ this.targetShipType = targetShipType;
|
|
|
+ }
|
|
|
+ public String getTargetShipType(){
|
|
|
+ return this.targetShipType;
|
|
|
+ }
|
|
|
+ public void setTargetSource(String targetSource){
|
|
|
+ this.targetSource = targetSource;
|
|
|
+ }
|
|
|
+ public String getTargetSource(){
|
|
|
+ return this.targetSource;
|
|
|
+ }
|
|
|
+ public void setGisNationality(String gisNationality){
|
|
|
+ this.gisNationality = gisNationality;
|
|
|
+ }
|
|
|
+ public String getGisNationality(){
|
|
|
+ return this.gisNationality;
|
|
|
+ }
|
|
|
+ public void setTargetState(String targetState){
|
|
|
+ this.targetState = targetState;
|
|
|
+ }
|
|
|
+ public String getTargetState(){
|
|
|
+ return this.targetState;
|
|
|
+ }
|
|
|
+ public void setTargetLength(int targetLength){
|
|
|
+ this.targetLength = targetLength;
|
|
|
+ }
|
|
|
+ public int getTargetLength(){
|
|
|
+ return this.targetLength;
|
|
|
+ }
|
|
|
+ public void setTargetTrackTime(String targetTrackTime){
|
|
|
+ this.targetTrackTime = targetTrackTime;
|
|
|
+ }
|
|
|
+ public String getTargetTrackTime(){
|
|
|
+ return this.targetTrackTime;
|
|
|
+ }
|
|
|
+ public void setMotionState(String motionState){
|
|
|
+ this.motionState = motionState;
|
|
|
+ }
|
|
|
+ public String getMotionState(){
|
|
|
+ return this.motionState;
|
|
|
+ }
|
|
|
+ public void setMergeTime(String mergeTime){
|
|
|
+ this.mergeTime = mergeTime;
|
|
|
+ }
|
|
|
+ public String getMergeTime(){
|
|
|
+ return this.mergeTime;
|
|
|
+ }
|
|
|
+ public void setTargetSpeed(double targetSpeed){
|
|
|
+ this.targetSpeed = targetSpeed;
|
|
|
+ }
|
|
|
+ public double getTargetSpeed(){
|
|
|
+ return this.targetSpeed;
|
|
|
+ }
|
|
|
+ public void setMergeId(String mergeId){
|
|
|
+ this.mergeId = mergeId;
|
|
|
+ }
|
|
|
+ public String getMergeId(){
|
|
|
+ return this.mergeId;
|
|
|
+ }
|
|
|
+ public void setTargetRot(String targetRot){
|
|
|
+ this.targetRot = targetRot;
|
|
|
+ }
|
|
|
+ public String getTargetRot(){
|
|
|
+ return this.targetRot;
|
|
|
+ }
|
|
|
+ public void setMergeType(String mergeType){
|
|
|
+ this.mergeType = mergeType;
|
|
|
+ }
|
|
|
+ public String getMergeType(){
|
|
|
+ return this.mergeType;
|
|
|
+ }
|
|
|
+ public void setTargetType(String targetType){
|
|
|
+ this.targetType = targetType;
|
|
|
+ }
|
|
|
+ public String getTargetType(){
|
|
|
+ return this.targetType;
|
|
|
+ }
|
|
|
+ public void setGisShipType(String gisShipType){
|
|
|
+ this.gisShipType = gisShipType;
|
|
|
+ }
|
|
|
+ public String getGisShipType(){
|
|
|
+ return this.gisShipType;
|
|
|
+ }
|
|
|
+ public void setSupplyIceWaterState(String supplyIceWaterState){
|
|
|
+ this.supplyIceWaterState = supplyIceWaterState;
|
|
|
+ }
|
|
|
+ public String getSupplyIceWaterState(){
|
|
|
+ return this.supplyIceWaterState;
|
|
|
+ }
|
|
|
+ public void setRefueledAreaId(String refueledAreaId){
|
|
|
+ this.refueledAreaId = refueledAreaId;
|
|
|
+ }
|
|
|
+ public String getRefueledAreaId(){
|
|
|
+ return this.refueledAreaId;
|
|
|
+ }
|
|
|
+ public void setTargetNameEn(String targetNameEn){
|
|
|
+ this.targetNameEn = targetNameEn;
|
|
|
+ }
|
|
|
+ public String getTargetNameEn(){
|
|
|
+ return this.targetNameEn;
|
|
|
+ }
|
|
|
+ public void setRefueledState(String refueledState){
|
|
|
+ this.refueledState = refueledState;
|
|
|
+ }
|
|
|
+ public String getRefueledState(){
|
|
|
+ return this.refueledState;
|
|
|
+ }
|
|
|
+ public void setTargetMonitorId(String targetMonitorId){
|
|
|
+ this.targetMonitorId = targetMonitorId;
|
|
|
+ }
|
|
|
+ public String getTargetMonitorId(){
|
|
|
+ return this.targetMonitorId;
|
|
|
+ }
|
|
|
+ public void setTargetDraught(String targetDraught){
|
|
|
+ this.targetDraught = targetDraught;
|
|
|
+ }
|
|
|
+ public String getTargetDraught(){
|
|
|
+ return this.targetDraught;
|
|
|
+ }
|
|
|
+ public void setTrackDeviceNo(String trackDeviceNo){
|
|
|
+ this.trackDeviceNo = trackDeviceNo;
|
|
|
+ }
|
|
|
+ public String getTrackDeviceNo(){
|
|
|
+ return this.trackDeviceNo;
|
|
|
+ }
|
|
|
+ public void setTargetCourse(String targetCourse){
|
|
|
+ this.targetCourse = targetCourse;
|
|
|
+ }
|
|
|
+ public String getTargetCourse(){
|
|
|
+ return this.targetCourse;
|
|
|
+ }
|
|
|
+ public void setTargetNationality(String targetNationality){
|
|
|
+ this.targetNationality = targetNationality;
|
|
|
+ }
|
|
|
+ public String getTargetNationality(){
|
|
|
+ return this.targetNationality;
|
|
|
+ }
|
|
|
+ public void setLocation(String location){
|
|
|
+ this.location = location;
|
|
|
+ }
|
|
|
+ public String getLocation(){
|
|
|
+ return this.location;
|
|
|
+ }
|
|
|
+ public void setTargetTypeReliability(int targetTypeReliability){
|
|
|
+ this.targetTypeReliability = targetTypeReliability;
|
|
|
+ }
|
|
|
+ public int getTargetTypeReliability(){
|
|
|
+ return this.targetTypeReliability;
|
|
|
+ }
|
|
|
+}
|