|
@@ -1069,34 +1069,35 @@ func (m *AgentMutation) ResetEdge(name string) error {
|
|
|
// BatchMsgMutation represents an operation that mutates the BatchMsg nodes in the graph.
|
|
|
type BatchMsgMutation struct {
|
|
|
config
|
|
|
- op Op
|
|
|
- typ string
|
|
|
- id *uint64
|
|
|
- created_at *time.Time
|
|
|
- updated_at *time.Time
|
|
|
- deleted_at *time.Time
|
|
|
- status *uint8
|
|
|
- addstatus *int8
|
|
|
- batch_no *string
|
|
|
- task_name *string
|
|
|
- fromwxid *string
|
|
|
- msg *string
|
|
|
- tag *string
|
|
|
- total *int32
|
|
|
- addtotal *int32
|
|
|
- success *int32
|
|
|
- addsuccess *int32
|
|
|
- fail *int32
|
|
|
- addfail *int32
|
|
|
- start_time *time.Time
|
|
|
- stop_time *time.Time
|
|
|
- send_time *time.Time
|
|
|
- _type *int32
|
|
|
- add_type *int32
|
|
|
- clearedFields map[string]struct{}
|
|
|
- done bool
|
|
|
- oldValue func(context.Context) (*BatchMsg, error)
|
|
|
- predicates []predicate.BatchMsg
|
|
|
+ op Op
|
|
|
+ typ string
|
|
|
+ id *uint64
|
|
|
+ created_at *time.Time
|
|
|
+ updated_at *time.Time
|
|
|
+ deleted_at *time.Time
|
|
|
+ status *uint8
|
|
|
+ addstatus *int8
|
|
|
+ batch_no *string
|
|
|
+ task_name *string
|
|
|
+ fromwxid *string
|
|
|
+ msg *string
|
|
|
+ tag *string
|
|
|
+ total *int32
|
|
|
+ addtotal *int32
|
|
|
+ success *int32
|
|
|
+ addsuccess *int32
|
|
|
+ fail *int32
|
|
|
+ addfail *int32
|
|
|
+ start_time *time.Time
|
|
|
+ stop_time *time.Time
|
|
|
+ _type *int32
|
|
|
+ add_type *int32
|
|
|
+ organization_id *uint64
|
|
|
+ addorganization_id *int64
|
|
|
+ clearedFields map[string]struct{}
|
|
|
+ done bool
|
|
|
+ oldValue func(context.Context) (*BatchMsg, error)
|
|
|
+ predicates []predicate.BatchMsg
|
|
|
}
|
|
|
|
|
|
var _ ent.Mutation = (*BatchMsgMutation)(nil)
|
|
@@ -1947,55 +1948,6 @@ func (m *BatchMsgMutation) ResetStopTime() {
|
|
|
delete(m.clearedFields, batchmsg.FieldStopTime)
|
|
|
}
|
|
|
|
|
|
-// SetSendTime sets the "send_time" field.
|
|
|
-func (m *BatchMsgMutation) SetSendTime(t time.Time) {
|
|
|
- m.send_time = &t
|
|
|
-}
|
|
|
-
|
|
|
-// SendTime returns the value of the "send_time" field in the mutation.
|
|
|
-func (m *BatchMsgMutation) SendTime() (r time.Time, exists bool) {
|
|
|
- v := m.send_time
|
|
|
- if v == nil {
|
|
|
- return
|
|
|
- }
|
|
|
- return *v, true
|
|
|
-}
|
|
|
-
|
|
|
-// OldSendTime returns the old "send_time" field's value of the BatchMsg entity.
|
|
|
-// If the BatchMsg object wasn't provided to the builder, the object is fetched from the database.
|
|
|
-// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
-func (m *BatchMsgMutation) OldSendTime(ctx context.Context) (v time.Time, err error) {
|
|
|
- if !m.op.Is(OpUpdateOne) {
|
|
|
- return v, errors.New("OldSendTime is only allowed on UpdateOne operations")
|
|
|
- }
|
|
|
- if m.id == nil || m.oldValue == nil {
|
|
|
- return v, errors.New("OldSendTime requires an ID field in the mutation")
|
|
|
- }
|
|
|
- oldValue, err := m.oldValue(ctx)
|
|
|
- if err != nil {
|
|
|
- return v, fmt.Errorf("querying old value for OldSendTime: %w", err)
|
|
|
- }
|
|
|
- return oldValue.SendTime, nil
|
|
|
-}
|
|
|
-
|
|
|
-// ClearSendTime clears the value of the "send_time" field.
|
|
|
-func (m *BatchMsgMutation) ClearSendTime() {
|
|
|
- m.send_time = nil
|
|
|
- m.clearedFields[batchmsg.FieldSendTime] = struct{}{}
|
|
|
-}
|
|
|
-
|
|
|
-// SendTimeCleared returns if the "send_time" field was cleared in this mutation.
|
|
|
-func (m *BatchMsgMutation) SendTimeCleared() bool {
|
|
|
- _, ok := m.clearedFields[batchmsg.FieldSendTime]
|
|
|
- return ok
|
|
|
-}
|
|
|
-
|
|
|
-// ResetSendTime resets all changes to the "send_time" field.
|
|
|
-func (m *BatchMsgMutation) ResetSendTime() {
|
|
|
- m.send_time = nil
|
|
|
- delete(m.clearedFields, batchmsg.FieldSendTime)
|
|
|
-}
|
|
|
-
|
|
|
// SetType sets the "type" field.
|
|
|
func (m *BatchMsgMutation) SetType(i int32) {
|
|
|
m._type = &i
|
|
@@ -2066,6 +2018,62 @@ func (m *BatchMsgMutation) ResetType() {
|
|
|
delete(m.clearedFields, batchmsg.FieldType)
|
|
|
}
|
|
|
|
|
|
+// SetOrganizationID sets the "organization_id" field.
|
|
|
+func (m *BatchMsgMutation) SetOrganizationID(u uint64) {
|
|
|
+ m.organization_id = &u
|
|
|
+ m.addorganization_id = nil
|
|
|
+}
|
|
|
+
|
|
|
+// OrganizationID returns the value of the "organization_id" field in the mutation.
|
|
|
+func (m *BatchMsgMutation) OrganizationID() (r uint64, exists bool) {
|
|
|
+ v := m.organization_id
|
|
|
+ if v == nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return *v, true
|
|
|
+}
|
|
|
+
|
|
|
+// OldOrganizationID returns the old "organization_id" field's value of the BatchMsg entity.
|
|
|
+// If the BatchMsg object wasn't provided to the builder, the object is fetched from the database.
|
|
|
+// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
|
|
|
+func (m *BatchMsgMutation) OldOrganizationID(ctx context.Context) (v uint64, err error) {
|
|
|
+ if !m.op.Is(OpUpdateOne) {
|
|
|
+ return v, errors.New("OldOrganizationID is only allowed on UpdateOne operations")
|
|
|
+ }
|
|
|
+ if m.id == nil || m.oldValue == nil {
|
|
|
+ return v, errors.New("OldOrganizationID requires an ID field in the mutation")
|
|
|
+ }
|
|
|
+ oldValue, err := m.oldValue(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return v, fmt.Errorf("querying old value for OldOrganizationID: %w", err)
|
|
|
+ }
|
|
|
+ return oldValue.OrganizationID, nil
|
|
|
+}
|
|
|
+
|
|
|
+// AddOrganizationID adds u to the "organization_id" field.
|
|
|
+func (m *BatchMsgMutation) AddOrganizationID(u int64) {
|
|
|
+ if m.addorganization_id != nil {
|
|
|
+ *m.addorganization_id += u
|
|
|
+ } else {
|
|
|
+ m.addorganization_id = &u
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// AddedOrganizationID returns the value that was added to the "organization_id" field in this mutation.
|
|
|
+func (m *BatchMsgMutation) AddedOrganizationID() (r int64, exists bool) {
|
|
|
+ v := m.addorganization_id
|
|
|
+ if v == nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return *v, true
|
|
|
+}
|
|
|
+
|
|
|
+// ResetOrganizationID resets all changes to the "organization_id" field.
|
|
|
+func (m *BatchMsgMutation) ResetOrganizationID() {
|
|
|
+ m.organization_id = nil
|
|
|
+ m.addorganization_id = nil
|
|
|
+}
|
|
|
+
|
|
|
// Where appends a list predicates to the BatchMsgMutation builder.
|
|
|
func (m *BatchMsgMutation) Where(ps ...predicate.BatchMsg) {
|
|
|
m.predicates = append(m.predicates, ps...)
|
|
@@ -2143,12 +2151,12 @@ func (m *BatchMsgMutation) Fields() []string {
|
|
|
if m.stop_time != nil {
|
|
|
fields = append(fields, batchmsg.FieldStopTime)
|
|
|
}
|
|
|
- if m.send_time != nil {
|
|
|
- fields = append(fields, batchmsg.FieldSendTime)
|
|
|
- }
|
|
|
if m._type != nil {
|
|
|
fields = append(fields, batchmsg.FieldType)
|
|
|
}
|
|
|
+ if m.organization_id != nil {
|
|
|
+ fields = append(fields, batchmsg.FieldOrganizationID)
|
|
|
+ }
|
|
|
return fields
|
|
|
}
|
|
|
|
|
@@ -2185,10 +2193,10 @@ func (m *BatchMsgMutation) Field(name string) (ent.Value, bool) {
|
|
|
return m.StartTime()
|
|
|
case batchmsg.FieldStopTime:
|
|
|
return m.StopTime()
|
|
|
- case batchmsg.FieldSendTime:
|
|
|
- return m.SendTime()
|
|
|
case batchmsg.FieldType:
|
|
|
return m.GetType()
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ return m.OrganizationID()
|
|
|
}
|
|
|
return nil, false
|
|
|
}
|
|
@@ -2226,10 +2234,10 @@ func (m *BatchMsgMutation) OldField(ctx context.Context, name string) (ent.Value
|
|
|
return m.OldStartTime(ctx)
|
|
|
case batchmsg.FieldStopTime:
|
|
|
return m.OldStopTime(ctx)
|
|
|
- case batchmsg.FieldSendTime:
|
|
|
- return m.OldSendTime(ctx)
|
|
|
case batchmsg.FieldType:
|
|
|
return m.OldType(ctx)
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ return m.OldOrganizationID(ctx)
|
|
|
}
|
|
|
return nil, fmt.Errorf("unknown BatchMsg field %s", name)
|
|
|
}
|
|
@@ -2337,19 +2345,19 @@ func (m *BatchMsgMutation) SetField(name string, value ent.Value) error {
|
|
|
}
|
|
|
m.SetStopTime(v)
|
|
|
return nil
|
|
|
- case batchmsg.FieldSendTime:
|
|
|
- v, ok := value.(time.Time)
|
|
|
+ case batchmsg.FieldType:
|
|
|
+ v, ok := value.(int32)
|
|
|
if !ok {
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
}
|
|
|
- m.SetSendTime(v)
|
|
|
+ m.SetType(v)
|
|
|
return nil
|
|
|
- case batchmsg.FieldType:
|
|
|
- v, ok := value.(int32)
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ v, ok := value.(uint64)
|
|
|
if !ok {
|
|
|
return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
}
|
|
|
- m.SetType(v)
|
|
|
+ m.SetOrganizationID(v)
|
|
|
return nil
|
|
|
}
|
|
|
return fmt.Errorf("unknown BatchMsg field %s", name)
|
|
@@ -2374,6 +2382,9 @@ func (m *BatchMsgMutation) AddedFields() []string {
|
|
|
if m.add_type != nil {
|
|
|
fields = append(fields, batchmsg.FieldType)
|
|
|
}
|
|
|
+ if m.addorganization_id != nil {
|
|
|
+ fields = append(fields, batchmsg.FieldOrganizationID)
|
|
|
+ }
|
|
|
return fields
|
|
|
}
|
|
|
|
|
@@ -2392,6 +2403,8 @@ func (m *BatchMsgMutation) AddedField(name string) (ent.Value, bool) {
|
|
|
return m.AddedFail()
|
|
|
case batchmsg.FieldType:
|
|
|
return m.AddedType()
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ return m.AddedOrganizationID()
|
|
|
}
|
|
|
return nil, false
|
|
|
}
|
|
@@ -2436,6 +2449,13 @@ func (m *BatchMsgMutation) AddField(name string, value ent.Value) error {
|
|
|
}
|
|
|
m.AddType(v)
|
|
|
return nil
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ v, ok := value.(int64)
|
|
|
+ if !ok {
|
|
|
+ return fmt.Errorf("unexpected type %T for field %s", value, name)
|
|
|
+ }
|
|
|
+ m.AddOrganizationID(v)
|
|
|
+ return nil
|
|
|
}
|
|
|
return fmt.Errorf("unknown BatchMsg numeric field %s", name)
|
|
|
}
|
|
@@ -2480,9 +2500,6 @@ func (m *BatchMsgMutation) ClearedFields() []string {
|
|
|
if m.FieldCleared(batchmsg.FieldStopTime) {
|
|
|
fields = append(fields, batchmsg.FieldStopTime)
|
|
|
}
|
|
|
- if m.FieldCleared(batchmsg.FieldSendTime) {
|
|
|
- fields = append(fields, batchmsg.FieldSendTime)
|
|
|
- }
|
|
|
if m.FieldCleared(batchmsg.FieldType) {
|
|
|
fields = append(fields, batchmsg.FieldType)
|
|
|
}
|
|
@@ -2536,9 +2553,6 @@ func (m *BatchMsgMutation) ClearField(name string) error {
|
|
|
case batchmsg.FieldStopTime:
|
|
|
m.ClearStopTime()
|
|
|
return nil
|
|
|
- case batchmsg.FieldSendTime:
|
|
|
- m.ClearSendTime()
|
|
|
- return nil
|
|
|
case batchmsg.FieldType:
|
|
|
m.ClearType()
|
|
|
return nil
|
|
@@ -2592,12 +2606,12 @@ func (m *BatchMsgMutation) ResetField(name string) error {
|
|
|
case batchmsg.FieldStopTime:
|
|
|
m.ResetStopTime()
|
|
|
return nil
|
|
|
- case batchmsg.FieldSendTime:
|
|
|
- m.ResetSendTime()
|
|
|
- return nil
|
|
|
case batchmsg.FieldType:
|
|
|
m.ResetType()
|
|
|
return nil
|
|
|
+ case batchmsg.FieldOrganizationID:
|
|
|
+ m.ResetOrganizationID()
|
|
|
+ return nil
|
|
|
}
|
|
|
return fmt.Errorf("unknown BatchMsg field %s", name)
|
|
|
}
|