Browse Source

更新

master
huangjiajun 3 days ago
parent
commit
3df28df11c
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      src/models/subsidy_store_money.go

+ 15
- 0
src/models/subsidy_store_money.go View File

@@ -0,0 +1,15 @@
package models

import (
"time"
)

type SubsidyStoreMoney struct {
Id int `json:"id" xorm:"not null pk default 0 INT(11)"`
StoreId int `json:"store_id" xorm:"INT(11)"`
MerchantId int `json:"merchant_id" xorm:"default 0 INT(11)"`
Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
IsSend int `json:"is_send" xorm:"default 0 INT(1)"`
CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
SendAt time.Time `json:"send_at" xorm:"DATETIME"`
}

Loading…
Cancel
Save