blob: d86ace830ccc3d410aeb3364f69231ae5373100c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// Code generated by ent, DO NOT EDIT.
package chatmessage
import (
"entgo.io/ent/dialect/sql"
)
const (
// Label holds the string label denoting the chatmessage type in the database.
Label = "chat_message"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldConversationID holds the string denoting the conversation_id field in the database.
FieldConversationID = "conversation_id"
// FieldRole holds the string denoting the role field in the database.
FieldRole = "role"
// FieldContent holds the string denoting the content field in the database.
FieldContent = "content"
// Table holds the table name of the chatmessage in the database.
Table = "chat_messages"
)
// Columns holds all SQL columns for chatmessage fields.
var Columns = []string{
FieldID,
FieldConversationID,
FieldRole,
FieldContent,
}
// ValidColumn reports if the column name is valid (part of the table columns).
func ValidColumn(column string) bool {
for i := range Columns {
if column == Columns[i] {
return true
}
}
return false
}
var (
// ConversationIDValidator is a validator for the "conversation_id" field. It is called by the builders before save.
ConversationIDValidator func(string) error
// RoleValidator is a validator for the "role" field. It is called by the builders before save.
RoleValidator func(string) error
// ContentValidator is a validator for the "content" field. It is called by the builders before save.
ContentValidator func(string) error
// IDValidator is a validator for the "id" field. It is called by the builders before save.
IDValidator func(string) error
)
// OrderOption defines the ordering options for the ChatMessage queries.
type OrderOption func(*sql.Selector)
// ByID orders the results by the id field.
func ByID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldID, opts...).ToFunc()
}
// ByConversationID orders the results by the conversation_id field.
func ByConversationID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldConversationID, opts...).ToFunc()
}
// ByRole orders the results by the role field.
func ByRole(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldRole, opts...).ToFunc()
}
// ByContent orders the results by the content field.
func ByContent(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldContent, opts...).ToFunc()
}
|