plat_workflow.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package workflow
  5. import (
  6. "dashoo.cn/micro/app/model/workflow/internal"
  7. "dashoo.cn/opms_libary/request"
  8. )
  9. // BizType 业务类型(10领用20项目创建30合同创建)
  10. const (
  11. CustomerReceive = "11" // 领取公海客户
  12. ProjectCreate = "20" // 项目创建
  13. ProjectUpGrade = "21" // 项目升级审批
  14. ProjectDownGrade = "22" // 项目降级审批
  15. ProjectTransfer = "23" // 项目转移项目审批
  16. ProjectToReserve = "24" // 项目转为储备项目审批
  17. ProjectPersonnel = "25" // 项目协同人员审批
  18. ContractCreate = "30" // 合同创建
  19. )
  20. // PlatWorkflow is the golang structure for table plat_workflow.
  21. type PlatWorkflow internal.PlatWorkflow
  22. // Fill with you ideas below.
  23. // SearchWorkflowReq 查询
  24. type SearchWorkflowReq struct {
  25. BizCode string `json:"bizCode"`
  26. BizType string `son:"bizType"`
  27. MySelf string `json:"mySelf"` // 不为0时,查询自己的数据;为0时,查询全部数据
  28. request.PageReq
  29. }