七月迭代短暂完结,还有很多后端的关键东西没有弄,这是一版赶时间做的东西
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 8m26s

This commit is contained in:
2026-07-25 17:06:58 +08:00
parent ad9f613dd6
commit 73f5125d3d
249 changed files with 17137 additions and 877 deletions

View File

@@ -0,0 +1,30 @@
package model
import (
"time"
"gorm.io/datatypes"
)
// WeComApprovalScene 保存稳定业务类型到企微后台模板及控件映射的当前配置。
type WeComApprovalScene struct {
ID uint `gorm:"column:id;primaryKey;autoIncrement" json:"id"`
BusinessType string `gorm:"column:business_type;type:varchar(64);not null;uniqueIndex" json:"business_type"`
ApplicationID uint `gorm:"column:application_id;not null;index" json:"application_id"`
TemplateID string `gorm:"column:template_id;type:varchar(128);not null" json:"template_id"`
TemplateName string `gorm:"column:template_name;type:varchar(255);not null;default:''" json:"template_name"`
ControlMapping datatypes.JSON `gorm:"column:control_mapping;type:jsonb;not null" json:"control_mapping"`
TemplateSnapshot datatypes.JSON `gorm:"column:template_snapshot;type:jsonb;not null" json:"template_snapshot"`
TemplateFingerprint string `gorm:"column:template_fingerprint;type:char(64);not null" json:"template_fingerprint"`
Status int `gorm:"column:status;type:int;not null;default:1" json:"status"`
LastVerifiedAt time.Time `gorm:"column:last_verified_at;type:timestamptz;not null" json:"last_verified_at"`
CreatedBy uint `gorm:"column:created_by;not null" json:"created_by"`
UpdatedBy uint `gorm:"column:updated_by;not null" json:"updated_by"`
CreatedAt time.Time `gorm:"column:created_at;type:timestamptz;not null;autoCreateTime" json:"created_at"`
UpdatedAt time.Time `gorm:"column:updated_at;type:timestamptz;not null;autoUpdateTime" json:"updated_at"`
}
// TableName 指定企业微信审批场景配置表名。
func (WeComApprovalScene) TableName() string {
return "tb_wecom_approval_scene"
}