using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareLog.Report.Helper { // 建议放在 Models 或 DTOs 文件夹下 public class R_InOutStorageDetailResultForMes { /// /// 型材唯一编码 /// public string Code { get; set; } /// /// 船号/发放工程号 /// public string IssueProjectNo { get; set; } /// /// 分段号 /// public string SerialNo { get; set; } /// /// 业务标识(暂为 A.type) /// public string BusinessFlag { get; set; } /// /// 库位编码(暂为 A.toplacecode,目标库位) /// public string PlaceCode { get; set; } /// /// 发送时间戳(暂为 A.createtime) /// public string Timestamp { get; set; } /// /// 发生时间(暂与 Timestamp 一致,或可替换为其它字段) /// public string OccurrenceTime { get; set; } } }