You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
780 B

3 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Support is the golang structure for table support.
  6. type Support struct {
  7. Id uint `json:"id" orm:"id" description:""` //
  8. Jwcode int `json:"jwcode" orm:"jwcode" description:"用户标识"` // 用户标识
  9. WishId int `json:"wishId" orm:"wish_id" description:"心愿ID"` // 心愿ID
  10. Type int `json:"type" orm:"type" description:"1支持2反对"` // 1支持2反对
  11. CreatedAt int `json:"createdAt" orm:"created_at" description:"时间"` // 时间
  12. }