gengby
9 months ago
4 changed files with 79 additions and 0 deletions
@ -0,0 +1,44 @@ |
|||
package org.nl.wms.pda.service.dao.vo; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Description: 打印标签返回数据 |
|||
* @Date: 2023/8/1 |
|||
*/ |
|||
@Data |
|||
public class PrintTagVo implements Serializable { |
|||
|
|||
/** |
|||
* 载具编码 |
|||
*/ |
|||
private String vehicle_code; |
|||
|
|||
/** |
|||
* 物料编码 |
|||
*/ |
|||
private String material_code; |
|||
|
|||
/** |
|||
* 物料名称 |
|||
*/ |
|||
private String material_name; |
|||
|
|||
/** |
|||
* 物料数量 |
|||
*/ |
|||
private String material_qty; |
|||
|
|||
/** |
|||
* 配盘批次 |
|||
*/ |
|||
private String pcsn; |
|||
|
|||
/** |
|||
* 打印时间 |
|||
*/ |
|||
private String print_time; |
|||
} |
Loading…
Reference in new issue