31 lines
419 B
Plaintext
31 lines
419 B
Plaintext
package com.cmeim.stock.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* @Verasion:1.0
|
|
* @Author:DZY
|
|
* @Date:2022/4/26
|
|
**/
|
|
@Data
|
|
public class StockOutVo {
|
|
/**
|
|
* 物料唯一码
|
|
*/
|
|
public String materialBar;
|
|
/**
|
|
* 数量
|
|
*/
|
|
public BigDecimal qty;
|
|
/**
|
|
* 单号
|
|
*/
|
|
public String orderNumber;
|
|
/**
|
|
* 操作人
|
|
*/
|
|
public String user;
|
|
}
|