Files
zmkgC/api/app/visual/res.go
2025-07-07 20:11:59 +08:00

37 lines
1.1 KiB
Go

package visual
// 新增形象进度
type CreateVisualProgressRes struct{}
// 形象进度列表
type ReadVisualProgressRes struct {
ProgressList []VisualProgress `json:"progressList"`
Total int64 `json:"total"`
}
type VisualProgress struct {
Id int64 `json:"id" dc:"主键"`
ProjectID int64 `json:"projectId" dc:"项目ID"`
ProjectName string `json:"projectName" dc:"项目名称"`
ReporterID int64 `json:"reporterId" dc:"上报人ID"`
ReporterName string `json:"reporterName" dc:"上报人名字"`
ReportTime string `json:"reportTime" dc:"上报时间"`
Title string `json:"title" dc:"形象标题"`
ProgressDesc string `json:"progressDesc" dc:"进度描述"`
AttachmentURL string `json:"attachmentUrl" dc:"附件URL"`
}
// 更新形象进度
type UpdateVisualProgressRes struct{}
// 删除形象进度
type DeleteVisualProgressRes struct{}
// 根据ID查询形象进度详情
type GetVisualProgressDetailRes struct {
Detail VisualProgressDetail `json:"visualProgressDetail"`
}
type VisualProgressDetail struct {
VisualProgress
}