customer_comment.go 237 B

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