2019-01-24 20:41:30 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-16 21:36:35 +00:00
|
|
|
|
|
|
|
package tend
|
|
|
|
|
|
|
|
type TendModel struct {
|
2018-09-04 20:50:29 +00:00
|
|
|
BidId string `db:"bid_id"`
|
2018-08-16 21:36:35 +00:00
|
|
|
Lot string
|
|
|
|
Bid string
|
2018-09-04 20:50:29 +00:00
|
|
|
Guy string
|
2018-10-22 21:07:19 +00:00
|
|
|
LogIndex uint `db:"log_idx"`
|
2018-08-16 21:36:35 +00:00
|
|
|
TransactionIndex uint `db:"tx_idx"`
|
2018-11-12 20:59:16 +00:00
|
|
|
Raw []byte `db:"raw_log"`
|
2018-08-16 21:36:35 +00:00
|
|
|
}
|