| 1234567891011121314151617181920212223242526 |
- package models
- import (
- //__import_packages__
- )
- type WfRunData struct {
-
- //选择项
- Choice string `json:"choice"`
- //实例id
- InstanceId string `json:"instance_id"`
- //下一步骤名称
- NextStep string `json:"nextStep"`
- //选项
- Opinion string `json:"opinion"`
- //下一环节处理人ID
- Users string `json:"users"`
- }
- func init() {
- AddTableName("wf_run_data")
- }
|