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 lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
* <p>
|
* 码头
|
* </p>
|
*
|
* @author zhangyy
|
* @since 2025-03-11
|
*/
|
@Getter
|
@Setter
|
@TableName("DP_WHARF")
|
//@ApiModel(value = "DpWharf对象", description = "码头")
|
public class DpWharf {
|
|
@TableId(value = "WH_ID", type = IdType.AUTO)
|
private Integer whId;
|
|
@TableField("NAME")
|
private String name;
|
|
@TableField("HEIGHT")
|
private Double height;
|
|
@TableField("HEADING")
|
private Double heading;
|
|
@TableField("PITCH")
|
private Double pitch;
|
|
@TableField("ROLL")
|
private Double roll;
|
|
@TableField("LATITUDE")
|
private Double latitude;
|
|
@TableField("LONGITUDE")
|
private Double longitude;
|
|
@TableField("POINT_X")
|
private Double pointX;
|
|
@TableField("POINT_Y")
|
private Double pointY;
|
|
@TableField(exist = false)
|
private Integer pageSize;
|
|
|
@TableField(exist = false)
|
private Integer pageNum;
|
|
|
}
|