package com.theorchard.matching.models import java.sql.Date case class ContractTransaction( // txn fields txnId: Long, activityRate: BigDecimal, countryId: Int, isrc: String, labelId: Int, quantity: Int, saleCurrencyId: Int, storeId: Int, transactionDate: Date, transactionTypeId: Int, unitPriceUSD: BigDecimal, upc: Long, withholdingTaxUSD: BigDecimal, // contract fields accountingRunId: Int, contractId: Int, contractTermEnd: Date, contractTermStart: Date, payeeCurrencyId: Int, accountId: Int )