plat_task_progress.go 1.2 KB

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