|
|
@@ -10,7 +10,7 @@ import (
|
|
|
|
|
|
// Tradepositiontransfer 持仓过户申请表 - 16所有权(中融需求)
|
|
|
type InTradepositiontransfer struct {
|
|
|
- APPLYID int64 `json:"applyid" xorm:"APPLYID"` // 申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)
|
|
|
+ APPLYID string `json:"applyid" xorm:"APPLYID"` // 申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)
|
|
|
OUTUSERID int64 `json:"outuserid" xorm:"OUTUSERID"` // 转出方用户ID(申请方)
|
|
|
OUTLOGINID int64 `json:"outloginid" xorm:"OUTLOGINID"` // 转出方登录账号
|
|
|
OUTACCOUNTID int64 `json:"outaccountid" xorm:"OUTACCOUNTID"` // 转出方资金ID(申请方)
|
|
|
@@ -65,7 +65,7 @@ func (r *InTradepositiontransfer) buildSql() string {
|
|
|
g.goodscode || '/' || g.goodsname as GOODSDISPLAY,
|
|
|
vlogin.LOGINIDS || '/' || ui.customername as OUTUSERNAME,
|
|
|
en.enumdicname as APPLYSTATUS,
|
|
|
- t.applyid,
|
|
|
+ to_char(t.applyid) APPLYID,
|
|
|
t.outaccountid,
|
|
|
t.inaccountid,
|
|
|
t.marketid,
|
|
|
@@ -126,7 +126,7 @@ func (r *InTradepositiontransfer) GetDataByPage() (interface{}, error, int, int,
|
|
|
|
|
|
// OutTradepositiontransfer 持仓过户申请表 - 16所有权(中融需求)
|
|
|
type OutTradepositiontransfer struct {
|
|
|
- APPLYID int64 `json:"applyid" xorm:"APPLYID"` // 申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)
|
|
|
+ APPLYID string `json:"applyid" xorm:"APPLYID"` // 申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)
|
|
|
OUTUSERID int64 `json:"outuserid" xorm:"OUTUSERID" form:"userid" binding:"required"` // 转出方用户ID(申请方)
|
|
|
OUTLOGINID int64 `json:"outloginid" xorm:"OUTLOGINID"` // 转出方登录账号
|
|
|
OUTACCOUNTID int64 `json:"outaccountid" xorm:"OUTACCOUNTID"` // 转出方资金ID(申请方)
|
|
|
@@ -181,7 +181,7 @@ func (r *OutTradepositiontransfer) buildSql() string {
|
|
|
g.goodscode || '/' || g.goodsname as GOODSDISPLAY,
|
|
|
vlogin.LOGINIDS || '/' || ui.customername as INUSERNAME,
|
|
|
en.enumdicname as APPLYSTATUS,
|
|
|
- t.applyid,
|
|
|
+ to_char(t.applyid) APPLYID,
|
|
|
t.outuserid,
|
|
|
t.outloginid,
|
|
|
t.outaccountid,
|