瀏覽代碼

更新

master
huangjiajun 3 天之前
父節點
當前提交
3df28df11c
共有 1 個檔案被更改,包括 15 行新增0 行删除
  1. +15
    -0
      src/models/subsidy_store_money.go

+ 15
- 0
src/models/subsidy_store_money.go 查看文件

@@ -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…
取消
儲存