wms-serve-mule/src/main/java/com/wms/model/entity/table/OrderOut.java

127 lines
2.1 KiB
Java
Raw Normal View History

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