|
|
@@ -0,0 +1,205 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
+ */
|
|
|
+package org.springblade.los.business.sea.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 业务放箱号明细实体类
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2025-05-12
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("los_sea_container_number_item")
|
|
|
+@ApiModel(value = "SeaContainerNumberItem对象", description = "业务放箱号明细")
|
|
|
+public class SeaContainerNumberItem implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ private Long id;
|
|
|
+ private Long pid;
|
|
|
+ /**
|
|
|
+ * 分公司 Id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "分公司 Id")
|
|
|
+ private String branchId;
|
|
|
+ /**
|
|
|
+ * 创建人 Id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建人 Id")
|
|
|
+ private Long createUser;
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private String createUserName;
|
|
|
+ /**
|
|
|
+ * 创建部门 Id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建部门 Id")
|
|
|
+ private String createDept;
|
|
|
+ /**
|
|
|
+ * 创建部门
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建部门")
|
|
|
+ private String createDeptName;
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ private Date createTime;
|
|
|
+ /**
|
|
|
+ * 修改人 Id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "修改人 Id")
|
|
|
+ private Long updateUser;
|
|
|
+ /**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "修改人")
|
|
|
+ private String updateUserName;
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "修改时间")
|
|
|
+ private Date updateTime;
|
|
|
+ /**
|
|
|
+ * 是否已删除(0 否 1是)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "是否已删除(0 否 1是)")
|
|
|
+ private Integer isDeleted;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private String remarks;
|
|
|
+ /**
|
|
|
+ * 箱东
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "箱东")
|
|
|
+ private String boxEastId;
|
|
|
+ /**
|
|
|
+ * 箱东
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "箱东")
|
|
|
+ private String boxEastName;
|
|
|
+ /**
|
|
|
+ * 放箱号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "放箱号")
|
|
|
+ private String containerNumber;
|
|
|
+ /**
|
|
|
+ * 放箱号类型
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "放箱号类型")
|
|
|
+ private String busType;
|
|
|
+ /**
|
|
|
+ * 起运港
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "起运港")
|
|
|
+ private Long polId;
|
|
|
+ /**
|
|
|
+ * 起运港中文
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "起运港中文")
|
|
|
+ private String polCname;
|
|
|
+ /**
|
|
|
+ * 目的港
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "目的港")
|
|
|
+ private String podId;
|
|
|
+ /**
|
|
|
+ * 目的港中文
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "目的港中文")
|
|
|
+ private String podCname;
|
|
|
+ /**
|
|
|
+ * 起运港场站
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "起运港场站")
|
|
|
+ private Long polStationId;
|
|
|
+ /**
|
|
|
+ * 起运港场站中文
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "起运港场站中文")
|
|
|
+ private String polStationCname;
|
|
|
+ /**
|
|
|
+ * 箱型
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "箱型")
|
|
|
+ private String boxType;
|
|
|
+ /**
|
|
|
+ * 可用箱
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "可用箱")
|
|
|
+ private Integer remainingNum;
|
|
|
+ /**
|
|
|
+ * 目的港场站
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "目的港场站")
|
|
|
+ private Long podStationId;
|
|
|
+ /**
|
|
|
+ * 目的港场站中文
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "目的港场站中文")
|
|
|
+ private String podStationCname;
|
|
|
+ /**
|
|
|
+ * 内部放箱号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "内部放箱号")
|
|
|
+ private String internalContainerNumber;
|
|
|
+ /**
|
|
|
+ * 内部放箱号类型
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "内部放箱号类型")
|
|
|
+ private String internalBoxClass;
|
|
|
+ /**
|
|
|
+ * 来源id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "来源id")
|
|
|
+ private Long srcId;
|
|
|
+ /**
|
|
|
+ * 操作占用
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "操作占用")
|
|
|
+ private Integer occupyNum;
|
|
|
+ /**
|
|
|
+ * 放箱号优先等级
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "放箱号优先等级")
|
|
|
+ private String priorityLevel;
|
|
|
+ /**
|
|
|
+ * 箱管备注
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "箱管备注")
|
|
|
+ private String boxRemarks;
|
|
|
+ /**
|
|
|
+ * 租户
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "租户")
|
|
|
+ private String tenantId;
|
|
|
+
|
|
|
+
|
|
|
+}
|