123456789101112131415161718192021222324252627282930 |
- package model
- import (
- "time"
- "gorm.io/gorm"
- )
- const TableNameEmployeeConfig = "employee_config"
- type EmployeeConfig struct {
- ID int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
- CreatedAt time.Time `gorm:"column:created_at;not null;comment:Create Time | 创建日期" json:"created_at"`
- UpdatedAt time.Time `gorm:"column:updated_at;not null;comment:Update Time | 修改日期" json:"updated_at"`
- DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;comment:Delete Time | 删除日期" json:"deleted_at"`
- Stype string `gorm:"column:stype;not null;comment:配置类型" json:"stype"`
- Title string `gorm:"column:title;comment:标题" json:"title"`
- Photo string `gorm:"column:photo;comment:图片" json:"photo"`
- OrganizationID int64 `gorm:"column:organization_id;default:1;comment:机构 ID" json:"organization_id"`
- }
- func (*EmployeeConfig) TableName() string {
- return TableNameEmployeeConfig
- }
|