customer_comment.go 268 B

12345678910111213
  1. package customer_comment
  2. type CustomerComment struct {
  3. Id int `gorm:"primaryKey;column: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. }