WfRunData_gen.go 392 B

1234567891011121314151617181920212223242526
  1. package models
  2. import (
  3. //__import_packages__
  4. )
  5. type WfRunData struct {
  6. //选择项
  7. Choice string `json:"choice"`
  8. //实例id
  9. InstanceId string `json:"instance_id"`
  10. //下一步骤名称
  11. NextStep string `json:"nextStep"`
  12. //选项
  13. Opinion string `json:"opinion"`
  14. //下一环节处理人ID
  15. Users string `json:"users"`
  16. }
  17. func init() {
  18. AddTableName("wf_run_data")
  19. }