ImLinkage.cs 571 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImLinkage
  6. {
  7. public string LnkId { get; set; } = null!;
  8. public string SrcObjId { get; set; } = null!;
  9. public string SrcObjType { get; set; } = null!;
  10. public string LnkType { get; set; } = null!;
  11. public string Resource { get; set; } = null!;
  12. public string? Action { get; set; }
  13. public string? ActParam { get; set; }
  14. public string State { get; set; } = null!;
  15. }
  16. }