feat(erp): 添加部门ID字段支持

- 在Custom结构体中添加DepartmentIds字段
- 更新数据库模型定义
- 添加JSON序列化标签映射
- 支持多部门关联功能
This commit is contained in:
2026-07-30 11:33:34 +08:00
parent 0e95e178b4
commit 5cf9fa3936

View File

@@ -2,11 +2,12 @@ package erp
import (
"context"
"time"
client2 "git.kumo.work/shama/service/client"
custom2 "git.kumo.work/shama/service/erp/custom"
"git.kumo.work/shama/service/lib/bean"
"github.com/shopspring/decimal"
"time"
)
type custom struct {
@@ -112,6 +113,7 @@ type CustomAdd struct {
MarkText string // 唛头文字
MarkImg string // 唛头图片
ImgFilePaths []string // 图片地址集合
DepartmentIds []int64 // 部门id
}
// Add @TITLE 添加客户
@@ -154,6 +156,7 @@ type ReplyCustomInfo struct {
MarkText string `json:"markText"` // 唛头文字
MarkImg string `json:"markImg"` // 唛头图片
ImgFilePaths []string `json:"imgFilePaths"` // 图片地址集合
DepartmentIds []int64 `json:"departmentIds"` // 部门ID集合
Status int64 `json:"status"`
CreatedStaffId int64 `json:"createdStaffId"`
CreatedAt *time.Time `json:"createdAt"`