补全一些接口
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 8m9s

This commit is contained in:
2026-07-27 17:17:43 +08:00
parent 072ec1db7e
commit d46ccbd319
8 changed files with 221 additions and 43 deletions

View File

@@ -50,6 +50,17 @@ const (
ApprovalFieldPackageUsageID = "package_usage_id"
)
const (
// ApprovalFieldValueTypeString 表示业务字段值为普通字符串。
ApprovalFieldValueTypeString = "string"
// ApprovalFieldValueTypeInteger 表示业务字段值为整数。
ApprovalFieldValueTypeInteger = "integer"
// ApprovalFieldValueTypeMoney 表示业务字段值为两位小数的元金额字符串。
ApprovalFieldValueTypeMoney = "money"
// ApprovalFieldValueTypeFileList 表示业务字段值为对象存储文件引用列表。
ApprovalFieldValueTypeFileList = "file_list"
)
const (
// ApprovalStatusSubmitting 表示审批申请等待渠道提交。
ApprovalStatusSubmitting = 0