|
@@ -37,7 +37,7 @@ type Taaccountdigital struct {
|
|
|
|
|
|
|
|
TIMESTAMP uint64 `json:"timestamp" xorm:"-"` // 当前时间戳(毫秒)
|
|
TIMESTAMP uint64 `json:"timestamp" xorm:"-"` // 当前时间戳(毫秒)
|
|
|
|
|
|
|
|
- CURRENCYIDS string `json:"-" xorm:"-" form:"currencyids"` // 币种ID(多个逗号分隔)
|
|
|
|
|
|
|
+ CURRENCYIDS string `json:"currencyids" xorm:"-" form:"currencyids"` // 币种ID(多个逗号分隔)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (r *Taaccountdigital) calc() {
|
|
func (r *Taaccountdigital) calc() {
|
|
@@ -120,8 +120,8 @@ type Taaccountdigitalchangeapply struct {
|
|
|
REMARK string `json:"remark" xorm:"REMARK"` // 备注
|
|
REMARK string `json:"remark" xorm:"REMARK"` // 备注
|
|
|
RETCODE string `json:"retcode" xorm:"RETCODE"` // 错误代码
|
|
RETCODE string `json:"retcode" xorm:"RETCODE"` // 错误代码
|
|
|
|
|
|
|
|
- APPLYDATE string `json:"-" xorm:"-" form:"applydate"` // 申请日期(yyyyMMdd)
|
|
|
|
|
- TRANSFERTYPES string `json:"-" xorm:"-" form:"transfertypes"` // 划转类型(多个逗号分隔) - 枚举"digitaltransfertype"(1:充值 2:提现 3:转入 4:转出)
|
|
|
|
|
|
|
+ APPLYDATE string `json:"applydate" xorm:"-" form:"applydate"` // 申请日期(yyyyMMdd)
|
|
|
|
|
+ TRANSFERTYPES string `json:"transfertypes" xorm:"-" form:"transfertypes"` // 划转类型(多个逗号分隔) - 枚举"digitaltransfertype"(1:充值 2:提现 3:转入 4:转出)
|
|
|
|
|
|
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
|
}
|
|
}
|
|
@@ -175,7 +175,7 @@ type Taaccountdigitallog struct {
|
|
|
TRADEDATE string `json:"tradedate" xorm:"TRADEDATE" form:"tradedate"` // 创建交易日(yyyyMMdd)
|
|
TRADEDATE string `json:"tradedate" xorm:"TRADEDATE" form:"tradedate"` // 创建交易日(yyyyMMdd)
|
|
|
REMARK string `json:"remark" xorm:"REMARK"` // 备注
|
|
REMARK string `json:"remark" xorm:"REMARK"` // 备注
|
|
|
|
|
|
|
|
- BUSINESSCODES string `json:"-" xorm:"-" form:"businesscodes"` // 业务类型(多个逗号分隔) - 枚举digitalbusinesscode(1:充值 2:提现 3:转入 4:转出 5:现货交易 6:现货交易手续费 7:提现手续费...)
|
|
|
|
|
|
|
+ BUSINESSCODES string `json:"businesscodes" xorm:"-" form:"businesscodes"` // 业务类型(多个逗号分隔) - 枚举digitalbusinesscode(1:充值 2:提现 3:转入 4:转出 5:现货交易 6:现货交易手续费 7:提现手续费...)
|
|
|
|
|
|
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
|
}
|
|
}
|
|
@@ -256,8 +256,8 @@ type DigitaltradeOrderdetail struct {
|
|
|
RETCODE uint64 `json:"retcode" xorm:"RETCODE"` // 错误代码
|
|
RETCODE uint64 `json:"retcode" xorm:"RETCODE"` // 错误代码
|
|
|
TRADEPROPERTY uint32 `json:"tradeproperty" xorm:"TRADEPROPERTY"` // 交易属性
|
|
TRADEPROPERTY uint32 `json:"tradeproperty" xorm:"TRADEPROPERTY"` // 交易属性
|
|
|
|
|
|
|
|
- ORDERSTATUSES string `json:"-" xorm:"-" form:"orderstatuses"` // 委托状态(多个逗号分隔) 参考枚举orderstatus
|
|
|
|
|
- DIGITALACCOUNTID string `json:"-" xorm:"-" form:"digitalaccountid"` // 数字账户ID
|
|
|
|
|
|
|
+ ORDERSTATUSES string `json:"orderstatuses" xorm:"-" form:"orderstatuses"` // 委托状态(多个逗号分隔) 参考枚举orderstatus
|
|
|
|
|
+ DIGITALACCOUNTID string `json:"digitalaccountid" xorm:"-" form:"digitalaccountid"` // 数字账户ID
|
|
|
|
|
|
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
|
}
|
|
}
|
|
@@ -329,7 +329,7 @@ type DigitaltradeTradedetail struct {
|
|
|
OPENMEMBERCHARGEVALUE float64 `json:"openmemberchargevalue" xorm:"OPENMEMBERCHARGEVALUE"` // 手续费设置值(会员部分)
|
|
OPENMEMBERCHARGEVALUE float64 `json:"openmemberchargevalue" xorm:"OPENMEMBERCHARGEVALUE"` // 手续费设置值(会员部分)
|
|
|
TRADEPROPERTY uint32 `json:"tradeproperty" xorm:"TRADEPROPERTY"` // 交易属性
|
|
TRADEPROPERTY uint32 `json:"tradeproperty" xorm:"TRADEPROPERTY"` // 交易属性
|
|
|
|
|
|
|
|
- DIGITALACCOUNTID string `json:"-" xorm:"-" form:"digitalaccountid"` // 数字账户ID
|
|
|
|
|
|
|
+ DIGITALACCOUNTID string `json:"digitalaccountid" xorm:"-" form:"digitalaccountid"` // 数字账户ID
|
|
|
|
|
|
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
|
}
|
|
}
|