修复域名解析记录值长度限制140的问题

This commit is contained in:
jingrow 2026-05-10 22:08:07 +08:00
parent 6285f07757
commit 515249756a
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
{
"columns": 4,
"fieldname": "value",
"fieldtype": "Data",
"fieldtype": "Small Text",
"in_list_view": 1,
"label": "对应值",
"reqd": 1
@ -82,7 +82,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2025-08-05 03:04:50.722407",
"modified": "2026-05-10 22:04:08.761737",
"modified_by": "Administrator",
"module": "Jcloud",
"name": "Dns Resolution",

View File

@ -24,6 +24,6 @@ class DnsResolution(Page):
record_status: DF.Data | None
ttl: DF.Data | None
type: DF.Literal["", "A", "AAAA", "CNAME", "MX", "NS", "TXT", "SRV"]
value: DF.Data
value: DF.SmallText
# end: auto-generated types
pass