Ver a proveniência

更新

master
huangjiajun há 3 dias
ascendente
cometimento
3df28df11c
1 ficheiros alterados com 15 adições e 0 eliminações
  1. +15
    -0
      src/models/subsidy_store_money.go

+ 15
- 0
src/models/subsidy_store_money.go Ver ficheiro

@@ -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"`
}

Carregando…
Cancelar
Guardar