approver.go 1006 B

12345678910111213141516171819202122232425
  1. /*
  2. * @description:审批流程相关
  3. * @Author: LanJianRong
  4. * @Date: 2021-01-07 16:00:19
  5. * @FilePath: \construction_management\web\viewmodels\approver.go
  6. */
  7. package viewmodels
  8. type Approver struct {
  9. Id string `from:"id" json:"id"`
  10. ProjectId string `from:"project_id" json:"project_id"`
  11. BidsectionId string `from:"bidsection_id" json:"bidsection_id"`
  12. DataType int `from:"data_type" json:"data_type"`
  13. DataId string `from:"data_id" json:"data_id"`
  14. Status int `from:"status" json:"status"`
  15. Progress string `from:"progress" json:"progress"`
  16. AuditOrder int `from:"audit_order" json:"audit_order"`
  17. AuditId string `from:"audit_id" json:"audit_id"`
  18. Code string `from:"code" json:"code"`
  19. InspectionDetail string `from:"inspectionDetail" json:"inspectionDetail"`
  20. Name string `from:"name" json:"name"`
  21. Position string `from:"position" json:"position"`
  22. CreateTime string `form:"createTime" json:"createTime"`
  23. }