50 lines
832 B
Dart
50 lines
832 B
Dart
/// 入库码盘数据
|
|
class StockInDataXuGong {
|
|
/// 物料号
|
|
String goodsId = "";
|
|
|
|
/// 物料数量
|
|
double goodsNum = 0;
|
|
|
|
/// 单据号
|
|
String orderNo = "";
|
|
|
|
/// 单据类型
|
|
String orderType = "";
|
|
|
|
/// 客户名称
|
|
String customerName = "";
|
|
|
|
/// 物料描述
|
|
String goodsDesc = "";
|
|
|
|
/// 重量
|
|
double weight = 0;
|
|
|
|
/// 尺寸
|
|
String size = "";
|
|
|
|
/// 容器号
|
|
String containerNo = "";
|
|
|
|
/// 备用1
|
|
String spare1 = "";
|
|
|
|
/// 备用2
|
|
String spare2 = "";
|
|
|
|
StockInDataXuGong({
|
|
required this.goodsId,
|
|
required this.goodsNum,
|
|
required this.orderNo,
|
|
required this.orderType,
|
|
required this.customerName,
|
|
required this.goodsDesc,
|
|
required this.weight,
|
|
required this.size,
|
|
required this.spare1,
|
|
required this.spare2,
|
|
required this.containerNo,
|
|
});
|
|
}
|