123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package agentbase
- import (
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- )
- const (
-
- Label = "agent_base"
-
- FieldID = "id"
-
- FieldQ = "q"
-
- FieldA = "a"
-
- FieldChunkIndex = "chunk_index"
-
- FieldIndexes = "indexes"
-
- FieldDatasetID = "dataset_id"
-
- FieldCollectionID = "collection_id"
-
- FieldSourceName = "source_name"
-
- FieldCanWrite = "can_write"
-
- FieldIsOwner = "is_owner"
-
- EdgeWxAgent = "wx_agent"
-
- Table = "agent_base"
-
- WxAgentTable = "wx"
-
-
- WxAgentInverseTable = "wx"
-
- WxAgentColumn = "agent_base_wx_agent"
- )
- var Columns = []string{
- FieldID,
- FieldQ,
- FieldA,
- FieldChunkIndex,
- FieldIndexes,
- FieldDatasetID,
- FieldCollectionID,
- FieldSourceName,
- FieldCanWrite,
- FieldIsOwner,
- }
- func ValidColumn(column string) bool {
- for i := range Columns {
- if column == Columns[i] {
- return true
- }
- }
- return false
- }
- var (
-
- DefaultQ string
-
- DefaultA string
-
- ChunkIndexValidator func(uint64) error
-
- DefaultDatasetID string
-
- DefaultCollectionID string
-
- DefaultSourceName string
- )
- type OrderOption func(*sql.Selector)
- func ByID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldID, opts...).ToFunc()
- }
- func ByQ(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldQ, opts...).ToFunc()
- }
- func ByA(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldA, opts...).ToFunc()
- }
- func ByChunkIndex(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldChunkIndex, opts...).ToFunc()
- }
- func ByDatasetID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldDatasetID, opts...).ToFunc()
- }
- func ByCollectionID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldCollectionID, opts...).ToFunc()
- }
- func BySourceName(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldSourceName, opts...).ToFunc()
- }
- func ByWxAgentCount(opts ...sql.OrderTermOption) OrderOption {
- return func(s *sql.Selector) {
- sqlgraph.OrderByNeighborsCount(s, newWxAgentStep(), opts...)
- }
- }
- func ByWxAgent(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
- return func(s *sql.Selector) {
- sqlgraph.OrderByNeighborTerms(s, newWxAgentStep(), append([]sql.OrderTerm{term}, terms...)...)
- }
- }
- func newWxAgentStep() *sqlgraph.Step {
- return sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.To(WxAgentInverseTable, FieldID),
- sqlgraph.Edge(sqlgraph.O2M, false, WxAgentTable, WxAgentColumn),
- )
- }
|