|
|
@@ -2120,7 +2120,7 @@ var doc = `{
|
|
|
"summary": "新增客户申请",
|
|
|
"parameters": [
|
|
|
{
|
|
|
- "description": "申请参数",
|
|
|
+ "description": "用户信息",
|
|
|
"name": "jsonBody",
|
|
|
"in": "body",
|
|
|
"required": true,
|
|
|
@@ -2145,6 +2145,48 @@ var doc = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "/Erms3/ModifyUserInfoApply": {
|
|
|
+ "post": {
|
|
|
+ "security": [
|
|
|
+ {
|
|
|
+ "ApiKeyAuth": []
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "description": "保存草稿(撤回)- { \"userid\": int, \"userstate\": 1 } 提交审核 - { \"userid\": int, \"userstate\": 2 }",
|
|
|
+ "produces": [
|
|
|
+ "application/json"
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "风险管理v3"
|
|
|
+ ],
|
|
|
+ "summary": "修改客户申请",
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "description": "用户信息",
|
|
|
+ "name": "jsonBody",
|
|
|
+ "in": "body",
|
|
|
+ "required": true,
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/erms3.ModifyUserInfoApplyReq"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "OK",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "Internal Server Error",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"/Erms3/QueryBusinessInfo": {
|
|
|
"get": {
|
|
|
"security": [
|
|
|
@@ -5159,6 +5201,52 @@ var doc = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "/User/UpdateUserAccountStatus": {
|
|
|
+ "post": {
|
|
|
+ "security": [
|
|
|
+ {
|
|
|
+ "ApiKeyAuth": []
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "produces": [
|
|
|
+ "application/json"
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "用户信息"
|
|
|
+ ],
|
|
|
+ "summary": "更新用户状态",
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "type": "integer",
|
|
|
+ "description": "用户ID",
|
|
|
+ "name": "userID",
|
|
|
+ "in": "query",
|
|
|
+ "required": true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "string",
|
|
|
+ "description": "账户状态 - 4:正常 6:注销(停用)",
|
|
|
+ "name": "accountStatus",
|
|
|
+ "in": "query",
|
|
|
+ "required": true
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "OK",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "Internal Server Error",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"/WR/GetWRCategoryInfo": {
|
|
|
"get": {
|
|
|
"produces": [
|
|
|
@@ -9126,6 +9214,306 @@ var doc = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "erms3.ModifyUserInfoApplyReq": {
|
|
|
+ "type": "object",
|
|
|
+ "required": [
|
|
|
+ "userid"
|
|
|
+ ],
|
|
|
+ "properties": {
|
|
|
+ "accountid": {
|
|
|
+ "description": "交易系统帐号Id (加密存储)",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "areacode": {
|
|
|
+ "description": "机构代码",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "areaid": {
|
|
|
+ "description": "机构Id",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "attachment1": {
|
|
|
+ "description": "附件1",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "attachment2": {
|
|
|
+ "description": "附件2",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "attachment3": {
|
|
|
+ "description": "附件3",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "attachment4": {
|
|
|
+ "description": "附件4",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "attachment5": {
|
|
|
+ "description": "附件5",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "auditedby": {
|
|
|
+ "description": "审核人",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "auditime": {
|
|
|
+ "description": "审核时间",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankaccount": {
|
|
|
+ "description": "银行帐号 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankaccountname": {
|
|
|
+ "description": "收款人名称",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankcardbackphotourl": {
|
|
|
+ "description": "银行卡背面照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankcardfrontphotourl": {
|
|
|
+ "description": "银行卡正面照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankid": {
|
|
|
+ "description": "银行编码",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankname": {
|
|
|
+ "description": "银行名称",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "bankpictureurl": {
|
|
|
+ "description": "银行卡正面地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "biznature": {
|
|
|
+ "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "bizscope": {
|
|
|
+ "description": "企业经营范围(企业)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "biztype": {
|
|
|
+ "description": "企业类型 - 1:进口/生产 2:销售 3:零售 4:运输 5:仓储",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "brokerid": {
|
|
|
+ "description": "经纪人ID(加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cardaddress": {
|
|
|
+ "description": "证件地址 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cardbackphotourl": {
|
|
|
+ "description": "背面证件照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cardfrontphotourl": {
|
|
|
+ "description": "正面证件照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cardnum": {
|
|
|
+ "description": "证件号码 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cardtype": {
|
|
|
+ "description": "证件类型",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "cityid": {
|
|
|
+ "description": "市",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "company": {
|
|
|
+ "description": "公司(个人)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "contactcardbackphotourl": {
|
|
|
+ "description": "联系人证件背面图片地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "contactcardfrontphotourl": {
|
|
|
+ "description": "联系人证件正面图片地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "contactname": {
|
|
|
+ "description": "联系人",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "countryid": {
|
|
|
+ "description": "国家",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "createtime": {
|
|
|
+ "description": "开户申请时间",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cusbankid": {
|
|
|
+ "description": "签约类型",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "cusbankname": {
|
|
|
+ "description": "签约类型名称",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "customername": {
|
|
|
+ "description": "客户名称(企业名称)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "districtid": {
|
|
|
+ "description": "地区",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "email": {
|
|
|
+ "description": "Email地址(加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "halfbodyphotourl": {
|
|
|
+ "description": "半身照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "headurl": {
|
|
|
+ "description": "头像地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "ipaddress": {
|
|
|
+ "description": "IP地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "isvalidate": {
|
|
|
+ "description": "是否有效 (删除后标记为失效) - 0:无效 1:有效",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "legalcardbackphotourl": {
|
|
|
+ "description": "法人身份证背面照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "legalcardfrontphotourl": {
|
|
|
+ "description": "法人身份证正面照地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "legalpersonname": {
|
|
|
+ "description": "法人姓名(企业)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "logincode": {
|
|
|
+ "description": "登录帐号 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "memberareaid": {
|
|
|
+ "description": "所属会员ID",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "mobile2": {
|
|
|
+ "description": "手机号码[明文-尚志]",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "mobilephone": {
|
|
|
+ "description": "手机号码 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "modifiedby": {
|
|
|
+ "description": "修改人帐号",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "modifiedtime": {
|
|
|
+ "description": "修改时间",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "nickname": {
|
|
|
+ "description": "昵称:默认为手机号脱敏(139****9999) 或 名称脱敏(张**)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "openmode": {
|
|
|
+ "description": "开户方式 - 1:管理端开户 2:网上开户注册(会员官网-手机号) 3:微信开户 4:网页交易端注册 5:安卓手机端注册 6:苹果手机端注册 7:PC交易端注册 8:微信快速开户 9:支付宝快速开户 10:手机号快速开户 11:网上开户注册(会员官网-微信认证) 12:网上开户注册(会员官网-支付宝认证)",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "otherurl": {
|
|
|
+ "description": "其它图片地址[使用分号分隔]",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "postalcode": {
|
|
|
+ "description": "邮政编码",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "provinceid": {
|
|
|
+ "description": "省",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "proxystatementurl": {
|
|
|
+ "description": "授权委托书",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "qq": {
|
|
|
+ "description": "QQ(加密存储",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "referral": {
|
|
|
+ "description": "推荐人编码",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "remark": {
|
|
|
+ "description": "备注",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "removebeforestatus": {
|
|
|
+ "description": "REMOVEBEFORESTATUS",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "sex": {
|
|
|
+ "description": "性别 - 0:女 1:男",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "signedstatus": {
|
|
|
+ "description": "账户一号签签约状态",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "signpdfurl": {
|
|
|
+ "description": "签约pdf文件",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "subbranch": {
|
|
|
+ "description": "开户支行",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "telphone": {
|
|
|
+ "description": "联系电话(加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "userid": {
|
|
|
+ "description": "用户ID(自增ID)",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "userinfotype": {
|
|
|
+ "description": "用户信息类型 - 1:个人 2:企业",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "username": {
|
|
|
+ "description": "用户姓名",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "userstate": {
|
|
|
+ "description": "开户状态 - 1:未提交 2: 待初审 3:初审拒绝 4:待复审 5:复审拒绝 6:测评不通过",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "usertype": {
|
|
|
+ "description": "用户类型 - 1:投资者 2:机构",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "videourl": {
|
|
|
+ "description": "视频地址",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "wechat": {
|
|
|
+ "description": "微信号 (加密存储)",
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"erms3.QryAuditContractRsp": {
|
|
|
"type": "object",
|
|
|
"required": [
|