您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
487B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>KitLabels</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>KitID</c> (INTEGER → Kit.ID).
  5. /// </summary>
  6. public sealed record LegacyKitLabel(
  7. int Id,
  8. int KitId,
  9. string? InBoundImb,
  10. string? InBoundImbDigits,
  11. string? InBoundSerial,
  12. string? OutboundImb,
  13. string? OutboundImbDigits,
  14. string? OutboundSerial,
  15. double? SetNumber);

Powered by TurnKey Linux.