123456789101112131415161718192021222324252627282930 |
- package com.shcd.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- @Data
- @TableName("GHJG_PORT_MANAGE.SHORE_POWER_BERTH_INFO_NEW")
- public class ShorePowerBerthInfoNew {
- @TableId("id")
- String id;
- @TableField("BERTHID")
- String berthId;
- @TableField("PORTID")
- String portId;
- @TableField("PORTAREAID")
- String portAreaId;
- @TableField("BERTHNAME")
- String berthName;
- @TableField("BERTHTYPE")
- String berthType;
- @TableField("CAPACITY")
- String capacity;
- @TableField("PROJECTID")
- String projectId;
- @TableField("TYPE")
- String type;
- }
|