| 98 | |
| 99 | |
| 100 | class SystemParams(TimestampMixin): |
| 101 | params_name = fields.CharField(unique=True, max_length=255, description="参数名") |
| 102 | params = fields.JSONField(description="参数") |
| 103 | |
| 104 | class Meta: |
| 105 | table_description = "系统参数表" |
| 106 | table = "system_params" |
nothing calls this directly
no outgoing calls
no test coverage detected