206 lines
6.9 KiB
Go
206 lines
6.9 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|||
|
|
|
||
|
|
package userstation
|
||
|
|
|
||
|
|
import (
|
||
|
|
"bj_power_mes/ent/predicate"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"entgo.io/ent/dialect/sql"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ID filters vertices based on their ID field.
|
||
|
|
func ID(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDEQ applies the EQ predicate on the ID field.
|
||
|
|
func IDEQ(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
||
|
|
func IDNEQ(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNEQ(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDIn applies the In predicate on the ID field.
|
||
|
|
func IDIn(ids ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldIn(FieldID, ids...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
||
|
|
func IDNotIn(ids ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNotIn(FieldID, ids...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDGT applies the GT predicate on the ID field.
|
||
|
|
func IDGT(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGT(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDGTE applies the GTE predicate on the ID field.
|
||
|
|
func IDGTE(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGTE(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDLT applies the LT predicate on the ID field.
|
||
|
|
func IDLT(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLT(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// IDLTE applies the LTE predicate on the ID field.
|
||
|
|
func IDLTE(id int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLTE(FieldID, id))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserId applies equality check predicate on the "userId" field. It's identical to UserIdEQ.
|
||
|
|
func UserId(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNo applies equality check predicate on the "stationNo" field. It's identical to StationNoEQ.
|
||
|
|
func StationNo(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAt applies equality check predicate on the "createdAt" field. It's identical to CreatedAtEQ.
|
||
|
|
func CreatedAt(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdEQ applies the EQ predicate on the "userId" field.
|
||
|
|
func UserIdEQ(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdNEQ applies the NEQ predicate on the "userId" field.
|
||
|
|
func UserIdNEQ(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNEQ(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdIn applies the In predicate on the "userId" field.
|
||
|
|
func UserIdIn(vs ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldIn(FieldUserId, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdNotIn applies the NotIn predicate on the "userId" field.
|
||
|
|
func UserIdNotIn(vs ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNotIn(FieldUserId, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdGT applies the GT predicate on the "userId" field.
|
||
|
|
func UserIdGT(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGT(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdGTE applies the GTE predicate on the "userId" field.
|
||
|
|
func UserIdGTE(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGTE(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdLT applies the LT predicate on the "userId" field.
|
||
|
|
func UserIdLT(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLT(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// UserIdLTE applies the LTE predicate on the "userId" field.
|
||
|
|
func UserIdLTE(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLTE(FieldUserId, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoEQ applies the EQ predicate on the "stationNo" field.
|
||
|
|
func StationNoEQ(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoNEQ applies the NEQ predicate on the "stationNo" field.
|
||
|
|
func StationNoNEQ(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNEQ(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoIn applies the In predicate on the "stationNo" field.
|
||
|
|
func StationNoIn(vs ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldIn(FieldStationNo, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoNotIn applies the NotIn predicate on the "stationNo" field.
|
||
|
|
func StationNoNotIn(vs ...int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNotIn(FieldStationNo, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoGT applies the GT predicate on the "stationNo" field.
|
||
|
|
func StationNoGT(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGT(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoGTE applies the GTE predicate on the "stationNo" field.
|
||
|
|
func StationNoGTE(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGTE(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoLT applies the LT predicate on the "stationNo" field.
|
||
|
|
func StationNoLT(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLT(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// StationNoLTE applies the LTE predicate on the "stationNo" field.
|
||
|
|
func StationNoLTE(v int) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLTE(FieldStationNo, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtEQ applies the EQ predicate on the "createdAt" field.
|
||
|
|
func CreatedAtEQ(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldEQ(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtNEQ applies the NEQ predicate on the "createdAt" field.
|
||
|
|
func CreatedAtNEQ(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNEQ(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtIn applies the In predicate on the "createdAt" field.
|
||
|
|
func CreatedAtIn(vs ...time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldIn(FieldCreatedAt, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtNotIn applies the NotIn predicate on the "createdAt" field.
|
||
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldNotIn(FieldCreatedAt, vs...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtGT applies the GT predicate on the "createdAt" field.
|
||
|
|
func CreatedAtGT(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGT(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtGTE applies the GTE predicate on the "createdAt" field.
|
||
|
|
func CreatedAtGTE(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldGTE(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtLT applies the LT predicate on the "createdAt" field.
|
||
|
|
func CreatedAtLT(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLT(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// CreatedAtLTE applies the LTE predicate on the "createdAt" field.
|
||
|
|
func CreatedAtLTE(v time.Time) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.FieldLTE(FieldCreatedAt, v))
|
||
|
|
}
|
||
|
|
|
||
|
|
// And groups predicates with the AND operator between them.
|
||
|
|
func And(predicates ...predicate.UserStation) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.AndPredicates(predicates...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// Or groups predicates with the OR operator between them.
|
||
|
|
func Or(predicates ...predicate.UserStation) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.OrPredicates(predicates...))
|
||
|
|
}
|
||
|
|
|
||
|
|
// Not applies the not operator on the given predicate.
|
||
|
|
func Not(p predicate.UserStation) predicate.UserStation {
|
||
|
|
return predicate.UserStation(sql.NotPredicates(p))
|
||
|
|
}
|