feat(itim): Add attribute table_fields to Service Port model

ref:  #248 #345 #346
This commit is contained in:
2024-10-13 18:12:08 +09:30
parent 3998325acd
commit c205a75ce0

View File

@ -114,6 +114,15 @@ class Port(TenancyObject):
},
]
table_fields: list = [
'display_name',
'organization',
'created',
'modified'
]
def __str__(self):
return str(self.protocol) + '/' + str(self.number)