初始
This commit is contained in:
36
api/app/visual/res.go
Normal file
36
api/app/visual/res.go
Normal file
@ -0,0 +1,36 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user