| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- namespace Admin.NET.Plugin.AiDOP.MaterialWarehouse.Dto;
- public class IqcTaskEntryListInput
- {
- public string? ApplyBillNo { get; set; }
- public string? MaterialCode { get; set; }
- public string? LotNo { get; set; }
- public string? InspectStatus { get; set; }
- public string? Receiver { get; set; }
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 20;
- }
- public class IqcTaskEntryRow
- {
- public long Id { get; set; }
- public long? Glid { get; set; }
- public string? ApplyBillNo { get; set; }
- public string? BizType { get; set; }
- public string? MaterialCode { get; set; }
- public string? MaterialName { get; set; }
- public string? Spec { get; set; }
- public string? LotNo { get; set; }
- public string? Receiver { get; set; }
- public decimal? ApplyQty { get; set; }
- public string? InspectStatus { get; set; }
- public string? OwnerId { get; set; }
- public string? OwnerName { get; set; }
- public long? Priority { get; set; }
- public string? SupplierCode { get; set; }
- public string? SupplierName { get; set; }
- public string? ShipmentNo { get; set; }
- public long? InspBillId { get; set; }
- public string? InspBillNo { get; set; }
- }
- public class IqcTaskEntryIdsInput
- {
- public List<long> Ids { get; set; } = new();
- }
- public class IqcTaskEntryAssignInput
- {
- public List<long> Ids { get; set; } = new();
- /// <summary>检验负责人用户 Id(统一存用户 id,见任务书 Q6/U9)</summary>
- public long InspectorUserId { get; set; }
- }
- public class IqcTaskEntryPriorityInput
- {
- public List<long> Ids { get; set; } = new();
- public long Priority { get; set; }
- }
- public class IqcGenerateInspBillInput
- {
- /// <summary>报检分录 id(qms_qcp_insappnentry.id)</summary>
- public long EntryId { get; set; }
- }
- public class IqcGenerateInspBillOutput
- {
- public long InspBillId { get; set; }
- public string InspBillNo { get; set; } = "";
- }
|