2022-08-30 18:04:50 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
package item
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"github.com/google/uuid"
|
2022-10-30 04:05:38 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/predicate"
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ID filters vertices based on their ID field.
|
|
|
|
func ID(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
|
|
func IDEQ(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
|
|
func IDNEQ(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
|
|
func IDIn(ids ...uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldID, ids...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
|
|
func IDNotIn(ids ...uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldID, ids...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
|
|
func IDGT(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
|
|
func IDGTE(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
|
|
func IDLT(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
|
|
func IDLTE(id uuid.UUID) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldID, id))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
|
|
func CreatedAt(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
|
|
func UpdatedAt(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
|
|
func Name(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
|
|
|
|
func Description(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-13 04:54:30 +00:00
|
|
|
// ImportRef applies equality check predicate on the "import_ref" field. It's identical to ImportRefEQ.
|
|
|
|
func ImportRef(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// Notes applies equality check predicate on the "notes" field. It's identical to NotesEQ.
|
|
|
|
func Notes(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
// Quantity applies equality check predicate on the "quantity" field. It's identical to QuantityEQ.
|
|
|
|
func Quantity(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Insured applies equality check predicate on the "insured" field. It's identical to InsuredEQ.
|
|
|
|
func Insured(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldInsured, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
2022-11-01 07:30:42 +00:00
|
|
|
// Archived applies equality check predicate on the "archived" field. It's identical to ArchivedEQ.
|
|
|
|
func Archived(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldArchived, v))
|
2022-11-01 07:30:42 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 23:17:55 +00:00
|
|
|
// AssetID applies equality check predicate on the "asset_id" field. It's identical to AssetIDEQ.
|
|
|
|
func AssetID(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// SerialNumber applies equality check predicate on the "serial_number" field. It's identical to SerialNumberEQ.
|
|
|
|
func SerialNumber(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumber applies equality check predicate on the "model_number" field. It's identical to ModelNumberEQ.
|
|
|
|
func ModelNumber(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Manufacturer applies equality check predicate on the "manufacturer" field. It's identical to ManufacturerEQ.
|
|
|
|
func Manufacturer(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 18:20:38 +00:00
|
|
|
// LifetimeWarranty applies equality check predicate on the "lifetime_warranty" field. It's identical to LifetimeWarrantyEQ.
|
|
|
|
func LifetimeWarranty(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldLifetimeWarranty, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpires applies equality check predicate on the "warranty_expires" field. It's identical to WarrantyExpiresEQ.
|
|
|
|
func WarrantyExpires(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetails applies equality check predicate on the "warranty_details" field. It's identical to WarrantyDetailsEQ.
|
|
|
|
func WarrantyDetails(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// PurchaseTime applies equality check predicate on the "purchase_time" field. It's identical to PurchaseTimeEQ.
|
|
|
|
func PurchaseTime(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFrom applies equality check predicate on the "purchase_from" field. It's identical to PurchaseFromEQ.
|
|
|
|
func PurchaseFrom(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePrice applies equality check predicate on the "purchase_price" field. It's identical to PurchasePriceEQ.
|
|
|
|
func PurchasePrice(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTime applies equality check predicate on the "sold_time" field. It's identical to SoldTimeEQ.
|
|
|
|
func SoldTime(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTo applies equality check predicate on the "sold_to" field. It's identical to SoldToEQ.
|
|
|
|
func SoldTo(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPrice applies equality check predicate on the "sold_price" field. It's identical to SoldPriceEQ.
|
|
|
|
func SoldPrice(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotes applies equality check predicate on the "sold_notes" field. It's identical to SoldNotesEQ.
|
|
|
|
func SoldNotes(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
|
|
func CreatedAtEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
|
|
func CreatedAtNEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
|
|
func CreatedAtIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldCreatedAt, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldCreatedAt, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
|
|
func CreatedAtGT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
|
|
func CreatedAtGTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
|
|
func CreatedAtLT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
|
|
func CreatedAtLTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldCreatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtNEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldUpdatedAt, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtGT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtGTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtLT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
|
|
func UpdatedAtLTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldUpdatedAt, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
|
|
func NameEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
|
|
func NameNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
|
|
func NameIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldName, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
|
|
func NameNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldName, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
|
|
func NameGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
|
|
func NameGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
|
|
func NameLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
|
|
func NameLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
|
|
func NameContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
|
|
func NameHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
|
|
func NameHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
|
|
func NameEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
|
|
func NameContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldName, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionEQ applies the EQ predicate on the "description" field.
|
|
|
|
func DescriptionEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionNEQ applies the NEQ predicate on the "description" field.
|
|
|
|
func DescriptionNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionIn applies the In predicate on the "description" field.
|
|
|
|
func DescriptionIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldDescription, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionNotIn applies the NotIn predicate on the "description" field.
|
|
|
|
func DescriptionNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldDescription, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionGT applies the GT predicate on the "description" field.
|
|
|
|
func DescriptionGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionGTE applies the GTE predicate on the "description" field.
|
|
|
|
func DescriptionGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionLT applies the LT predicate on the "description" field.
|
|
|
|
func DescriptionLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionLTE applies the LTE predicate on the "description" field.
|
|
|
|
func DescriptionLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionContains applies the Contains predicate on the "description" field.
|
|
|
|
func DescriptionContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
|
|
|
|
func DescriptionHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
|
|
|
|
func DescriptionHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionIsNil applies the IsNil predicate on the "description" field.
|
|
|
|
func DescriptionIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldDescription))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionNotNil applies the NotNil predicate on the "description" field.
|
|
|
|
func DescriptionNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldDescription))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionEqualFold applies the EqualFold predicate on the "description" field.
|
|
|
|
func DescriptionEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
|
|
|
|
func DescriptionContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldDescription, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-13 04:54:30 +00:00
|
|
|
// ImportRefEQ applies the EQ predicate on the "import_ref" field.
|
|
|
|
func ImportRefEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefNEQ applies the NEQ predicate on the "import_ref" field.
|
|
|
|
func ImportRefNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefIn applies the In predicate on the "import_ref" field.
|
|
|
|
func ImportRefIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldImportRef, vs...))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefNotIn applies the NotIn predicate on the "import_ref" field.
|
|
|
|
func ImportRefNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldImportRef, vs...))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefGT applies the GT predicate on the "import_ref" field.
|
|
|
|
func ImportRefGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefGTE applies the GTE predicate on the "import_ref" field.
|
|
|
|
func ImportRefGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefLT applies the LT predicate on the "import_ref" field.
|
|
|
|
func ImportRefLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefLTE applies the LTE predicate on the "import_ref" field.
|
|
|
|
func ImportRefLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefContains applies the Contains predicate on the "import_ref" field.
|
|
|
|
func ImportRefContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefHasPrefix applies the HasPrefix predicate on the "import_ref" field.
|
|
|
|
func ImportRefHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefHasSuffix applies the HasSuffix predicate on the "import_ref" field.
|
|
|
|
func ImportRefHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefIsNil applies the IsNil predicate on the "import_ref" field.
|
|
|
|
func ImportRefIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldImportRef))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefNotNil applies the NotNil predicate on the "import_ref" field.
|
|
|
|
func ImportRefNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldImportRef))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefEqualFold applies the EqualFold predicate on the "import_ref" field.
|
|
|
|
func ImportRefEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ImportRefContainsFold applies the ContainsFold predicate on the "import_ref" field.
|
|
|
|
func ImportRefContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldImportRef, v))
|
2022-09-13 04:54:30 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// NotesEQ applies the EQ predicate on the "notes" field.
|
|
|
|
func NotesEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesNEQ applies the NEQ predicate on the "notes" field.
|
|
|
|
func NotesNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesIn applies the In predicate on the "notes" field.
|
|
|
|
func NotesIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldNotes, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesNotIn applies the NotIn predicate on the "notes" field.
|
|
|
|
func NotesNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldNotes, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesGT applies the GT predicate on the "notes" field.
|
|
|
|
func NotesGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesGTE applies the GTE predicate on the "notes" field.
|
|
|
|
func NotesGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesLT applies the LT predicate on the "notes" field.
|
|
|
|
func NotesLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesLTE applies the LTE predicate on the "notes" field.
|
|
|
|
func NotesLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesContains applies the Contains predicate on the "notes" field.
|
|
|
|
func NotesContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesHasPrefix applies the HasPrefix predicate on the "notes" field.
|
|
|
|
func NotesHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesHasSuffix applies the HasSuffix predicate on the "notes" field.
|
|
|
|
func NotesHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesIsNil applies the IsNil predicate on the "notes" field.
|
|
|
|
func NotesIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldNotes))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesNotNil applies the NotNil predicate on the "notes" field.
|
|
|
|
func NotesNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldNotes))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesEqualFold applies the EqualFold predicate on the "notes" field.
|
|
|
|
func NotesEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotesContainsFold applies the ContainsFold predicate on the "notes" field.
|
|
|
|
func NotesContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
// QuantityEQ applies the EQ predicate on the "quantity" field.
|
|
|
|
func QuantityEQ(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityNEQ applies the NEQ predicate on the "quantity" field.
|
|
|
|
func QuantityNEQ(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityIn applies the In predicate on the "quantity" field.
|
|
|
|
func QuantityIn(vs ...int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldQuantity, vs...))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityNotIn applies the NotIn predicate on the "quantity" field.
|
|
|
|
func QuantityNotIn(vs ...int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldQuantity, vs...))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityGT applies the GT predicate on the "quantity" field.
|
|
|
|
func QuantityGT(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityGTE applies the GTE predicate on the "quantity" field.
|
|
|
|
func QuantityGTE(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityLT applies the LT predicate on the "quantity" field.
|
|
|
|
func QuantityLT(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QuantityLTE applies the LTE predicate on the "quantity" field.
|
|
|
|
func QuantityLTE(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldQuantity, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InsuredEQ applies the EQ predicate on the "insured" field.
|
|
|
|
func InsuredEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldInsured, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InsuredNEQ applies the NEQ predicate on the "insured" field.
|
|
|
|
func InsuredNEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldInsured, v))
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
2022-11-01 07:30:42 +00:00
|
|
|
// ArchivedEQ applies the EQ predicate on the "archived" field.
|
|
|
|
func ArchivedEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldArchived, v))
|
2022-11-01 07:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ArchivedNEQ applies the NEQ predicate on the "archived" field.
|
|
|
|
func ArchivedNEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldArchived, v))
|
2022-11-01 07:30:42 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 23:17:55 +00:00
|
|
|
// AssetIDEQ applies the EQ predicate on the "asset_id" field.
|
|
|
|
func AssetIDEQ(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDNEQ applies the NEQ predicate on the "asset_id" field.
|
|
|
|
func AssetIDNEQ(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDIn applies the In predicate on the "asset_id" field.
|
|
|
|
func AssetIDIn(vs ...int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldAssetID, vs...))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDNotIn applies the NotIn predicate on the "asset_id" field.
|
|
|
|
func AssetIDNotIn(vs ...int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldAssetID, vs...))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDGT applies the GT predicate on the "asset_id" field.
|
|
|
|
func AssetIDGT(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDGTE applies the GTE predicate on the "asset_id" field.
|
|
|
|
func AssetIDGTE(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDLT applies the LT predicate on the "asset_id" field.
|
|
|
|
func AssetIDLT(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetIDLTE applies the LTE predicate on the "asset_id" field.
|
|
|
|
func AssetIDLTE(v int) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldAssetID, v))
|
2022-11-13 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// SerialNumberEQ applies the EQ predicate on the "serial_number" field.
|
|
|
|
func SerialNumberEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberNEQ applies the NEQ predicate on the "serial_number" field.
|
|
|
|
func SerialNumberNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberIn applies the In predicate on the "serial_number" field.
|
|
|
|
func SerialNumberIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldSerialNumber, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberNotIn applies the NotIn predicate on the "serial_number" field.
|
|
|
|
func SerialNumberNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldSerialNumber, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberGT applies the GT predicate on the "serial_number" field.
|
|
|
|
func SerialNumberGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberGTE applies the GTE predicate on the "serial_number" field.
|
|
|
|
func SerialNumberGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberLT applies the LT predicate on the "serial_number" field.
|
|
|
|
func SerialNumberLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberLTE applies the LTE predicate on the "serial_number" field.
|
|
|
|
func SerialNumberLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberContains applies the Contains predicate on the "serial_number" field.
|
|
|
|
func SerialNumberContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberHasPrefix applies the HasPrefix predicate on the "serial_number" field.
|
|
|
|
func SerialNumberHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberHasSuffix applies the HasSuffix predicate on the "serial_number" field.
|
|
|
|
func SerialNumberHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberIsNil applies the IsNil predicate on the "serial_number" field.
|
|
|
|
func SerialNumberIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldSerialNumber))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberNotNil applies the NotNil predicate on the "serial_number" field.
|
|
|
|
func SerialNumberNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldSerialNumber))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberEqualFold applies the EqualFold predicate on the "serial_number" field.
|
|
|
|
func SerialNumberEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SerialNumberContainsFold applies the ContainsFold predicate on the "serial_number" field.
|
|
|
|
func SerialNumberContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldSerialNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberEQ applies the EQ predicate on the "model_number" field.
|
|
|
|
func ModelNumberEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberNEQ applies the NEQ predicate on the "model_number" field.
|
|
|
|
func ModelNumberNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberIn applies the In predicate on the "model_number" field.
|
|
|
|
func ModelNumberIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldModelNumber, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberNotIn applies the NotIn predicate on the "model_number" field.
|
|
|
|
func ModelNumberNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldModelNumber, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberGT applies the GT predicate on the "model_number" field.
|
|
|
|
func ModelNumberGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberGTE applies the GTE predicate on the "model_number" field.
|
|
|
|
func ModelNumberGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberLT applies the LT predicate on the "model_number" field.
|
|
|
|
func ModelNumberLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberLTE applies the LTE predicate on the "model_number" field.
|
|
|
|
func ModelNumberLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberContains applies the Contains predicate on the "model_number" field.
|
|
|
|
func ModelNumberContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberHasPrefix applies the HasPrefix predicate on the "model_number" field.
|
|
|
|
func ModelNumberHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberHasSuffix applies the HasSuffix predicate on the "model_number" field.
|
|
|
|
func ModelNumberHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberIsNil applies the IsNil predicate on the "model_number" field.
|
|
|
|
func ModelNumberIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldModelNumber))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberNotNil applies the NotNil predicate on the "model_number" field.
|
|
|
|
func ModelNumberNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldModelNumber))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberEqualFold applies the EqualFold predicate on the "model_number" field.
|
|
|
|
func ModelNumberEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ModelNumberContainsFold applies the ContainsFold predicate on the "model_number" field.
|
|
|
|
func ModelNumberContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldModelNumber, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerEQ applies the EQ predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerNEQ applies the NEQ predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerIn applies the In predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldManufacturer, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerNotIn applies the NotIn predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldManufacturer, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerGT applies the GT predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerGTE applies the GTE predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerLT applies the LT predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerLTE applies the LTE predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerContains applies the Contains predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerHasPrefix applies the HasPrefix predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerHasSuffix applies the HasSuffix predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerIsNil applies the IsNil predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldManufacturer))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerNotNil applies the NotNil predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldManufacturer))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerEqualFold applies the EqualFold predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ManufacturerContainsFold applies the ContainsFold predicate on the "manufacturer" field.
|
|
|
|
func ManufacturerContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldManufacturer, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 18:20:38 +00:00
|
|
|
// LifetimeWarrantyEQ applies the EQ predicate on the "lifetime_warranty" field.
|
|
|
|
func LifetimeWarrantyEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldLifetimeWarranty, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LifetimeWarrantyNEQ applies the NEQ predicate on the "lifetime_warranty" field.
|
|
|
|
func LifetimeWarrantyNEQ(v bool) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldLifetimeWarranty, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresEQ applies the EQ predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresNEQ applies the NEQ predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresNEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresIn applies the In predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldWarrantyExpires, vs...))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresNotIn applies the NotIn predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresNotIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldWarrantyExpires, vs...))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresGT applies the GT predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresGT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresGTE applies the GTE predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresGTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresLT applies the LT predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresLT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresLTE applies the LTE predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresLTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldWarrantyExpires, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresIsNil applies the IsNil predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldWarrantyExpires))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyExpiresNotNil applies the NotNil predicate on the "warranty_expires" field.
|
|
|
|
func WarrantyExpiresNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldWarrantyExpires))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsEQ applies the EQ predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsNEQ applies the NEQ predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsIn applies the In predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldWarrantyDetails, vs...))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsNotIn applies the NotIn predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldWarrantyDetails, vs...))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsGT applies the GT predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsGTE applies the GTE predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsLT applies the LT predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsLTE applies the LTE predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsContains applies the Contains predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsHasPrefix applies the HasPrefix predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsHasSuffix applies the HasSuffix predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsIsNil applies the IsNil predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldWarrantyDetails))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsNotNil applies the NotNil predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldWarrantyDetails))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsEqualFold applies the EqualFold predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WarrantyDetailsContainsFold applies the ContainsFold predicate on the "warranty_details" field.
|
|
|
|
func WarrantyDetailsContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldWarrantyDetails, v))
|
2022-09-09 18:20:38 +00:00
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// PurchaseTimeEQ applies the EQ predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeNEQ applies the NEQ predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeNEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeIn applies the In predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldPurchaseTime, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeNotIn applies the NotIn predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeNotIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldPurchaseTime, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeGT applies the GT predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeGT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeGTE applies the GTE predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeGTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeLT applies the LT predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeLT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeLTE applies the LTE predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeLTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldPurchaseTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeIsNil applies the IsNil predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldPurchaseTime))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseTimeNotNil applies the NotNil predicate on the "purchase_time" field.
|
|
|
|
func PurchaseTimeNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldPurchaseTime))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromEQ applies the EQ predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromNEQ applies the NEQ predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromIn applies the In predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldPurchaseFrom, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromNotIn applies the NotIn predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldPurchaseFrom, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromGT applies the GT predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromGTE applies the GTE predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromLT applies the LT predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromLTE applies the LTE predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromContains applies the Contains predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromHasPrefix applies the HasPrefix predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromHasSuffix applies the HasSuffix predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromIsNil applies the IsNil predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldPurchaseFrom))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromNotNil applies the NotNil predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldPurchaseFrom))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromEqualFold applies the EqualFold predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchaseFromContainsFold applies the ContainsFold predicate on the "purchase_from" field.
|
|
|
|
func PurchaseFromContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldPurchaseFrom, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceEQ applies the EQ predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceEQ(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceNEQ applies the NEQ predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceNEQ(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceIn applies the In predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceIn(vs ...float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldPurchasePrice, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceNotIn applies the NotIn predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceNotIn(vs ...float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldPurchasePrice, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceGT applies the GT predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceGT(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceGTE applies the GTE predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceGTE(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceLT applies the LT predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceLT(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PurchasePriceLTE applies the LTE predicate on the "purchase_price" field.
|
|
|
|
func PurchasePriceLTE(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldPurchasePrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeEQ applies the EQ predicate on the "sold_time" field.
|
|
|
|
func SoldTimeEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeNEQ applies the NEQ predicate on the "sold_time" field.
|
|
|
|
func SoldTimeNEQ(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeIn applies the In predicate on the "sold_time" field.
|
|
|
|
func SoldTimeIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldSoldTime, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeNotIn applies the NotIn predicate on the "sold_time" field.
|
|
|
|
func SoldTimeNotIn(vs ...time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldSoldTime, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeGT applies the GT predicate on the "sold_time" field.
|
|
|
|
func SoldTimeGT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeGTE applies the GTE predicate on the "sold_time" field.
|
|
|
|
func SoldTimeGTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeLT applies the LT predicate on the "sold_time" field.
|
|
|
|
func SoldTimeLT(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeLTE applies the LTE predicate on the "sold_time" field.
|
|
|
|
func SoldTimeLTE(v time.Time) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldSoldTime, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeIsNil applies the IsNil predicate on the "sold_time" field.
|
|
|
|
func SoldTimeIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldSoldTime))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldTimeNotNil applies the NotNil predicate on the "sold_time" field.
|
|
|
|
func SoldTimeNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldSoldTime))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToEQ applies the EQ predicate on the "sold_to" field.
|
|
|
|
func SoldToEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToNEQ applies the NEQ predicate on the "sold_to" field.
|
|
|
|
func SoldToNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToIn applies the In predicate on the "sold_to" field.
|
|
|
|
func SoldToIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldSoldTo, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToNotIn applies the NotIn predicate on the "sold_to" field.
|
|
|
|
func SoldToNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldSoldTo, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToGT applies the GT predicate on the "sold_to" field.
|
|
|
|
func SoldToGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToGTE applies the GTE predicate on the "sold_to" field.
|
|
|
|
func SoldToGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToLT applies the LT predicate on the "sold_to" field.
|
|
|
|
func SoldToLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToLTE applies the LTE predicate on the "sold_to" field.
|
|
|
|
func SoldToLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToContains applies the Contains predicate on the "sold_to" field.
|
|
|
|
func SoldToContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToHasPrefix applies the HasPrefix predicate on the "sold_to" field.
|
|
|
|
func SoldToHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToHasSuffix applies the HasSuffix predicate on the "sold_to" field.
|
|
|
|
func SoldToHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToIsNil applies the IsNil predicate on the "sold_to" field.
|
|
|
|
func SoldToIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldSoldTo))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToNotNil applies the NotNil predicate on the "sold_to" field.
|
|
|
|
func SoldToNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldSoldTo))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToEqualFold applies the EqualFold predicate on the "sold_to" field.
|
|
|
|
func SoldToEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldToContainsFold applies the ContainsFold predicate on the "sold_to" field.
|
|
|
|
func SoldToContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldSoldTo, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceEQ applies the EQ predicate on the "sold_price" field.
|
|
|
|
func SoldPriceEQ(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceNEQ applies the NEQ predicate on the "sold_price" field.
|
|
|
|
func SoldPriceNEQ(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceIn applies the In predicate on the "sold_price" field.
|
|
|
|
func SoldPriceIn(vs ...float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldSoldPrice, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceNotIn applies the NotIn predicate on the "sold_price" field.
|
|
|
|
func SoldPriceNotIn(vs ...float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldSoldPrice, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceGT applies the GT predicate on the "sold_price" field.
|
|
|
|
func SoldPriceGT(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceGTE applies the GTE predicate on the "sold_price" field.
|
|
|
|
func SoldPriceGTE(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceLT applies the LT predicate on the "sold_price" field.
|
|
|
|
func SoldPriceLT(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldPriceLTE applies the LTE predicate on the "sold_price" field.
|
|
|
|
func SoldPriceLTE(v float64) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldSoldPrice, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesEQ applies the EQ predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEQ(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesNEQ applies the NEQ predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesNEQ(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNEQ(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesIn applies the In predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIn(FieldSoldNotes, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesNotIn applies the NotIn predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesNotIn(vs ...string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotIn(FieldSoldNotes, vs...))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesGT applies the GT predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesGT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGT(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesGTE applies the GTE predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesGTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldGTE(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesLT applies the LT predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesLT(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLT(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesLTE applies the LTE predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesLTE(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldLTE(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesContains applies the Contains predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesContains(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContains(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesHasPrefix applies the HasPrefix predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesHasPrefix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasPrefix(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesHasSuffix applies the HasSuffix predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesHasSuffix(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldHasSuffix(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesIsNil applies the IsNil predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesIsNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldIsNull(FieldSoldNotes))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesNotNil applies the NotNil predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesNotNil() predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldNotNull(FieldSoldNotes))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesEqualFold applies the EqualFold predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesEqualFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldEqualFold(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SoldNotesContainsFold applies the ContainsFold predicate on the "sold_notes" field.
|
|
|
|
func SoldNotesContainsFold(v string) predicate.Item {
|
2023-01-19 05:44:06 +00:00
|
|
|
return predicate.Item(sql.FieldContainsFold(FieldSoldNotes, v))
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 04:54:39 +00:00
|
|
|
// HasParent applies the HasEdge predicate on the "parent" edge.
|
|
|
|
func HasParent() predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, ParentTable, ParentColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasParentWith applies the HasEdge predicate on the "parent" edge with a given conditions (other predicates).
|
|
|
|
func HasParentWith(preds ...predicate.Item) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, ParentTable, ParentColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasChildren applies the HasEdge predicate on the "children" edge.
|
|
|
|
func HasChildren() predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, ChildrenTable, ChildrenColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasChildrenWith applies the HasEdge predicate on the "children" edge with a given conditions (other predicates).
|
|
|
|
func HasChildrenWith(preds ...predicate.Item) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, ChildrenTable, ChildrenColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// HasGroup applies the HasEdge predicate on the "group" edge.
|
|
|
|
func HasGroup() predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, GroupTable, GroupColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasGroupWith applies the HasEdge predicate on the "group" edge with a given conditions (other predicates).
|
|
|
|
func HasGroupWith(preds ...predicate.Group) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(GroupInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, GroupTable, GroupColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasLabel applies the HasEdge predicate on the "label" edge.
|
|
|
|
func HasLabel() predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.Edge(sqlgraph.M2M, true, LabelTable, LabelPrimaryKey...),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasLabelWith applies the HasEdge predicate on the "label" edge with a given conditions (other predicates).
|
|
|
|
func HasLabelWith(preds ...predicate.Label) predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.To(LabelInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2M, true, LabelTable, LabelPrimaryKey...),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasLocation applies the HasEdge predicate on the "location" edge.
|
|
|
|
func HasLocation() predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, LocationTable, LocationColumn),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasLocationWith applies the HasEdge predicate on the "location" edge with a given conditions (other predicates).
|
|
|
|
func HasLocationWith(preds ...predicate.Location) predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.To(LocationInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, LocationTable, LocationColumn),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasFields applies the HasEdge predicate on the "fields" edge.
|
|
|
|
func HasFields() predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, FieldsTable, FieldsColumn),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-29 05:42:33 +00:00
|
|
|
// HasFieldsWith applies the HasEdge predicate on the "fields" edge with a given conditions (other predicates).
|
|
|
|
func HasFieldsWith(preds ...predicate.ItemField) predicate.Item {
|
2022-08-30 18:04:50 +00:00
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
2022-09-29 05:42:33 +00:00
|
|
|
sqlgraph.To(FieldsInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, FieldsTable, FieldsColumn),
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-12-10 05:57:57 +00:00
|
|
|
// HasMaintenanceEntries applies the HasEdge predicate on the "maintenance_entries" edge.
|
|
|
|
func HasMaintenanceEntries() predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, MaintenanceEntriesTable, MaintenanceEntriesColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasMaintenanceEntriesWith applies the HasEdge predicate on the "maintenance_entries" edge with a given conditions (other predicates).
|
|
|
|
func HasMaintenanceEntriesWith(preds ...predicate.MaintenanceEntry) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(MaintenanceEntriesInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, MaintenanceEntriesTable, MaintenanceEntriesColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
// HasAttachments applies the HasEdge predicate on the "attachments" edge.
|
|
|
|
func HasAttachments() predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, AttachmentsTable, AttachmentsColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighbors(s, step)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasAttachmentsWith applies the HasEdge predicate on the "attachments" edge with a given conditions (other predicates).
|
|
|
|
func HasAttachmentsWith(preds ...predicate.Attachment) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
step := sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(AttachmentsInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, AttachmentsTable, AttachmentsColumn),
|
|
|
|
)
|
|
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
|
|
for _, p := range preds {
|
|
|
|
p(s)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// And groups predicates with the AND operator between them.
|
|
|
|
func And(predicates ...predicate.Item) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
s1 := s.Clone().SetP(nil)
|
|
|
|
for _, p := range predicates {
|
|
|
|
p(s1)
|
|
|
|
}
|
|
|
|
s.Where(s1.P())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
|
|
func Or(predicates ...predicate.Item) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
s1 := s.Clone().SetP(nil)
|
|
|
|
for i, p := range predicates {
|
|
|
|
if i > 0 {
|
|
|
|
s1.Or()
|
|
|
|
}
|
|
|
|
p(s1)
|
|
|
|
}
|
|
|
|
s.Where(s1.P())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
|
|
func Not(p predicate.Item) predicate.Item {
|
|
|
|
return predicate.Item(func(s *sql.Selector) {
|
|
|
|
p(s.Not())
|
|
|
|
})
|
|
|
|
}
|