wms-serve-mule/src/main/java/com/wms/entity/table/OrderOut.java
icewint 42635073fe <fix>[important]基本测试版本,已完成和其他系统交互feat(wms_serve): 实现空托盘入库和补盘功能
- 实现空托盘入库逻辑,包括生成虚拟托盘号和创建入库任务
- 添加补盘功能,处理空托盘出库和创建出库任务
2025-02-20 13:38:20 +08:00

127 lines
2.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.wms.entity.table;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* 出库单
* tbl_app_order_out
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class OrderOut {
public OrderOut(String rowId) {
this.rowId = rowId;
}
/**
* 主键
*/
@JsonProperty(value = "rowId")
private String rowId;
/**
* 记录号
*/
@JsonProperty(value = "recordId")
private String recordId;
/**
* 出库通知单号
*/
@JsonProperty(value = "orderId")
private String orderId;
/**
* 起始库区
*/
@JsonProperty(value = "warehouseOrigin")
private String warehouseOrigin;
/**
* 目的库区
*/
@JsonProperty(value = "warehouseDestination")
private String warehouseDestination;
/**
* 出库单类型
* 1生产领料通知单
* 2调拨出库单
* 3出货通知单
*/
@JsonProperty(value = "orderType")
private Integer orderType;
/**
* 交货时间
*/
@JsonProperty(value = "deliveryTime")
private Date deliveryTime;
/**
* 行号
*/
@JsonProperty(value = "rowNo")
private Integer rowNo;
/**
* 物料编号
*/
@JsonProperty(value = "goodsId")
private String goodsId;
/**
* 物料名称
*/
@JsonProperty(value = "goodsName")
private String goodsName;
/**
* 物料数量
*/
@JsonProperty(value = "goodsNum")
private String goodsNum;
/**
* 单位
*/
@JsonProperty(value = "unit")
private String unit;
/**
* 状态
*/
@JsonProperty(value = "status")
private Integer status;
/**
* 创建时间
*/
@JsonProperty(value = "createTime")
private Date createTime;
/**
* 备注
*/
@JsonProperty(value = "remark")
private String remark;
/**
* 批次号
*/
@JsonProperty(value = "batchNo")
private String batchNo;
}