1234567891011121314151617181920212223 |
- package request
- type BiApproveFlowSaveReq struct {
- BiApproveFlowId int
- ClassifyId int
- FlowName string
- Nodes []Node
- }
- type Node struct {
- ApproveType int `description:"审批类型: 1-依次审批, 2-会签, 3-或签"`
- Users []User
- }
- type User struct {
- UserId int `description:"用户ID"`
- UserName string `description:"用户名"`
- UserType string `description:"用户类型: user-用户 role-角色"`
- }
- type BiApproveFlowRemoveResp struct {
- BiApproveFlowId int
- }
|