|
|
@@ -182,6 +182,7 @@ type ErmcpTaAccount struct {
|
|
|
CURRENCYID int32 `json:"currencyid" xorm:"'CURRENCYID'"` // 币种id
|
|
|
TRADESTATUS int32 `json:"tradestatus" xorm:"'TRADESTATUS'"` // 交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结) 6:待激活 7:已注销
|
|
|
ISMAIN int32 `json:"ismain" xorm:"'ISMAIN'"` // 是否主账户 0-否 1-是
|
|
|
+ USERID int64 `json:"userid" xorm:"'USERID'"` // 用户id
|
|
|
RELATEDUSERID int64 `json:"relateduserid" xorm:"'RELATEDUSERID'"` // 关联userid
|
|
|
ACCOUNTNAME string `json:"accountname" xorm:"'ACCOUNTNAME'"` // 账户名称
|
|
|
PARENTACCOUNTID int64 `json:"parentaccountid" xorm:"'PARENTACCOUNTID'"` // 父账户id
|
|
|
@@ -198,6 +199,7 @@ func (r *ErmcpTaAccount) buildSql() string {
|
|
|
" t.currencyid," +
|
|
|
" t.tradestatus," +
|
|
|
" t.ismain," +
|
|
|
+ " t.userid," +
|
|
|
" t.relateduserid," +
|
|
|
" t.accountname," +
|
|
|
" t.parentaccountid," +
|
|
|
@@ -207,7 +209,7 @@ func (r *ErmcpTaAccount) buildSql() string {
|
|
|
" on t.accountid = l.accountid" +
|
|
|
" and t.ismain = 1" +
|
|
|
" where 1 = 1"
|
|
|
- sqlId.And("t.relateduserid", r.RELATEDUSERID)
|
|
|
+ sqlId.And("t.userid", r.USERID)
|
|
|
return sqlId.String()
|
|
|
}
|
|
|
|