approver.go 756 B

1234567891011121314151617181920
  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:"json`
  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 int `from:"progress" json:"progress"`
  16. Times int `from:"times" json:"times"`
  17. AuditOrder int `from:"audit_order" json:"audit_order"`
  18. AuditId string `from:"audit_id" json:"audit_id"`
  19. }