pool.go 903 B

123456789101112131415
  1. package model
  2. import "go-nc/hook"
  3. // 流量池
  4. type Sim_pool struct {
  5. ModelUUID
  6. Label string `gorm:"not null;type:varchar(255)" json:"label"` // 流量包名称
  7. TrafficPoolType string `gorm:"not null;type:varchar(255)" json:"trafficPoolType"` // 流量池类型:1: 前流量池 2: 后流量池
  8. Source string `gorm:"not null;type:varchar(255)" json:"source"` // 来源
  9. Size int `gorm:"type:varchar(255); default:0" json:"size"` // 后流量池的大小
  10. SizeType string `gorm:"type:varchar(255)" json:"sizeType"` // 后流量池的大小类型:G MB KB
  11. SimTariffId string `gorm:"type:varchar(255)" json:"simTariffId"` // 资费ID
  12. ExpireTime *hook.LocalTime `json:"expireTime"` // 过期时间
  13. }