12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package shanghu
- import (
- orm "duoduo/database"
- "github.com/shopspring/decimal"
- "time"
- )
- type MerchantAccountLog struct {
- ID int64 `gorm:"column:id;type:bigint(20);primary_key;AUTO_INCREMENT" json:"id"`
- ReviewAmountAfter decimal.Decimal `gorm:"column:review_amount_after;type:decimal(10,2)" json:"review_amount_after"`
- ReviewAmountPre decimal.Decimal `gorm:"column:review_amount_pre;type:decimal(10,2)" json:"review_amount_pre"`
- AmountPre decimal.Decimal `gorm:"column:amount_pre;type:decimal(10,2)" json:"amount_pre"`
- AmountAfter decimal.Decimal `gorm:"column:amount_after;type:decimal(10,2)" json:"amount_after"`
- TransType int `gorm:"column:trans_type;type:int(11)" json:"trans_type"`
- MerchantOpenID string `gorm:"column:merchant_open_id;type:varchar(255)" json:"merchant_open_id"`
- CreateBy int64 `gorm:"column:create_by;type:bigint(20)" json:"create_by"`
- UpdateBy int64 `gorm:"column:update_by;type:bigint(20)" json:"update_by"`
- CreatedAt time.Time `gorm:"column:created_at;type:datetime(3)" json:"created_at"`
- UpdatedAt time.Time `gorm:"column:updated_at;type:datetime(3)" json:"updated_at"`
- DeletedAt time.Time `gorm:"column:deleted_at;type:datetime(3);default:null" json:"deleted_at"`
- Amount decimal.Decimal `gorm:"column:amount;type:decimal(10,2)" json:"amount"`
- PayTransId int64 `gorm:"column:pay_trans_id;type:bigint(20)" json:"pay_trans_id"`
- }
- func (m *MerchantAccountLog) TableName() string {
- return "merchant_account_log"
- }
- const (
- MerchantAccountLogTransTypeCard = 0
- MerchantAccountLogTransTypeGroupBuy = 1
- MerchantAccountLogTransTypeCashOut = 2
- )
- func (m *MerchantAccountLog) GetAccountLogNum() int {
- var count int
- tableCount := orm.ShMysql.Table(m.TableName()).Where("trans_type = ? and pay_trans_id = ?", m.TransType, m.PayTransId)
- tableCount.Count(&count)
- return count
- }
|