面包店
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

11 rindas
658 B

  1. package model
  2. type SearchBase struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Pvd string `json:"pvd" xorm:"not null default '' VARCHAR(64)"`
  5. AppFilterId string `json:"app_filter_id" xorm:"not null comment('app过滤词模板search_filter id') TEXT"`
  6. AppletFilterId string `json:"applet_filter_id" xorm:"not null comment('小程序过滤词模板search_filter id') TEXT"`
  7. ConditionId int `json:"condition_id" xorm:"not null default 0 comment('搜索模板 search_condition id') INT(11)"`
  8. Type string `json:"type" xorm:"not null default '' comment('默认商品搜索类型') VARCHAR(64)"`
  9. }