123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package chatrecords
- import (
- "time"
- "entgo.io/ent"
- "entgo.io/ent/dialect/sql"
- )
- const (
-
- Label = "chat_records"
-
- FieldID = "id"
-
- FieldCreatedAt = "created_at"
-
- FieldUpdatedAt = "updated_at"
-
- FieldDeletedAt = "deleted_at"
-
- FieldContent = "content"
-
- FieldContentType = "content_type"
-
- FieldSessionID = "session_id"
-
- FieldUserID = "user_id"
-
- FieldBotID = "bot_id"
-
- FieldBotType = "bot_type"
-
- Table = "chat_records"
- )
- var Columns = []string{
- FieldID,
- FieldCreatedAt,
- FieldUpdatedAt,
- FieldDeletedAt,
- FieldContent,
- FieldContentType,
- FieldSessionID,
- FieldUserID,
- FieldBotID,
- FieldBotType,
- }
- func ValidColumn(column string) bool {
- for i := range Columns {
- if column == Columns[i] {
- return true
- }
- }
- return false
- }
- var (
- Hooks [1]ent.Hook
- Interceptors [1]ent.Interceptor
-
- DefaultCreatedAt func() time.Time
-
- DefaultUpdatedAt func() time.Time
-
- UpdateDefaultUpdatedAt func() time.Time
-
- DefaultContent string
-
- DefaultContentType uint8
-
- DefaultSessionID uint64
-
- DefaultUserID uint64
-
- DefaultBotID uint64
-
- DefaultBotType uint8
- )
- type OrderOption func(*sql.Selector)
- func ByID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldID, opts...).ToFunc()
- }
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
- }
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
- }
- func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
- }
- func ByContent(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldContent, opts...).ToFunc()
- }
- func ByContentType(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldContentType, opts...).ToFunc()
- }
- func BySessionID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldSessionID, opts...).ToFunc()
- }
- func ByUserID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldUserID, opts...).ToFunc()
- }
- func ByBotID(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldBotID, opts...).ToFunc()
- }
- func ByBotType(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldBotType, opts...).ToFunc()
- }
|