namespace Gatedge.ScanCode.Models.Dto.ScanRecords { /// /// 条码新增类 /// public class ScanRecordsSaveDto { /// /// 扫描单据ID /// public string? FID { get; set; } /// /// 状态 /// public string? FStatus { get; set; } /// /// 扫描单据ID /// public string? FBillId { get; set; } /// /// 扫描单据编号 /// public string? FBillNo { get; set; } /// /// 条码编码 /// public string? FBarCode { get; set; } /// /// 物料编码 /// public string? FMaterialId { get; set; } /// /// 扫描数量 /// public decimal? FQty { get; set; } /// /// 仓库 /// public string? FStockId { get; set; } /// /// 批号 /// public string? Flot { get; set; } /// /// 分录ID /// public string? FEntryId { get; set; } /// /// 下推JSON /// public string? FJSON { get; set; } /// /// 错误信息 /// public string? FErrorInfo { get; set; } /// /// 响应信息 /// public string? FResultInfo { get; set; } /// /// 结果内码 /// public string? FResultId { get; set; } /// /// 结果单号 /// public string? FResultBillNo { get; set; } /// /// 是否已校验 /// public string? FResultIsChecked { get; set; } /// /// 结果FormId /// public string? FResultBillId { get; set; } /// /// 是否已打印 /// public string? FIsPrinted { get; set; } /// /// 提交批次 /// public string FSubmitLot { get; set; } } }