business_conf.go 446 B

1234567891011121314
  1. package models
  2. import "time"
  3. // BusinessConf 商户配置表
  4. type BusinessConf struct {
  5. Id int `orm:"column(id);pk"`
  6. ConfKey string `description:"配置Key"`
  7. ConfVal string `description:"配置值"`
  8. ValType int `description:"1-字符串;2-数值;3-字符串数组;4-富文本;"`
  9. Necessary int `description:"是否必填:0-否;1-是"`
  10. Remark string `description:"备注"`
  11. CreateTime time.Time
  12. }