Documentation ¶
Index ¶
- func EsInit()
- type BitField
- type EsModel
- type IchubLocalTime
- type LocalDate
- type LocalDateInt
- func (t *LocalDateInt) FormatDate() string
- func (t *LocalDateInt) FormatDatetime() string
- func (t LocalDateInt) MarshalJSON() ([]byte, error)
- func (t *LocalDateInt) Scan(v interface{}) error
- func (t *LocalDateInt) UnmarshalJSON(data []byte) error
- func (t LocalDateInt) Value() (driver.Value, error)
- func (t *LocalDateInt) Zero() LocalDateInt
- type LocalTime
- type LocalTimeInt
- func (t *LocalTimeInt) FormatDate() string
- func (t *LocalTimeInt) FormatDatetime() string
- func (t LocalTimeInt) MarshalJSON() ([]byte, error)
- func (t *LocalTimeInt) Scan(v interface{}) error
- func (t *LocalTimeInt) UnmarshalJSON(data []byte) error
- func (t LocalTimeInt) Value() (driver.Value, error)
- func (t *LocalTimeInt) Zero() LocalTimeInt
- type LocalTimeUTCInt
- func (t *LocalTimeUTCInt) FormatDate() string
- func (t *LocalTimeUTCInt) FormatDatetime() string
- func (t LocalTimeUTCInt) MarshalJSON() ([]byte, error)
- func (t *LocalTimeUTCInt) Scan(v interface{}) error
- func (t *LocalTimeUTCInt) UnmarshalJSON(data []byte) error
- func (t LocalTimeUTCInt) Value() (driver.Value, error)
- func (t *LocalTimeUTCInt) Zero() LocalTimeUTCInt
- type ModelBase
- type ParamBase
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type EsModel ¶
func (*EsModel) DeleteById ¶
type IchubLocalTime ¶
type LocalDate ¶
func (*LocalDate) FormatDate ¶
func (*LocalDate) MarshalJSON ¶
func (*LocalDate) UnmarshalJSON ¶
type LocalDateInt ¶
func (*LocalDateInt) FormatDate ¶
func (t *LocalDateInt) FormatDate() string
func (*LocalDateInt) FormatDatetime ¶
func (t *LocalDateInt) FormatDatetime() string
func (LocalDateInt) MarshalJSON ¶
func (t LocalDateInt) MarshalJSON() ([]byte, error)
func (*LocalDateInt) Scan ¶
func (t *LocalDateInt) Scan(v interface{}) error
func (*LocalDateInt) UnmarshalJSON ¶
func (t *LocalDateInt) UnmarshalJSON(data []byte) error
func (*LocalDateInt) Zero ¶
func (t *LocalDateInt) Zero() LocalDateInt
type LocalTime ¶
func NewLocalTime ¶
func (*LocalTime) FormatDatetime ¶
func (*LocalTime) MarshalJSON ¶
func (*LocalTime) UnmarshalJSON ¶
type LocalTimeInt ¶
func (*LocalTimeInt) FormatDate ¶
func (t *LocalTimeInt) FormatDate() string
func (*LocalTimeInt) FormatDatetime ¶
func (t *LocalTimeInt) FormatDatetime() string
func (LocalTimeInt) MarshalJSON ¶
func (t LocalTimeInt) MarshalJSON() ([]byte, error)
func (*LocalTimeInt) Scan ¶
func (t *LocalTimeInt) Scan(v interface{}) error
func (*LocalTimeInt) UnmarshalJSON ¶
func (t *LocalTimeInt) UnmarshalJSON(data []byte) error
func (*LocalTimeInt) Zero ¶
func (t *LocalTimeInt) Zero() LocalTimeInt
type LocalTimeUTCInt ¶
func (*LocalTimeUTCInt) FormatDate ¶
func (t *LocalTimeUTCInt) FormatDate() string
func (*LocalTimeUTCInt) FormatDatetime ¶
func (t *LocalTimeUTCInt) FormatDatetime() string
func (LocalTimeUTCInt) MarshalJSON ¶
func (t LocalTimeUTCInt) MarshalJSON() ([]byte, error)
func (*LocalTimeUTCInt) Scan ¶
func (t *LocalTimeUTCInt) Scan(v interface{}) error
func (*LocalTimeUTCInt) UnmarshalJSON ¶
func (t *LocalTimeUTCInt) UnmarshalJSON(data []byte) error
func (*LocalTimeUTCInt) Zero ¶
func (t *LocalTimeUTCInt) Zero() LocalTimeUTCInt
type ModelBase ¶
type ModelBase struct { // gorm.Model // Db *uint64 `gorm:"primary_key" json:"id"` CreatedAt *LocalDateInt `json:"created_at"` UpdatedAt *LocalDateInt `json:"updated_at"` DeletedAt *LocalDateInt `gorm:"column:deleted_at;type:timestamp" sql:"index" json:"-"` CreatedBy *uint64 `json:"create_by"` UpdatedBy *uint64 `json:"updated_by"` DeletedBy *uint64 `json:"deleted_by"` }
Click to show internal directories.
Click to hide internal directories.