feat: 完成部分界面重构

This commit is contained in:
2026-01-02 06:12:49 +08:00
parent bd313db5f2
commit f2d91b0164
26 changed files with 700 additions and 323 deletions

View File

@@ -41,7 +41,9 @@ class Nucleon:
return len(self.data)
def __repr__(self):
return repr(self.data)
from pprint import pformat
s = pformat(self.data, indent=4)
return s
@staticmethod
def create_on_nucleonic_data(nucleonic_data: tuple):