participant_evaluate_info.auto.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. // ParticipantEvaluateInfo defined
  8. type ParticipantEvaluateInfo struct {
  9. //
  10. PEIId null.Int `xorm:"int(11) pk notnull autoincr 'p_e_i_id'" json:"p_e_i_id" xml:"p_e_i_id"`
  11. //
  12. PtiId null.Int `xorm:"int(11) 'pti_id'" json:"pti_id" xml:"pti_id"`
  13. //
  14. Remark null.String `xorm:"varchar(2000) 'remark'" json:"remark" xml:"remark"`
  15. //
  16. TpeId null.Int `xorm:"int(11) 'tpe_id'" json:"tpe_id" xml:"tpe_id"`
  17. //
  18. Creater null.String `xorm:"varchar(36) 'creater'" json:"creater" xml:"creater"`
  19. //
  20. CreateDate null.Time `xorm:"datetime 'create_date'" json:"create_date" xml:"create_date"`
  21. //
  22. Updater null.String `xorm:"varchar(36) 'updater'" json:"updater" xml:"updater"`
  23. //
  24. UpdateDate null.Time `xorm:"datetime 'update_date'" json:"update_date" xml:"update_date"`
  25. //
  26. Isdelete null.Int `xorm:"notnull 'isdelete'" json:"isdelete" xml:"isdelete"`
  27. }
  28. // TableName table name of defined ParticipantEvaluateInfo
  29. func (m *ParticipantEvaluateInfo) TableName() string {
  30. return "participant_evaluate_info"
  31. }