region.go 1.1 KB

1234567891011121314151617181920212223
  1. package models
  2. // Region 省市区表
  3. type Region struct {
  4. Id int `gorm:"column:id" json:"id"` //主键id
  5. CreatedTime MyTime `gorm:"column:created_time" json:"createdTime"` //创建时间
  6. CreatedBy int `gorm:"column:created_by" json:"createdBy"` //创建人
  7. UpdatedTime MyTime `gorm:"column:updated_time" json:"updatedTime"` //修改时间
  8. UpdatedBy int `gorm:"column:updated_by" json:"updatedBy"` //修改人
  9. DeletedTime MyTime `gorm:"column:deleted_time" json:"deletedTime"` //删除时间
  10. DeletedBy int `gorm:"column:deleted_by" json:"deletedBy"` //删除人
  11. Deleted int `gorm:"column:deleted" json:"deleted"` //是否删除 1-是 2-否
  12. Name string `gorm:"column:name" json:"name"` //名称
  13. Level int `gorm:"column:level" json:"level"` //层级
  14. Sort int `gorm:"column:sort" json:"sort"` //排序
  15. ParentId int `gorm:"column:parent_id" json:"parentId"` //父id
  16. IsProtected int `gorm:"column:is_protected" json:"isProtected"` //是否受保护
  17. }
  18. func (*Region) TableName() string {
  19. return "region"
  20. }