demand.go 238 B

123456789
  1. package crm
  2. import "server/global"
  3. type Demand struct {
  4. global.GVA_MODEL
  5. Content string `json:"content" form:"content" gorm:"comment:内容"`
  6. CustomerId int `json:"customerId" form:"customerId" gorm:"comment:所属客户id"`
  7. }