| 12345678910111213141516171819 | 
							- package model
 
- type FlowNodeConditions struct {
 
- 	Id                    int64  `json:"id"`
 
- 	PastureId             int64  `json:"pastureId"`
 
- 	FlowId                int64  `json:"flowId"`
 
- 	NodeId                int64  `json:"nodeId"`
 
- 	NextNodeId            int64  `json:"nextNodeId"`
 
- 	BaseTimeName          string `json:"baseTimeName"`
 
- 	BaseTimeField         string `json:"baseTimeField"`
 
- 	ExecTime              string `json:"execTime"`
 
- 	CirculationConditions string `json:"circulationConditions"`
 
- 	CreatedAt             int64  `json:"createdAt"`
 
- 	UpdatedAt             int64  `json:"updatedAt"`
 
- }
 
- func (f *FlowNodeConditions) TableName() string {
 
- 	return "flow_node_conditions"
 
- }
 
 
  |