LinkedSystem.cs 1010 B

1234567891011121314151617181920212223242526272829303132
  1. namespace AipDatabase.API.Models
  2. {
  3. public class LinkedSystem
  4. {
  5. public Int64 rowNum { get; set; }
  6. public int system_id { get; set; }
  7. public string system_name { get; set; }
  8. public string system_desc { get; set; }
  9. public string? created_at { get; set; }
  10. public int? server_count { get; set; }
  11. public LinkedSystem(int systemId, string systemName, string systemDesc)
  12. {
  13. this.rowNum = 0;
  14. this.system_id = systemId;
  15. this.system_name = systemName;
  16. this.system_desc = systemDesc;
  17. }
  18. public LinkedSystem(Int64 rowNum, int systemId, string systemName, string systemDesc, string createdAt, int serverCount)
  19. {
  20. this.rowNum = rowNum;
  21. this.system_id = systemId;
  22. this.system_name = systemName;
  23. this.system_desc = systemDesc;
  24. this.created_at = createdAt;
  25. this.server_count = serverCount;
  26. }
  27. }
  28. }