示例#1
0
 def __repr__(self) -> str:
     return simple_repr(self, [
         "index_entry_pk", "task_table_name", "task_pk", "patient_pk",
         "device_id", "era", "when_created_utc", "when_created_iso",
         "when_added_batch_utc",
         "adding_user_id", "group_id", "task_is_complete",
     ])
示例#2
0
 def __repr__(self) -> str:
     return simple_repr(
         self,
         ["session_id", "session_token", "device_name", "username",
          "operation"],
         with_addr=True
     )
示例#3
0
 def __repr__(self) -> str:
     return simple_repr(
         self,
         [
             "oldserverpk",
             "newserverpk",
             "dirty",
             "to_be_preserved",
             "specifically_marked_preservation_pks",
         ],
     )
示例#4
0
 def __repr__(self) -> str:
     return simple_repr(
         self,
         [
             "_pk",
             "_device_id",
             "_era",
             "id",
             "patient_id",
             "which_idnum",
             "idnum_value",
         ],
     )
示例#5
0
 def __repr__(self) -> str:
     return simple_repr(
         self,
         [
             "id",
             "token",
             "ip_address",
             "user_id",
             "last_activity_utc_iso",
             "user",
         ],
         with_addr=True,
     )
示例#6
0
 def __repr__(self) -> str:
     return simple_repr(self, [
         "client_pk",
         "exists",
         "server_pk",
         "server_when",
         "move_off_tablet",
         "current",
         "addition_pending",
         "removal_pending",
         "predecessor_pk",
         "successor_pk",
     ])
示例#7
0
 def __repr__(self) -> str:
     return simple_repr(self, ["batchtime", "preserving", "onestep"])
示例#8
0
 def __repr__(self):
     return simple_repr(self, self.get_attrnames())
示例#9
0
 def __repr__(self) -> str:
     return simple_repr(self, ["focus_concept", "refinement"])
示例#10
0
 def __repr__(self) -> str:
     return simple_repr(self, ["attrsets", "attrgroups"])
示例#11
0
 def __repr__(self) -> str:
     return simple_repr(self, ["attribute_set"])
示例#12
0
 def __repr__(self) -> str:
     return simple_repr(self, ["identifier", "term"])
示例#13
0
 def __repr__(self) -> str:
     return simple_repr(self, self.HEADER)
示例#14
0
 def __repr__(self) -> str:
     attrnames = sorted(attrname for attrname, _ in gen_columns(self))
     return simple_repr(self, attrnames)
示例#15
0
 def __repr__(self) -> str:
     return simple_repr(self,
                        ["which_idnum", "description", "short_description"],
                        with_addr=False)
示例#16
0
 def __repr__(self) -> str:
     return simple_repr(self, ["idnum_pk", "patient_pk",
                               "which_idnum", "idnum_value"])
示例#17
0
 def __repr__(self) -> str:
     return simple_repr(self, ["name", "value"])
示例#18
0
 def __repr__(self) -> str:
     return simple_repr(self, ["concepts"])
示例#19
0
 def __repr__(self) -> str:
     return simple_repr(self, ["id", "username", "fullname"],
                        with_addr=True)