customer_comment.go 269 B

1234567891011121314
  1. package customer_comment
  2. type CustomerComment struct {
  3. Id int `orm:"customer_comment(id)" `
  4. HeadImgUrl string
  5. CustomerName string
  6. CompanyName string
  7. Comment string
  8. }
  9. func (d *CustomerComment) TableName() string {
  10. return "customer_comment"
  11. }