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

22 行
594B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>Kit</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>Jcode</c> (VARCHAR → Jurisdiction.JCode).
  5. /// </summary>
  6. public sealed record LegacyKit(
  7. int Id,
  8. string JCode,
  9. string? JobNumber,
  10. string? JobType,
  11. string? Status,
  12. string? Filename,
  13. bool Cass,
  14. bool InkJetJob,
  15. DateTime? CreatedOn,
  16. DateTime? ExportedToSnailWorks,
  17. DateTime? LabelsPrinted,
  18. int? OfficeCopiesAmount,
  19. string? InboundStid,
  20. string? OutboundStid);

Powered by TurnKey Linux.