223 changed files with 9830 additions and 2900 deletions
@ -0,0 +1,47 @@
|
||||
package org.springblade.common.constant.retention; |
||||
|
||||
/** |
||||
* 订单冻结状态枚举 |
||||
* 对应码表 freeze_status |
||||
* @author pref |
||||
*/ |
||||
public enum RetentionTypeConstant { |
||||
|
||||
zhuangchezhiliu("装车滞留",1), |
||||
peisongzhiliu("配送滞留",2), |
||||
chukuzhiliu("出库滞留",3), |
||||
quxiaozhiliu("取消滞留",4); |
||||
|
||||
|
||||
/** |
||||
* 状态 |
||||
*/ |
||||
private String name; |
||||
|
||||
/** |
||||
* 值 |
||||
*/ |
||||
private Integer value; |
||||
|
||||
|
||||
private RetentionTypeConstant(String name, Integer value) { |
||||
this.name = name; |
||||
this.value = value; |
||||
} |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
|
||||
public Integer getValue() { |
||||
return value; |
||||
} |
||||
|
||||
public void setValue(Integer value) { |
||||
this.value = value; |
||||
} |
||||
} |
@ -0,0 +1,84 @@
|
||||
package com.logpm.distribution.vo; |
||||
|
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 滞留扫描对象 |
||||
*/ |
||||
@Data |
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
public class DistributionRetentionScanVo { |
||||
|
||||
/** |
||||
* 预约Id |
||||
*/ |
||||
private Long reservationId; |
||||
|
||||
/** |
||||
* 预约Id |
||||
*/ |
||||
private String reservationCode; |
||||
|
||||
/** |
||||
* 订单Id |
||||
*/ |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 订单自编码 |
||||
*/ |
||||
private String orderCode; |
||||
|
||||
/** |
||||
* 订单Id |
||||
*/ |
||||
private Long inventoryId; |
||||
|
||||
|
||||
|
||||
/** |
||||
* 物料编码 |
||||
*/ |
||||
private String materialNumber; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
private String materialName; |
||||
|
||||
/** |
||||
* 包件ID |
||||
*/ |
||||
private Long orderPackageId; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
private String orderPackageCode; |
||||
|
||||
/** |
||||
* 滞留数量 |
||||
*/ |
||||
private Integer retentionQuantity; |
||||
|
||||
/** |
||||
* 类型 |
||||
*/ |
||||
private Integer conditions; |
||||
|
||||
|
||||
/** |
||||
* 配送ID |
||||
*/ |
||||
private Long deliveryId; |
||||
|
||||
|
||||
/** |
||||
* 配送车次 |
||||
*/ |
||||
private String trainNumber; |
||||
|
||||
|
||||
} |
@ -1,12 +1,21 @@
|
||||
package com.logpm.trunkline.dto; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineBillladingEntity; |
||||
import com.logpm.trunkline.vo.TrunklineBillladingLineVO; |
||||
import com.logpm.trunkline.vo.TrunklineBillladingWaybillVO; |
||||
import lombok.Data; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class BillladingDTO extends TrunklineBillladingEntity { |
||||
|
||||
private Integer pageNum; |
||||
private Integer pageSize; |
||||
|
||||
private List<TrunklineBillladingLineVO> billladingLineList = new ArrayList<>(); |
||||
|
||||
private List<TrunklineBillladingWaybillVO> billladingWaybillList = new ArrayList<>(); |
||||
|
||||
} |
||||
|
@ -0,0 +1,62 @@
|
||||
package com.logpm.trunkline.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; |
||||
|
||||
@Data |
||||
@TableName("logpm_trunkline_billlading_line") |
||||
@ApiModel(value = "TrunklineBillladingLine对象", description = "干线提货线路表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class TrunklineBillladingLineEntity extends TenantEntity { |
||||
|
||||
/** 预留1 */ |
||||
@ApiModelProperty(name = "预留1",notes = "") |
||||
private String reserve1 ; |
||||
/** 预留2 */ |
||||
@ApiModelProperty(name = "预留2",notes = "") |
||||
private String reserve2 ; |
||||
/** 预留3 */ |
||||
@ApiModelProperty(name = "预留3",notes = "") |
||||
private String reserve3 ; |
||||
/** 预留4 */ |
||||
@ApiModelProperty(name = "预留4",notes = "") |
||||
private String reserve4 ; |
||||
/** 预留5 */ |
||||
@ApiModelProperty(name = "预留5",notes = "") |
||||
private String reserve5 ; |
||||
/** 仓库id */ |
||||
@ApiModelProperty(name = "仓库id",notes = "") |
||||
private Long warehouseId ; |
||||
/** 仓库名称 */ |
||||
@ApiModelProperty(name = "仓库名称",notes = "") |
||||
private String warehouseName ; |
||||
/** 提货单id */ |
||||
@ApiModelProperty(name = "提货单id",notes = "") |
||||
private Long billladingId ; |
||||
/** 提货单id */ |
||||
@ApiModelProperty(name = "客户id",notes = "") |
||||
private Long clientId ; |
||||
/** 客户名称 */ |
||||
@ApiModelProperty(name = "客户名称",notes = "") |
||||
private String clientName ; |
||||
/** 客户类型 1 工厂 2 商场 3装饰 4个人 */ |
||||
@ApiModelProperty(name = "客户类型 1 工厂 2 商场 3装饰 4个人",notes = "") |
||||
private String clientType ; |
||||
/** 联系人 */ |
||||
@ApiModelProperty(name = "联系人",notes = "") |
||||
private String linkMan ; |
||||
/** 联系电话 */ |
||||
@ApiModelProperty(name = "联系电话",notes = "") |
||||
private String linkPhone ; |
||||
/** 联系人地址 */ |
||||
@ApiModelProperty(name = "联系人地址",notes = "") |
||||
private String linkAddress ; |
||||
/** 排序 */ |
||||
@ApiModelProperty(name = "排序",notes = "") |
||||
private Integer sort ; |
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
package com.logpm.trunkline.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; |
||||
|
||||
@Data |
||||
@TableName("logpm_trunkline_billlading_log") |
||||
@ApiModel(value = "TrunklineBillladingLog对象", description = "干线提货单日志表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class TrunklineBillladingLogEntity extends TenantEntity { |
||||
|
||||
/** 预留1 */ |
||||
@ApiModelProperty(name = "预留1",notes = "") |
||||
private String reserve1 ; |
||||
/** 预留2 */ |
||||
@ApiModelProperty(name = "预留2",notes = "") |
||||
private String reserve2 ; |
||||
/** 预留3 */ |
||||
@ApiModelProperty(name = "预留3",notes = "") |
||||
private String reserve3 ; |
||||
/** 预留4 */ |
||||
@ApiModelProperty(name = "预留4",notes = "") |
||||
private String reserve4 ; |
||||
/** 预留5 */ |
||||
@ApiModelProperty(name = "预留5",notes = "") |
||||
private String reserve5 ; |
||||
/** 仓库id */ |
||||
@ApiModelProperty(name = "仓库id",notes = "") |
||||
private Long warehouseId ; |
||||
/** 仓库名称 */ |
||||
@ApiModelProperty(name = "仓库名称",notes = "") |
||||
private String warehouseName ; |
||||
/** 创建人名称 */ |
||||
@ApiModelProperty(name = "创建人名称",notes = "") |
||||
private String createUserName ; |
||||
/** 描述内容 */ |
||||
@ApiModelProperty(name = "描述内容",notes = "") |
||||
private String content ; |
||||
/** 提货单id */ |
||||
@ApiModelProperty(name = "提货单id",notes = "") |
||||
private Long billladingId ; |
||||
|
||||
} |
@ -0,0 +1,13 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineBillladingLineEntity; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class TrunklineBillladingLineVO extends TrunklineBillladingLineEntity { |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,71 @@
|
||||
package com.logpm.distribution.dto; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 滞留扫描对象 |
||||
*/ |
||||
@Data |
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
public class DistributionRetentionScanDTO { |
||||
|
||||
/** |
||||
* 预约Id |
||||
*/ |
||||
private Long reservationId; |
||||
|
||||
/** |
||||
* 预约Id |
||||
*/ |
||||
private String reservationCode; |
||||
|
||||
/** |
||||
* 订单Id |
||||
*/ |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 订单自编码 |
||||
*/ |
||||
private Long orderCode; |
||||
|
||||
/** |
||||
* 订单Id |
||||
*/ |
||||
private Long inventoryId; |
||||
|
||||
|
||||
|
||||
/** |
||||
* 物料编码 |
||||
*/ |
||||
private String materialNumber; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
private String materialName; |
||||
|
||||
/** |
||||
* 包件ID |
||||
*/ |
||||
private Long orderPackageId; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
private Long orderPackageCode; |
||||
|
||||
/** |
||||
* 滞留数量 |
||||
*/ |
||||
private Long retentionQuantity; |
||||
|
||||
/** |
||||
* 类型 |
||||
*/ |
||||
private Integer conditions; |
||||
|
||||
|
||||
} |
@ -0,0 +1,89 @@
|
||||
/* |
||||
* 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.distribution.excel; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
|
||||
/** |
||||
* 商配备货 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-15 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionMarketExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货编码") |
||||
private String stockupCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货时间") |
||||
private Date stockupDate; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("出库时间") |
||||
private Date outboundDate; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货状态") |
||||
private String stockupStatus; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货区") |
||||
private String stockupArea; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("指派状态;1-未指派、2-已指派") |
||||
private String assignStatus; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("所在库位") |
||||
private String stockipAllocation; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货人员") |
||||
private Long forklift; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("所在托盘") |
||||
private String pallet; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("确认完成备货时间") |
||||
private Date fixTime; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("指派时间") |
||||
private Date assignTime; |
||||
|
||||
|
||||
} |
@ -0,0 +1,89 @@
|
||||
/* |
||||
* 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.distribution.excel; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
|
||||
/** |
||||
* 自提备货 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-15 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionSelfExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货编码") |
||||
private String stockupCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货时间") |
||||
private Date stockupDate; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("出库时间") |
||||
private Date outboundDate; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货状态") |
||||
private String stockupStatus; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货区") |
||||
private String stockupArea; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("指派状态;1-未指派、2-已指派") |
||||
private String assignStatus; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("所在库位") |
||||
private String stockipAllocation; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备货人员") |
||||
private Long forklift; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("所在托盘") |
||||
private String pallet; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("确认完成备货时间") |
||||
private Date fixTime; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty("指派时间") |
||||
private Date assignTime; |
||||
|
||||
|
||||
} |
@ -0,0 +1,419 @@
|
||||
/* |
||||
* 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.distribution.excel; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
|
||||
/** |
||||
* 签收管理 Excel实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-13 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionSignforOwnExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 配送车次 |
||||
*/ |
||||
@ApiModelProperty(value = "配送车次") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送车次") |
||||
private String trainNumber; |
||||
|
||||
/** |
||||
* 订单自编号;订单关联id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("订单自编号") |
||||
private String orderCode; |
||||
|
||||
/** |
||||
* 配送仓库(名称) |
||||
*/ |
||||
@ApiModelProperty(value = "配送仓库(名称)") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送仓库") |
||||
private String warehouseName; |
||||
|
||||
/** |
||||
* 收货人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("客户名称") |
||||
private String consignee; |
||||
/** |
||||
* 收货人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("客户电话") |
||||
private String deliveryPhone; |
||||
/** |
||||
* 收货地址 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("收货地址") |
||||
private String deliveryAddress; |
||||
|
||||
/** |
||||
* 配送类型 |
||||
*/ |
||||
@ApiModelProperty(value = "配送类型;1-商配、2-市配") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送类型") |
||||
private String deliveryTypeName; |
||||
|
||||
/** |
||||
* 门店名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("服务类型") |
||||
private String deliveryWayName; |
||||
|
||||
/** |
||||
* 总件数 |
||||
*/ |
||||
@ApiModelProperty(value = "总件数") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("总件数") |
||||
private Integer reservationNum; |
||||
|
||||
/** |
||||
* 装车件数 |
||||
*/ |
||||
@ApiModelProperty(value = "装车件数") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("装车件数") |
||||
private Integer loadedNumber; |
||||
|
||||
/** |
||||
* 签收数 |
||||
*/ |
||||
@ApiModelProperty(value = "签收数") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("签收数") |
||||
private Integer receivedQuantity; |
||||
|
||||
/** |
||||
* 装车未扫数 |
||||
*/ |
||||
@ApiModelProperty(value = "装车未扫数") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("装车未扫数") |
||||
private String withoutScanning; |
||||
|
||||
/** |
||||
* 未签收数目 |
||||
*/ |
||||
@ApiModelProperty(value = "未签收数目") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("未签收数目") |
||||
private String unsigneds; |
||||
|
||||
/** |
||||
* 送货司机(名称) |
||||
*/ |
||||
@ApiModelProperty(value = "送货司机(名称)") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("送货司机") |
||||
private String deliveryDriverName; |
||||
|
||||
/** |
||||
* 送货司机手机号 |
||||
*/ |
||||
@ApiModelProperty(value = "送货司机手机号") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("送货司机手机号") |
||||
private String deliveryDriverPhone; |
||||
|
||||
/** |
||||
* 文员签收时间 |
||||
*/ |
||||
@ApiModelProperty(value = "签收时间") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("签收时间") |
||||
private String signingTime; |
||||
|
||||
/** |
||||
* 司机签收时间 |
||||
*/ |
||||
@ApiModelProperty(value = "司机签收时间") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("司机签收时间") |
||||
private String sjsigningTime; |
||||
|
||||
/** |
||||
* 签收人(名称) |
||||
*/ |
||||
@ApiModelProperty(value = "签收人(名称)") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("签收人") |
||||
private String signeeName; |
||||
|
||||
|
||||
/** |
||||
* 文员签收状态;1-未签收,2-签收 |
||||
*/ |
||||
@ApiModelProperty(value = "文员签收状态;1-未签收,2-签收") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("文员签收状态") |
||||
private String signingStatusName; |
||||
|
||||
/** |
||||
* 司机签收状态;1-未签收,2-签收 |
||||
*/ |
||||
@ApiModelProperty(value = "司机签收状态;1-未签收,2-签收") |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("司机签收状态") |
||||
private String driverSigningName; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// /**
|
||||
// * 服务类型
|
||||
// */
|
||||
// @ApiModelProperty(value = "预约服务类型;1-上楼、2-超区、3-拆样、4-平移、5-分拣、6-搬运、7-返货;")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("预约服务类型")
|
||||
// private String deliveryWay;
|
||||
//
|
||||
// /**
|
||||
// * 商城名称
|
||||
// */
|
||||
// @ApiModelProperty(value = "商城名称")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("商城名称")
|
||||
// private String mallName;
|
||||
//
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 订单总数
|
||||
// */
|
||||
// @ApiModelProperty(value = "订单总数")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("订单总数")
|
||||
// private Integer orderTotal;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 签收类型;1-签收,2-代签收
|
||||
// */
|
||||
// @ApiModelProperty(value = "签收类型;1-签收,2-代签收")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("签收类型")
|
||||
// private String signingType;
|
||||
// /**
|
||||
// * 服务号
|
||||
// */
|
||||
// @ApiModelProperty(value = "服务号")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("服务号")
|
||||
// private String serviceNumber;
|
||||
// /**
|
||||
// * 司机备注
|
||||
// */
|
||||
// @ApiModelProperty(value = "司机备注")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("司机备注")
|
||||
// private String driverRemarks;
|
||||
// /**
|
||||
// * 文员备注
|
||||
// */
|
||||
// @ApiModelProperty(value = "文员备注")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("文员备注")
|
||||
// private String clerkSignRemarks;
|
||||
//
|
||||
// /**
|
||||
// * 送货车辆(值)
|
||||
// */
|
||||
// @ApiModelProperty(value = "送货车辆(值)")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("送货车辆")
|
||||
// private String deliveryVehicleName;
|
||||
//
|
||||
// /**
|
||||
// * 编号
|
||||
// */
|
||||
// @ApiModelProperty(value = "编号")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("编号")
|
||||
// private String number;
|
||||
//
|
||||
// /**
|
||||
// * 配送单号
|
||||
// */
|
||||
// @ApiModelProperty(value = "配送单号")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("配送单号")
|
||||
// private String noteNumber;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 配送时间
|
||||
// */
|
||||
// @ApiModelProperty(value = "配送时间")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("配送时间")
|
||||
// private String deliveryTime;
|
||||
// /**
|
||||
// * 装车时间
|
||||
// */
|
||||
// @ApiModelProperty(value = "装车时间")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("装车时间")
|
||||
// private String loadingTime;
|
||||
//
|
||||
// /**
|
||||
// * 定位打卡
|
||||
// */
|
||||
// @ApiModelProperty(value = "定位打卡")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("定位打卡")
|
||||
// private String positioning;
|
||||
// /**
|
||||
// * 定位打卡地址
|
||||
// */
|
||||
// @ApiModelProperty(value = "定位打卡地址")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("定位打卡地址")
|
||||
// private String positioningAdr;
|
||||
//
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 预约关联Id;预约关联id
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("服务类型")
|
||||
// private String deliveryTypeName;
|
||||
//
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 配送仓库
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("门店名称")
|
||||
// private String storeName;
|
||||
// /**
|
||||
// * 服务类型
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("配送服务类型")
|
||||
// private String deliveryWayName;
|
||||
//
|
||||
// /**
|
||||
// * 签收状态;1-未签收,2-司机签收,3-文员签收
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("司机签收状态")
|
||||
// private String driverSigningName;
|
||||
// /**
|
||||
// * 签收类型;1-签收,2-代签收
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("文员审核状态")
|
||||
// private String signingStatusName;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 门店名称
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("服务类型")
|
||||
// private String serveType;
|
||||
//
|
||||
// /**
|
||||
// * 配送单号
|
||||
// */
|
||||
// @ApiModelProperty(value = "配送单号")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("服务类型")
|
||||
// private String reservationCode;
|
||||
// /**
|
||||
// * 预约时间
|
||||
// */
|
||||
// @ApiModelProperty(value = "预约时间")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("服务类型")
|
||||
// private String reservationDate;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 签收状态
|
||||
// */
|
||||
// @ApiModelProperty(value = "签收状态")
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("签收状态")
|
||||
// private String signingStatusAll;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 备注
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("备注")
|
||||
// private String remarks;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 是否加急
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("是否加急")
|
||||
// private String isUrgent;
|
||||
//
|
||||
// /**
|
||||
// * 配送车牌号
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("配送车牌号")
|
||||
// private String vehicleName;
|
||||
//
|
||||
// /**
|
||||
// * 配送司机
|
||||
// */
|
||||
// @ColumnWidth(20)
|
||||
// @ExcelProperty("配送司机")
|
||||
// private String driverName;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue