workflow.go 712 B

12345678910111213141516171819202122232425
  1. package response
  2. type MsgResponse struct {
  3. Success bool `json:"success"`
  4. ErrCode int `json:"errCode"`
  5. Msg string `json:"msg"`
  6. }
  7. type InfoResponse[T any] struct {
  8. MsgResponse
  9. Info T `json:"info"`
  10. }
  11. type BusinessCatalogsInfoWithWorkflowTemplate struct {
  12. ID string `json:"id"`
  13. Name string `json:"name"`
  14. Code string `json:"code"`
  15. Sort int `json:"sort"`
  16. TenantID string `json:"tenantId" `
  17. CreateUserID string `json:"createUserId"`
  18. LastUpdateUserID string `json:"lastUpdateUserId"`
  19. CreatedTime string `json:"createdTime"`
  20. LastUpdatedTime string `json:"lastUpdatedTime"`
  21. WorkTemplateId string `json:"workTemplateId"`
  22. }