15 changed files with 293 additions and 14 deletions
@ -0,0 +1,136 @@
|
||||
/* |
||||
* 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.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionParcelListEntity; |
||||
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.lang.reflect.Field; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 配送在库订单 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-13 |
||||
*/ |
||||
@Data |
||||
public class DistributionStockArticleQRCodeVO { |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ApiModelProperty(value = "物料名称") |
||||
private String orderCode; |
||||
/** |
||||
* 已备货数量 |
||||
*/ |
||||
@ApiModelProperty(value = "已备货数量") |
||||
private String mallName; |
||||
/** |
||||
* 备货数量 |
||||
*/ |
||||
@ApiModelProperty(value = "备货数量") |
||||
private String customerName; |
||||
/** |
||||
* 托盘 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘") |
||||
private String customerTelephone; |
||||
/** |
||||
* 货位信息 |
||||
*/ |
||||
@ApiModelProperty(value = "货位信息") |
||||
private String customerAddress; |
||||
/** |
||||
* 订单状态 |
||||
*/ |
||||
@ApiModelProperty(value = "订单状态") |
||||
private String sending; |
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@ApiModelProperty(value = "物料名称") |
||||
private String materialName; |
||||
/** |
||||
* 品类 |
||||
*/ |
||||
@ApiModelProperty(value = "品类") |
||||
private String category; |
||||
/** |
||||
* 运单数 |
||||
*/ |
||||
@ApiModelProperty(value = "运单数") |
||||
private String waybillsNum; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String objective; |
||||
/** |
||||
* 发起仓 |
||||
*/ |
||||
@ApiModelProperty(value = "发起仓") |
||||
private String departureStation; |
||||
/** |
||||
* 订单状态 |
||||
*/ |
||||
@ApiModelProperty(value = "订单状态") |
||||
private String dealerCode; |
||||
/** |
||||
* 订单状态 |
||||
*/ |
||||
@ApiModelProperty(value = "订单状态") |
||||
private String dealerName; |
||||
/** |
||||
* 订单状态 |
||||
*/ |
||||
@ApiModelProperty(value = "订单状态") |
||||
private String waybillNumber; |
||||
/** |
||||
* 订单状态 |
||||
*/ |
||||
@ApiModelProperty(value = "订单状态") |
||||
private String totalNumber; |
||||
// /**
|
||||
// * 订单状态
|
||||
// */
|
||||
// @ApiModelProperty(value = "订单状态")
|
||||
// private String waybillsNum;
|
||||
|
||||
|
||||
public Map<String, Object> toMap() throws IllegalAccessException { |
||||
Map<String, Object> map = new HashMap<>(); |
||||
|
||||
// 使用反射获取所有字段
|
||||
Field[] fields = this.getClass().getDeclaredFields(); |
||||
for (Field field : fields) { |
||||
field.setAccessible(true); // 设置可以访问私有字段
|
||||
String fieldName = field.getName(); |
||||
Object value = field.get(this); |
||||
map.put(fieldName, value); |
||||
} |
||||
|
||||
return map; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue