|
|
@@ -1,19 +1,15 @@ |
|
|
|
package model |
|
|
|
|
|
|
|
import ( |
|
|
|
"time" |
|
|
|
) |
|
|
|
|
|
|
|
type MediumFinancialDynamics struct { |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr INT(11)"` |
|
|
|
Uuid int `json:"uuid" xorm:"default 0 INT(11)"` |
|
|
|
MediumId int `json:"medium_id" xorm:"not null default 0 comment('媒体id') INT(11)"` |
|
|
|
PayTime time.Time `json:"pay_time" xorm:"comment('支付时间') DATETIME"` |
|
|
|
CreateAt time.Time `json:"create_at" xorm:"DATETIME"` |
|
|
|
UpdateAt time.Time `json:"update_at" xorm:"DATETIME"` |
|
|
|
Amount string `json:"amount" xorm:"default 0.00 comment('支付金额') DECIMAL(20,2)"` |
|
|
|
PayMethod int `json:"pay_method" xorm:"default 0 comment('支付方式 0对私 1对公') TINYINT(1)"` |
|
|
|
Certificate string `json:"certificate" xorm:"comment('支付凭证') VARCHAR(255)"` |
|
|
|
Memo string `json:"memo" xorm:"comment('备注') VARCHAR(255)"` |
|
|
|
BusinessKind int `json:"business_kind" xorm:"not null default 1 comment('业务类型(1:广告合作)') TINYINT(1)"` |
|
|
|
Id int `json:"id" xorm:"not null pk autoincr INT(11)"` |
|
|
|
Uuid int `json:"uuid" xorm:"default 0 INT(11)"` |
|
|
|
MediumId int `json:"medium_id" xorm:"not null default 0 comment('媒体id') INT(11)"` |
|
|
|
PayTime string `json:"pay_time" xorm:"comment('支付时间') DATETIME"` |
|
|
|
CreateAt string `json:"create_at" xorm:"DATETIME"` |
|
|
|
UpdateAt string `json:"update_at" xorm:"DATETIME"` |
|
|
|
Amount string `json:"amount" xorm:"default 0.00 comment('支付金额') DECIMAL(20,2)"` |
|
|
|
PayMethod int `json:"pay_method" xorm:"default 0 comment('支付方式 0对私 1对公') TINYINT(1)"` |
|
|
|
Certificate string `json:"certificate" xorm:"comment('支付凭证') VARCHAR(255)"` |
|
|
|
Memo string `json:"memo" xorm:"comment('备注') VARCHAR(255)"` |
|
|
|
BusinessKind int `json:"business_kind" xorm:"not null default 1 comment('业务类型(1:广告合作)') TINYINT(1)"` |
|
|
|
} |