Procházet zdrojové kódy

#6685 【Go查询】查询QueryCusBankSignBank返回添加字段 ”ISMIX"

deng.yinping před 9 měsíci
rodič
revize
3a95d52311
4 změnil soubory, kde provedl 25 přidání a 0 odebrání
  1. 8 0
      docs/docs.go
  2. 8 0
      docs/swagger.json
  3. 6 0
      docs/swagger.yaml
  4. 3 0
      models/qhj.go

+ 8 - 0
docs/docs.go

@@ -44232,6 +44232,10 @@ const docTemplate = `{
                     "description": "交易所支出结算账户",
                     "type": "string"
                 },
+                "ismix": {
+                    "description": "是否混合渠道 - 0:否 1:是",
+                    "type": "integer"
+                },
                 "isneedcheck": {
                     "description": "是否需要对账 - 0:需要 1:不需要 [不需要界面配置]",
                     "type": "integer"
@@ -49651,6 +49655,10 @@ const docTemplate = `{
                     "description": "交易所支出结算账户",
                     "type": "string"
                 },
+                "ismix": {
+                    "description": "是否混合渠道 - 0:否 1:是",
+                    "type": "integer"
+                },
                 "isneedcheck": {
                     "description": "是否需要对账 - 0:需要 1:不需要 [不需要界面配置]",
                     "type": "integer"

+ 8 - 0
docs/swagger.json

@@ -44223,6 +44223,10 @@
                     "description": "交易所支出结算账户",
                     "type": "string"
                 },
+                "ismix": {
+                    "description": "是否混合渠道 - 0:否 1:是",
+                    "type": "integer"
+                },
                 "isneedcheck": {
                     "description": "是否需要对账 - 0:需要 1:不需要 [不需要界面配置]",
                     "type": "integer"
@@ -49642,6 +49646,10 @@
                     "description": "交易所支出结算账户",
                     "type": "string"
                 },
+                "ismix": {
+                    "description": "是否混合渠道 - 0:否 1:是",
+                    "type": "integer"
+                },
                 "isneedcheck": {
                     "description": "是否需要对账 - 0:需要 1:不需要 [不需要界面配置]",
                     "type": "integer"

+ 6 - 0
docs/swagger.yaml

@@ -14930,6 +14930,9 @@ definitions:
       exchpaybankaccno:
         description: 交易所支出结算账户
         type: string
+      ismix:
+        description: 是否混合渠道 - 0:否 1:是
+        type: integer
       isneedcheck:
         description: 是否需要对账 - 0:需要 1:不需要 [不需要界面配置]
         type: integer
@@ -18928,6 +18931,9 @@ definitions:
       exchpaybankaccno:
         description: 交易所支出结算账户
         type: string
+      ismix:
+        description: 是否混合渠道 - 0:否 1:是
+        type: integer
       isneedcheck:
         description: 是否需要对账 - 0:需要 1:不需要 [不需要界面配置]
         type: integer

+ 3 - 0
models/qhj.go

@@ -1325,6 +1325,7 @@ type QhjCusBankInfo struct {
 	CANMODIFYBANKCARD  int32  `json:"canmodifybankcard"  xorm:"CANMODIFYBANKCARD"`   // 是否可修改银行卡号 - 0:不可 1:可以
 	CANALLOT           int32  `json:"canallot"  xorm:"CANALLOT"`                     // 是否支持跨行调拨 - 0:不支持 1:支持
 	CANALLOTQUERY      int32  `json:"canallotquery"  xorm:"CANALLOTQUERY"`           // 是否支持跨行调拨查询 - 0:不支持 1:支持
+	ISMIX              int32  `json:"ismix"  xorm:"ISMIX"`                           // 是否混合渠道 - 0:否 1:是
 
 	TRADEDATE       string `json:"tradedate"  xorm:"TRADEDATE"`             // 交易日(yyyyMMdd)
 	SIGNSTATUS      int32  `json:"signstatus"  xorm:"SIGNSTATUS"`           // 当前签到/签退状态 - 1:签到 2:签退
@@ -1381,6 +1382,7 @@ func (r *QhjCusBankInfo) buildSql() string {
 		"       t.CANMODIFYBANKCARD," +
 		"       t.CANALLOT," +
 		"       t.CANALLOTQUERY," +
+		"       t.ISMIX," +
 		"       tmp.*" +
 		"  FROM BANK_CUSBANKINFO t" +
 		"  LEFT JOIN tmp" +
@@ -1444,6 +1446,7 @@ func (r *QhjCusBankInfo) buildSql2(areauserid int64, configtype int) string {
 		"       t.CANMODIFYBANKCARD," +
 		"       t.CANALLOT," +
 		"       t.CANALLOTQUERY," +
+		"       t.ISMIX," +
 		"       tmp.*" +
 		"  FROM BANK_CUSBANKINFO t" +
 		"  LEFT JOIN tmp on t.cusbankid = tmp.id2" +