byat.go 845 B

12345678910111213141516171819202122232425262728293031
  1. package model
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. type ControlBy struct {
  7. CreateBy int `json:"createBy" gorm:"index;comment:创建者"` // 创建者
  8. UpdateBy int `json:"updateBy" gorm:"index;comment:更新者"` // 更新者
  9. }
  10. // SetCreateBy 设置创建人id
  11. func (e *ControlBy) SetCreateBy(createBy int) {
  12. e.CreateBy = createBy
  13. }
  14. // SetUpdateBy 设置修改人id
  15. func (e *ControlBy) SetUpdateBy(updateBy int) {
  16. e.UpdateBy = updateBy
  17. }
  18. type Model struct {
  19. Id int `json:"id" gorm:"primaryKey;autoIncrement;comment:主键编码"` // 主键编码
  20. }
  21. type ModelTime struct {
  22. CreatedAt time.Time `json:"createdAt" gorm:"comment:创建时间"` // 创建时间
  23. UpdatedAt time.Time `json:"updatedAt" gorm:"comment:最后更新时间"` // 最后更新时间
  24. DeletedAt gorm.DeletedAt `json:"-" gorm:"index;comment:删除时间"`
  25. }