11 changed files with 352 additions and 146 deletions
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<groupId>org.springblade</groupId> |
||||
<artifactId>logpm-business-conversion-api</artifactId> |
||||
<version>3.2.0.RELEASE</version> |
||||
<parent> |
||||
<groupId>org.springblade</groupId> |
||||
<version>3.2.0.RELEASE</version> |
||||
<artifactId>blade-service-api</artifactId> |
||||
</parent> |
||||
<properties> |
||||
<maven.compiler.source>8</maven.compiler.source> |
||||
<maven.compiler.target>8</maven.compiler.target> |
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||
</properties> |
||||
|
||||
</project> |
@ -0,0 +1,274 @@
|
||||
/* |
||||
* 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.business.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 商场转换预处理 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-13 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_business_pre_order") |
||||
@ApiModel(value = "DistributionBusinessPreOrder对象", description = "商场转换预处理实体") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionBusinessPreOrderEntity 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 orderCode; |
||||
|
||||
|
||||
/** |
||||
* 配送司机 |
||||
*/ |
||||
@ApiModelProperty(value = "配送司机") |
||||
private String dvehicleName; |
||||
/** |
||||
* 配送车牌 |
||||
*/ |
||||
@ApiModelProperty(value = "配送车牌") |
||||
private String vehicleName; |
||||
|
||||
|
||||
/** |
||||
* 配送司机 |
||||
*/ |
||||
@ApiModelProperty(value = "配送司机") |
||||
private String driverName; |
||||
/** |
||||
* 配送单号 |
||||
*/ |
||||
@ApiModelProperty(value = "配送单号") |
||||
private String noteNumber; |
||||
/** |
||||
* 仓库 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库") |
||||
private String warehouse; |
||||
|
||||
@ApiModelProperty(value = "仓库ID") |
||||
private Long warehouseId; |
||||
/** |
||||
* 包件类型 1 定制品 2 库存品 3零担 |
||||
*/ |
||||
@ApiModelProperty(value = "状态") |
||||
private Integer conditions; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
private String orderPackageCode; |
||||
|
||||
@ApiModelProperty(value = "货区信息") |
||||
private String cargoTitle; |
||||
|
||||
@ApiModelProperty(value = "货架信息") |
||||
private String shelfTitle; |
||||
/** |
||||
* 货位信息 |
||||
*/ |
||||
@ApiModelProperty(value = "货位信息") |
||||
private String goodsAllocation; |
||||
/** |
||||
* 所在托盘 |
||||
*/ |
||||
@ApiModelProperty(value = "所在托盘") |
||||
private String pallet; |
||||
/** |
||||
* 一级品 |
||||
*/ |
||||
@ApiModelProperty(value = "一级品") |
||||
private String firsts; |
||||
/** |
||||
* 二级品 |
||||
*/ |
||||
@ApiModelProperty(value = "二级品") |
||||
private String second; |
||||
/** |
||||
* 三级品 |
||||
*/ |
||||
@ApiModelProperty(value = "三级品") |
||||
private String thirdProduct; |
||||
/** |
||||
* 入库时间 |
||||
*/ |
||||
@ApiModelProperty(value = "入库时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date warehouseEntryTimeEnd; |
||||
/** |
||||
* 运单号 |
||||
*/ |
||||
@ApiModelProperty(value = "运单号") |
||||
private String waybillNumber; |
||||
/** |
||||
* 运单ID |
||||
*/ |
||||
@ApiModelProperty(value = "运单ID") |
||||
private Long waybillId; |
||||
|
||||
/** |
||||
* 物料Id |
||||
*/ |
||||
@ApiModelProperty(value = "物料ID") |
||||
private Long materialId; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ApiModelProperty(value = "物料名称") |
||||
private String materialName; |
||||
/** |
||||
* 物料编号 |
||||
*/ |
||||
@ApiModelProperty(value = "物料编号") |
||||
private String materialCode; |
||||
/** |
||||
* 物料单位 |
||||
*/ |
||||
@ApiModelProperty(value = "物料单位") |
||||
private String materialUnit; |
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ApiModelProperty(value = "数量") |
||||
private Integer quantity; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 在库订单ID |
||||
*/ |
||||
@ApiModelProperty(value = "在库订单ID") |
||||
private Long stockArticleId; |
||||
|
||||
/** |
||||
* 服务号 |
||||
*/ |
||||
@ApiModelProperty(value = "服务号") |
||||
private String serviceNumber; |
||||
/** |
||||
* 品牌ID |
||||
*/ |
||||
@ApiModelProperty(value = "品牌ID") |
||||
private Long brandId; |
||||
/** |
||||
* 品牌名称 |
||||
*/ |
||||
@ApiModelProperty(value = "品牌名称") |
||||
private String brandName; |
||||
|
||||
/** |
||||
* 包件状态 |
||||
*/ |
||||
@ApiModelProperty(value = "包件状态") |
||||
private String orderPackageStatus; |
||||
|
||||
@ApiModelProperty(value = "包件冻结状态") |
||||
private String orderPackageFreezeStatus; |
||||
|
||||
@ApiModelProperty(value = "包件冻结状态") |
||||
private String orderPackageReservationStatus; |
||||
|
||||
|
||||
@ApiModelProperty(value = "备货状态") |
||||
private String orderPackageStockupStatus; |
||||
|
||||
@ApiModelProperty(value = "上架状态") |
||||
private String orderPackageGroundingStatus; |
||||
|
||||
@ApiModelProperty(value = "经销商名称") |
||||
private String dealerName; |
||||
|
||||
@ApiModelProperty(value = "经销商编码") |
||||
private String dealerCode; |
||||
|
||||
@ApiModelProperty(value = "发站仓ID") |
||||
private Long sendWarehouseId; |
||||
|
||||
@ApiModelProperty(value = "发站仓ID") |
||||
private String sendWarehouseName; |
||||
|
||||
|
||||
@ApiModelProperty(value = "收站仓ID") |
||||
private Long acceptWarehouseId; |
||||
|
||||
@ApiModelProperty(value = "收站仓ID") |
||||
private String acceptWarehouseName; |
||||
|
||||
@ApiModelProperty(value = "装车状态") |
||||
private String orderPackageLoadingStatus; |
||||
|
||||
@ApiModelProperty(value = "重量") |
||||
private BigDecimal weight;//重量
|
||||
@ApiModelProperty(value = "体积") |
||||
private BigDecimal volume;//体积
|
||||
|
||||
@ApiModelProperty(value = "是否中转") |
||||
private Integer isTransfer;//是否中转
|
||||
|
||||
@ApiModelProperty(value = "暂存单id") |
||||
private Long advanceId;//暂存单id
|
||||
|
||||
|
||||
// /**
|
||||
// * 配送状态
|
||||
// */
|
||||
// @ApiModelProperty(value = "配送状态")
|
||||
// private String orderPackageStatus;
|
||||
|
||||
} |
Loading…
Reference in new issue