123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package msg
- import (
- "entgo.io/ent/dialect/sql"
- )
- const (
-
- Label = "msg"
-
- FieldID = "id"
-
- FieldCreatedAt = "created_at"
-
- FieldUpdatedAt = "updated_at"
-
- FieldDeletedAt = "deleted_at"
-
- FieldStatus = "status"
-
- FieldFromwxid = "fromwxid"
-
- FieldToid = "toid"
-
- FieldMsgtype = "msgtype"
-
- FieldMsg = "msg"
-
- FieldBatchNo = "batch_no"
-
- Table = "msg"
- )
- var Columns = []string{
- FieldID,
- FieldCreatedAt,
- FieldUpdatedAt,
- FieldDeletedAt,
- FieldStatus,
- FieldFromwxid,
- FieldToid,
- FieldMsgtype,
- FieldMsg,
- FieldBatchNo,
- }
- func ValidColumn(column string) bool {
- for i := range Columns {
- if column == Columns[i] {
- return true
- }
- }
- return false
- }
- 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 ByStatus(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldStatus, opts...).ToFunc()
- }
- func ByFromwxid(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldFromwxid, opts...).ToFunc()
- }
- func ByToid(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldToid, opts...).ToFunc()
- }
- func ByMsgtype(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldMsgtype, opts...).ToFunc()
- }
- func ByMsg(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldMsg, opts...).ToFunc()
- }
- func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
- return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
- }
|