| 123456789101112131415161718192021222324252627282930 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package plat
- import (
- "dashoo.cn/micro/app/model/plat/internal"
- "dashoo.cn/opms_libary/request"
- )
- // PlatTaskProgress is the golang structure for table plat_task_progress.
- type PlatTaskProgress internal.PlatTaskProgress
- // Fill with you ideas below.
- // 查询
- type SearchPlatTaskProgressReq struct {
- TaskId string `json:"taskId"`
- request.PageReq
- }
- // 添加数据
- type AddPlatTaskProgressReq struct {
- TaskId int `orm:"task_id" json:"taskId" v:"required|min:1#关联任务不能为空|关联任务不能为空"` // 关联任务
- ProgDate string `orm:"prog_date" json:"progDate"` // 进展时间
- ProgDesc string `orm:"prog_desc" json:"progDesc" v:"required#进展说明不能为空"` // 进展说明
- ProgFile string `orm:"prog_file" json:"progFile"` // 相关附件
- Remark string `orm:"remark" json:"remark"` // 备注
- }
|