互动
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.

12 lines
565 B

5 years ago
5 years ago
5 years ago
  1. package models
  2. //投票钱包历史
  3. //type VoteWalletHistory struct {
  4. // Id int `json:"id"`
  5. // CustomerId int `json:"customer_id" description:"客户id"`
  6. // Money float64 `json:"money" description:"金额[分正负]"`
  7. // Mark string `json:"mark" description:"备注"`
  8. // IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
  9. // CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"`
  10. // UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"`
  11. //}