flow_node_conditions.go 679 B

12345678910111213141516171819
  1. package model
  2. type FlowNodeConditions struct {
  3. Id int64 `json:"id"`
  4. PastureId int64 `json:"pastureId"`
  5. FlowId int64 `json:"flowId"`
  6. NodeId int64 `json:"nodeId"`
  7. NextNodeId int64 `json:"nextNodeId"`
  8. BaseTimeName string `json:"baseTimeName"`
  9. BaseTimeField string `json:"baseTimeField"`
  10. ExecTime string `json:"execTime"`
  11. CirculationConditions string `json:"circulationConditions"`
  12. CreatedAt int64 `json:"createdAt"`
  13. UpdatedAt int64 `json:"updatedAt"`
  14. }
  15. func (f *FlowNodeConditions) TableName() string {
  16. return "flow_node_conditions"
  17. }