button_picture.auto.go 896 B

1234567891011121314151617181920212223242526272829
  1. // Code generated by dol build. DO NOT EDIT.
  2. // source: auto.go
  3. package model
  4. import (
  5. "github.com/2637309949/dolphin/packages/null"
  6. )
  7. // ButtonPicture defined
  8. type ButtonPicture struct {
  9. //
  10. T2230 null.Int `xorm:"int(11) pk notnull autoincr 't_223_0'" json:"t_223_0" xml:"t_223_0"`
  11. //
  12. BtnpicName null.String `xorm:"varchar(500) notnull 'btnpic_name'" json:"btnpic_name" xml:"btnpic_name"`
  13. //
  14. BtnpicType null.Float `xorm:"float(11,2) notnull 'btnpic_type'" json:"btnpic_type" xml:"btnpic_type"`
  15. //
  16. BtnpicPicture null.Int `xorm:"int(11) notnull 'btnpic_picture'" json:"btnpic_picture" xml:"btnpic_picture"`
  17. //
  18. ProId null.Int `xorm:"int(11) 'pro_id'" json:"pro_id" xml:"pro_id"`
  19. //
  20. Isdelete null.Int `xorm:"int(11) 'isdelete'" json:"isdelete" xml:"isdelete"`
  21. }
  22. // TableName table name of defined ButtonPicture
  23. func (m *ButtonPicture) TableName() string {
  24. return "button_picture"
  25. }