ShorePowerBerthInfoNew.java 699 B

123456789101112131415161718192021222324252627282930
  1. package com.shcd.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. @Data
  7. @TableName("GHJG_PORT_MANAGE.SHORE_POWER_BERTH_INFO_NEW")
  8. public class ShorePowerBerthInfoNew {
  9. @TableId("id")
  10. String id;
  11. @TableField("BERTHID")
  12. String berthId;
  13. @TableField("PORTID")
  14. String portId;
  15. @TableField("PORTAREAID")
  16. String portAreaId;
  17. @TableField("BERTHNAME")
  18. String berthName;
  19. @TableField("BERTHTYPE")
  20. String berthType;
  21. @TableField("CAPACITY")
  22. String capacity;
  23. @TableField("PROJECTID")
  24. String projectId;
  25. @TableField("TYPE")
  26. String type;
  27. }