一物一码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fin_sys_log.go 583 B

2 年之前
12345678910
  1. package model
  2. type FinSysLog struct {
  3. Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
  4. FromUid int `json:"from_uid" xorm:"not null default 0 comment('来自于用户') INT(11)"`
  5. FromSource int `json:"from_source" xorm:"not null default 0 comment('来源') TINYINT(4)"`
  6. Amount float32 `json:"amount" xorm:"not null default 0.0000 comment('金额') FLOAT(12,4)"`
  7. Memo string `json:"memo" xorm:"not null default '' comment('备注') VARCHAR(50)"`
  8. CreateAt int `json:"create_at" xorm:"not null default 0 comment('创建时间') INT(11)"`
  9. }