域名所有者增加实名认证字段

This commit is contained in:
jingrow 2025-08-03 13:09:50 +08:00
parent fedaab2040
commit 81d623b653
2 changed files with 11 additions and 2 deletions

View File

@ -22,6 +22,7 @@
"c_ph_fj",
"c_pc",
"team",
"r_status",
"section_break_ssfs",
"c_org_m",
"c_ln_m",
@ -223,12 +224,18 @@
"in_list_view": 1,
"in_standard_filter": 1,
"label": "模板标识"
},
{
"default": "0",
"fieldname": "r_status",
"fieldtype": "Check",
"label": "实名认证"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-08-02 17:35:55.668582",
"modified": "2025-08-03 12:37:48.526845",
"modified_by": "Administrator",
"module": "Jcloud",
"name": "Domain Owner",

View File

@ -41,6 +41,7 @@ class DomainOwner(Document):
c_sysid: DF.Data | None
cocode: DF.Data | None
fullname: DF.Data | None
r_status: DF.Check
reg_contact_type: DF.Literal["", "cg", "hk", "tw", "jingwai"]
team: DF.Link | None
title: DF.Data | None
@ -66,7 +67,8 @@ class DomainOwner(Document):
"cocode",
"c_idtype_gswl",
"c_idnum_gswl",
"c_sysid"
"c_sysid",
"r_status"
)
@staticmethod