| 123456789101112131415161718192021222324252627282930 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package workflow
- import (
- "dashoo.cn/micro/app/model/workflow/internal"
- "dashoo.cn/opms_libary/request"
- )
- // BizType 业务类型(10领用20项目创建30合同创建)
- const (
- CustomerReceive = "11" // 领取公海客户
- ProjectCreate = "20" // 项目创建
- ContractCreate = "30" // 合同创建
- )
- // PlatWorkflow is the golang structure for table plat_workflow.
- type PlatWorkflow internal.PlatWorkflow
- // Fill with you ideas below.
- // SearchWorkflowReq 查询
- type SearchWorkflowReq struct {
- BizCode string `json:"bizCode"`
- BizType string `son:"bizType"`
- MySelf string `json:"mySelf"` // 不为0时,查询自己的数据;为0时,查询全部数据
- request.PageReq
- }
|