8 changed files with 219 additions and 20 deletions
@ -0,0 +1,127 @@
|
||||
/* |
||||
* 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 com.logpm.warehouse.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 托盘 实体类 |
||||
* |
||||
* @author tjj |
||||
* @since 2023-05-25 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_warehouse_tray") |
||||
@ApiModel(value = "BasicdataTray对象", description = "托盘") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class WarehouseTrayEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
/** |
||||
* 托盘码 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘码") |
||||
private String palletCode; |
||||
|
||||
/** |
||||
* 托盘名称 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘名称") |
||||
private String palletName; |
||||
/** |
||||
* 仓库编号 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库编号") |
||||
private Long warehouseId; |
||||
/** |
||||
* 托盘状态;1-空闲;2-货物;3-损毁;4-流通;5 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘状态;1-空闲;2-货物;3-损毁;4-流通;5") |
||||
private String trayStatus; |
||||
|
||||
/** |
||||
* 类型;木托 铁托 台面托 |
||||
*/ |
||||
@ApiModelProperty(value = "类型;木托 铁托 台面托") |
||||
private Integer type; |
||||
|
||||
/** |
||||
* 托盘旧ID |
||||
*/ |
||||
@ApiModelProperty(value = "托盘旧ID") |
||||
private Integer oldId; |
||||
|
||||
|
||||
/** |
||||
* 托盘旧托盘码 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘旧托盘码") |
||||
private String oldQrCode; |
||||
|
||||
/** |
||||
* 破损照片 |
||||
*/ |
||||
@ApiModelProperty(value = "破损照片") |
||||
private String damagedPhotos; |
||||
|
||||
/** |
||||
* 破损备注 |
||||
*/ |
||||
@ApiModelProperty(value = "破损备注") |
||||
private String damagedNote; |
||||
|
||||
|
||||
@ApiModelProperty(value = "目前所在仓库") |
||||
private Long nowWarehouseId; |
||||
|
||||
|
||||
/** |
||||
* 禁用状态(1-否,2-是) |
||||
*/ |
||||
@ApiModelProperty(value = "禁用状态(1-否,2-是)") |
||||
private Integer disableType; |
||||
|
||||
} |
@ -0,0 +1,48 @@
|
||||
/* |
||||
* 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 com.logpm.warehouse.vo; |
||||
|
||||
|
||||
import com.logpm.warehouse.entity.WarehouseTrayEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 托盘 视图实体类 |
||||
* |
||||
* @author tjj |
||||
* @since 2023-05-25 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class WarehouseTrayVO extends WarehouseTrayEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 仓库名称 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库名称") |
||||
private String warehouseName; |
||||
|
||||
/** |
||||
* 禁用状态(值) |
||||
*/ |
||||
@ApiModelProperty(value = "禁用状态(值)") |
||||
private String disableTypeName; |
||||
|
||||
} |
Loading…
Reference in new issue