XuGongTeJi_flutter/lib/model/bo/stock_in_data_xugong.dart
2025-02-20 13:23:50 +08:00

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,
});
}