warehouse.go 1.5 KB

1234567891011121314151617181920212223242526272829
  1. package models
  2. import (
  3. "gorm.io/datatypes"
  4. )
  5. // Warehouse 仓库表
  6. type Warehouse struct {
  7. Id int `gorm:"column:id" json:"id"` //
  8. CreatedTime MyTime `gorm:"column:created_time" json:"createdTime"` //创建时间
  9. CreatedBy int `gorm:"column:created_by" json:"createdBy"` //创建人
  10. UpdatedTime MyTime `gorm:"column:updated_time" json:"updatedTime"` //修改时间
  11. UpdatedBy int `gorm:"column:updated_by" json:"updatedBy"` //修改人
  12. DeletedTime MyTime `gorm:"column:deleted_time" json:"deletedTime"` //删除时间
  13. DeletedBy int `gorm:"column:deleted_by" json:"deletedBy"` //删除人
  14. Deleted int `gorm:"column:deleted" json:"deleted"` //是否删除 1-是 2-否
  15. Pid int `gorm:"column:pid" json:"pid"` //公司Id
  16. Name string `gorm:"column:name" json:"name"` //仓库名称
  17. SnCode string `gorm:"column:sn_code" json:"snCode"` //sn编码
  18. Capacity int `gorm:"column:capacity" json:"capacity"` //容量
  19. ManagerUuid datatypes.JSON `gorm:"column:manager_uuid" json:"managerUuid"` //管理员uuid
  20. Address string `gorm:"column:address" json:"address"` //详细地址
  21. Enable int `gorm:"column:enable" json:"enable"` //是否启用:1-是 2-否
  22. }
  23. func (*Warehouse) TableName() string {
  24. return "warehouse"
  25. }