using MES.Service.Modes; namespace MES.Service.Dto.service; public class MovesDto { //出入单 public List? FromList { get; set; } public List? OutItems { get; set; } public List? BarcodeList { get; set; } //入库单 public bool? InAudit { get; set; } public MesInvItemBarcodes? BarcodesInfo { get; set; } }