From 6dbfebe73fdc62bdb9d01b195b06aae5ba266750 Mon Sep 17 00:00:00 2001 From: dengbiao Date: Thu, 23 May 2024 17:03:04 +0800 Subject: [PATCH] update --- src/models/happy_orchard_reward_exchange_records.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/models/happy_orchard_reward_exchange_records.go b/src/models/happy_orchard_reward_exchange_records.go index b87ed22..f2beaed 100644 --- a/src/models/happy_orchard_reward_exchange_records.go +++ b/src/models/happy_orchard_reward_exchange_records.go @@ -11,6 +11,9 @@ type HappyOrchardRewardExchangeRecords struct { WaterNums int `json:"water_nums" xorm:"not null default 0 comment('所需水滴数') INT(11)"` State int `json:"state" xorm:"not null default 0 comment('兑换状态(1:未发放 2:已发放)') TINYINT(1)"` RecordId int `json:"record_id" xorm:"default 0 INT(11)"` + Detail string `json:"detail" xorm:"not null default '' comment('收货地址') VARCHAR(255)"` + Receiver string `json:"receiver" xorm:"not null default '' comment('收货人') CHAR(50)"` + ReceiverPhone string `json:"receiver_phone" xorm:"not null default '' comment('收货人手机号') CHAR(50)"` LogisticCompany string `json:"logistic_company" xorm:"not null default '' comment('物流公司') VARCHAR(255)"` LogisticCompanyCode string `json:"logistic_company_code" xorm:"not null default '' comment('物流公司代号') CHAR(50)"` LogisticNum string `json:"logistic_num" xorm:"default '' comment('物流单号') VARCHAR(255)"`