|
|
@@ -20,7 +20,6 @@ var doc = `{
|
|
|
"title": "{{.Title}}",
|
|
|
"termsOfService": "http://muchinfo.cn",
|
|
|
"contact": {},
|
|
|
- "license": {},
|
|
|
"version": "{{.Version}}"
|
|
|
},
|
|
|
"host": "{{.Host}}",
|
|
|
@@ -369,6 +368,31 @@ var doc = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "/Common/GetAllEnums": {
|
|
|
+ "get": {
|
|
|
+ "produces": [
|
|
|
+ "application/json"
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "通用服务"
|
|
|
+ ],
|
|
|
+ "summary": "获取所有枚举信息",
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "OK",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/models.Enumdicitem"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "Internal Server Error",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"/Common/NoticeReaded": {
|
|
|
"post": {
|
|
|
"security": [
|
|
|
@@ -3265,7 +3289,6 @@ var doc = `{
|
|
|
},
|
|
|
"province": {
|
|
|
"description": "省",
|
|
|
- "type": "object",
|
|
|
"$ref": "#/definitions/models.Division"
|
|
|
}
|
|
|
}
|
|
|
@@ -5322,7 +5345,6 @@ var doc = `{
|
|
|
},
|
|
|
"ouruser": {
|
|
|
"description": "我方账号",
|
|
|
- "type": "object",
|
|
|
"$ref": "#/definitions/erms3.CustomerInfo"
|
|
|
},
|
|
|
"warehouseinfos": {
|
|
|
@@ -5650,7 +5672,6 @@ var doc = `{
|
|
|
},
|
|
|
"province": {
|
|
|
"description": "省",
|
|
|
- "type": "object",
|
|
|
"$ref": "#/definitions/models.Division"
|
|
|
}
|
|
|
}
|
|
|
@@ -5708,6 +5729,61 @@ var doc = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "models.Enumdicitem": {
|
|
|
+ "type": "object",
|
|
|
+ "required": [
|
|
|
+ "autoid",
|
|
|
+ "enumdiccode",
|
|
|
+ "enumdicid",
|
|
|
+ "enumitemname"
|
|
|
+ ],
|
|
|
+ "properties": {
|
|
|
+ "autoid": {
|
|
|
+ "description": "自增ID",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "bankmappedvalue": {
|
|
|
+ "description": "银行服务对应值",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "enumdiccode": {
|
|
|
+ "description": "所属枚举代码",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "enumdicid": {
|
|
|
+ "description": "所属枚举ID",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "enumdicname": {
|
|
|
+ "description": "枚举项名称",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "enumitemname": {
|
|
|
+ "description": "枚举项值",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "enumitemstatus": {
|
|
|
+ "description": "枚举项状态 - 1.启用 2.不启用",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "enumitemvalue": {
|
|
|
+ "description": "通用值 - [币种通用简写]",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "param1": {
|
|
|
+ "description": "参数1[币种:币种小数位]",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "param2": {
|
|
|
+ "description": "参数1[币种:币种显示单位]",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "remark": {
|
|
|
+ "description": "备注",
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"models.GoodsIDAndName": {
|
|
|
"type": "object",
|
|
|
"required": [
|