segments.go 439 B

12345678910111213
  1. package entity
  2. type Segments struct {
  3. BizTag string `json:"biz_tag" xorm:"not null pk VARCHAR(128) 'biz_tag'"`
  4. MaxId int64 `json:"max_id" xorm:"BIGINT(20) 'max_id'"`
  5. Step int64 `json:"step" xorm:"INT(11) 'step'"`
  6. CreateTime int64 `json:"create_time" xorm:"BIGINT(20) 'create_time'"`
  7. UpdateTime int64 `json:"update_time" xorm:"BIGINT(20) 'update_time'"`
  8. }
  9. func GetSegmentsTableName() string {
  10. return "segments"
  11. }