智盟项目
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

master_amount_flow.go 860 B

1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1234567891011121314151617181920
  1. package model
  2. import (
  3. "time"
  4. )
  5. type MasterAmountFlow struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid string `json:"uid" xorm:"VARCHAR(255)"`
  8. Time time.Time `json:"time" xorm:"DATETIME"`
  9. BeforeAmount string `json:"before_amount" xorm:"default 0.00 DECIMAL(20,2)"`
  10. Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
  11. AfterAmount string `json:"after_amount" xorm:"default 0.00 DECIMAL(20,2)"`
  12. Platform string `json:"platform" xorm:"VARCHAR(255)"`
  13. Oid string `json:"oid" xorm:"VARCHAR(255)"`
  14. Title string `json:"title" xorm:"VARCHAR(255)"`
  15. FlowType string `json:"flow_type" xorm:"VARCHAR(255)"`
  16. IncomeType int `json:"income_type" xorm:"default 0 INT(1)"`
  17. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  18. }