chore: domain manager

This commit is contained in:
xiaojunnuo
2025-07-10 16:32:12 +08:00
parent c451823c2b
commit f3002e4fb6
12 changed files with 450 additions and 31 deletions
@@ -13,26 +13,26 @@ export class DomainEntity {
@Column({ comment: '主域名', length: 100 })
domain: string;
@Column({ comment: '校验类型', name: 'challenge_type', length: 100 })
@Column({ comment: '校验类型', name: 'challenge_type', length: 50 })
challengeType : string;
@Column({ comment: 'DNS提供商', name: 'dns_provider_type', length: 100 })
@Column({ comment: 'DNS提供商', name: 'dns_provider_type', length: 50 })
dnsProviderType: string;
@Column({ comment: 'DNS提供商授权', name: 'dns_provider_access', length: 200 })
@Column({ comment: 'DNS提供商授权', name: 'dns_provider_access' })
dnsProviderAccess: number;
@Column({ comment: '是否禁用', name: 'disabled' })
disabled: boolean;
@Column({ comment: 'http上传类型', name: 'http_uploader_type', length: 200 })
@Column({ comment: 'http上传类型', name: 'http_uploader_type', length: 50 })
httpUploaderType: string;
@Column({ comment: 'http上传授权', name: 'http_uploader_access', length: 200 })
@Column({ comment: 'http上传授权', name: 'http_uploader_access' })
httpUploaderAccess: number;
@Column({ comment: 'http上传根目录', name: 'http_upload_root_dir', length: 200 })
@Column({ comment: 'http上传根目录', name: 'http_upload_root_dir', length: 512 })
httpUploadRootDir: string;
@Column({