package com.ruoyi.manage.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
* <p>
|
* 泊位停船信息表
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-03-22
|
*/
|
@Getter
|
@Setter
|
@TableName("DP_SHIP_PARKING")
|
@Schema(description = "泊位停船信息表")
|
public class DpShipParking {
|
|
@Schema(title = "主键ID")
|
@TableId(value = "ID", type = IdType.AUTO)
|
private Integer id;
|
|
@Schema(title = "码头ID")
|
@TableField("WH_ID")
|
private Integer whId;
|
|
@Schema(title = "泊位ID")
|
@TableField("BE_ID")
|
private Integer beId;
|
|
@Schema(title = "舰船主键ID")
|
@TableField("SHIP_PKID")
|
private String shipPkid;
|
|
@Schema(title = "经度")
|
@TableField("LON")
|
private Double lon;
|
|
@Schema(title = "纬度")
|
@TableField("LAT")
|
private Double lat;
|
|
@Schema(title = "海拔")
|
@TableField("ALT")
|
private Double alt;
|
|
@Schema(title = "转角")
|
@TableField("HEADING")
|
private Double heading;
|
|
@TableField(exist = false)
|
private Integer pageSize;
|
|
@TableField(exist = false)
|
private Integer pageNum;
|
|
@TableField(exist = false)
|
private Integer offset;
|
|
@TableField(exist = false)
|
private String shipModel;
|
|
@TableField(exist = false)
|
private String shipId;
|
|
}
|