| | |
| | | type DepartmentController struct{} |
| | | |
| | | // Add |
| | | // @Tags 部门信息 |
| | | // @Summary 添加部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.AddDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-s/v1/organize/department [post] |
| | | // |
| | | // @Tags 部门信息 |
| | | // @Summary 添加部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.AddDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-wms/v1/organize/department [post] |
| | | func (slf DepartmentController) Add(c *gin.Context) { |
| | | var reqParams request.AddDepartment |
| | | var params models.Department |
| | |
| | | } |
| | | |
| | | // Update |
| | | // @Tags 部门信息 |
| | | // @Summary 编辑部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.UpdateDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-s/v1/organize/department/{id} [put] |
| | | // |
| | | // @Tags 部门信息 |
| | | // @Summary 编辑部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.UpdateDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-wms/v1/organize/department/{id} [put] |
| | | func (slf DepartmentController) Update(c *gin.Context) { |
| | | idStr := c.Param("id") |
| | | if idStr == "0" || idStr == "" { |
| | |
| | | } |
| | | |
| | | // List |
| | | // @Tags 部门信息 |
| | | // @Summary 查询部门信息列表 |
| | | // @Produce application/json |
| | | // @Param object query request.GetDepartmentList true "查询参数" |
| | | // @Success 200 {object} util.ResponseList{data=[]models.Department} "成功" |
| | | // @Router /api-s/v1/organize/department [get] |
| | | // |
| | | // @Tags 部门信息 |
| | | // @Summary 查询部门信息列表 |
| | | // @Produce application/json |
| | | // @Param object query request.GetDepartmentList true "查询参数" |
| | | // @Success 200 {object} util.ResponseList{data=[]models.Department} "成功" |
| | | // @Router /api-wms/v1/organize/department [get] |
| | | func (slf DepartmentController) List(c *gin.Context) { |
| | | var params request.GetDepartmentList |
| | | if err := c.ShouldBindQuery(¶ms); err != nil { |
| | |
| | | } |
| | | |
| | | // Delete |
| | | // @Tags 部门信息 |
| | | // @Summary 编辑部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.UpdateDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-s/v1/organize/department/{id} [delete] |
| | | // |
| | | // @Tags 部门信息 |
| | | // @Summary 编辑部门信息 |
| | | // @Produce application/json |
| | | // @Param object body request.UpdateDepartment true "部门信息信息" |
| | | // @Success 200 {object} util.Response "成功" |
| | | // @Router /api-wms/v1/organize/department/{id} [delete] |
| | | func (slf DepartmentController) Delete(c *gin.Context) { |
| | | idStr := c.Param("id") |
| | | if idStr == "0" || idStr == "" { |
| | |
| | | "host": "{{.Host}}", |
| | | "basePath": "{{.BasePath}}", |
| | | "paths": { |
| | | "/api-s/v1/organize/department": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "查询部门信息列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "integer", |
| | | "description": "页码", |
| | | "name": "page", |
| | | "in": "query" |
| | | }, |
| | | { |
| | | "type": "integer", |
| | | "description": "每页大小", |
| | | "name": "pageSize", |
| | | "in": "query" |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.Department" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "添加部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-s/v1/organize/department/{id}": { |
| | | "put": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/attachment/uploadFiles": { |
| | | "post": { |
| | | "tags": [ |
| | |
| | | "name": "id", |
| | | "in": "path", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/add": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "添加字典信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/delete/{id}": { |
| | | "delete": { |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "删除字典信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "id", |
| | | "in": "path", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/edit": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "编辑字典信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.EditMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/getDictList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "获取字典信息列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetMiniDictList" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.MiniDict" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/save": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "批量更新迷你字典(会删除原数据)", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.SaveMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/organize/department": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "查询部门信息列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "integer", |
| | | "description": "页码", |
| | | "name": "page", |
| | | "in": "query" |
| | | }, |
| | | { |
| | | "type": "integer", |
| | | "description": "每页大小", |
| | | "name": "pageSize", |
| | | "in": "query" |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.Department" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "添加部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/organize/department/{id}": { |
| | | "put": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/product/addDisuse": { |
| | | "post": { |
| | | "produces": [ |
| | |
| | | "MaterialModeVirtual" |
| | | ] |
| | | }, |
| | | "constvar.MiniDictType": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3 |
| | | ], |
| | | "x-enum-comments": { |
| | | "StockoutType": "出库类型", |
| | | "StorageType": "入库类型", |
| | | "TransferType": "调拨类型" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "TransferType", |
| | | "StorageType", |
| | | "StockoutType" |
| | | ] |
| | | }, |
| | | "constvar.OperationSource": { |
| | | "type": "integer", |
| | | "enum": [ |
| | |
| | | } |
| | | } |
| | | }, |
| | | "models.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "code": { |
| | | "description": "编码", |
| | | "type": "string" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.MonthStats": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "inventoryDealer": { |
| | | "$ref": "#/definitions/models.MiniDict" |
| | | }, |
| | | "inventoryDealerType": { |
| | | "type": "integer" |
| | | }, |
| | | "isInternalOutput": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.AddMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.AddOperation": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.EditMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "id": { |
| | | "description": "字典类型", |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.FinishLocationProductAmount": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.GetMiniDictList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | }, |
| | | "request.GetMonthStats": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | }, |
| | | "productId": { |
| | | "description": "产品id", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "list": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/request.MiniDict" |
| | | } |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveUnitDict": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | "contact": {} |
| | | }, |
| | | "paths": { |
| | | "/api-s/v1/organize/department": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "查询部门信息列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "integer", |
| | | "description": "页码", |
| | | "name": "page", |
| | | "in": "query" |
| | | }, |
| | | { |
| | | "type": "integer", |
| | | "description": "每页大小", |
| | | "name": "pageSize", |
| | | "in": "query" |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.Department" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "添加部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-s/v1/organize/department/{id}": { |
| | | "put": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/attachment/uploadFiles": { |
| | | "post": { |
| | | "tags": [ |
| | |
| | | "name": "id", |
| | | "in": "path", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/add": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "添加字典信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/delete/{id}": { |
| | | "delete": { |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "删除字典信息", |
| | | "parameters": [ |
| | | { |
| | | "type": "string", |
| | | "description": "id", |
| | | "name": "id", |
| | | "in": "path", |
| | | "required": true |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/edit": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "编辑字典信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.EditMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/getDictList": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "获取字典信息列表", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.GetMiniDictList" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.MiniDict" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/dict/save": { |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "数据字典" |
| | | ], |
| | | "summary": "批量更新迷你字典(会删除原数据)", |
| | | "parameters": [ |
| | | { |
| | | "description": "参数", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.SaveMiniDict" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/organize/department": { |
| | | "get": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "查询部门信息列表", |
| | | "parameters": [ |
| | | { |
| | | "type": "integer", |
| | | "description": "页码", |
| | | "name": "page", |
| | | "in": "query" |
| | | }, |
| | | { |
| | | "type": "integer", |
| | | "description": "每页大小", |
| | | "name": "pageSize", |
| | | "in": "query" |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/util.ResponseList" |
| | | }, |
| | | { |
| | | "type": "object", |
| | | "properties": { |
| | | "data": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/models.Department" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "post": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "添加部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.AddDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/organize/department/{id}": { |
| | | "put": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "delete": { |
| | | "produces": [ |
| | | "application/json" |
| | | ], |
| | | "tags": [ |
| | | "部门信息" |
| | | ], |
| | | "summary": "编辑部门信息", |
| | | "parameters": [ |
| | | { |
| | | "description": "部门信息信息", |
| | | "name": "object", |
| | | "in": "body", |
| | | "required": true, |
| | | "schema": { |
| | | "$ref": "#/definitions/request.UpdateDepartment" |
| | | } |
| | | } |
| | | ], |
| | | "responses": { |
| | | "200": { |
| | | "description": "成功", |
| | | "schema": { |
| | | "$ref": "#/definitions/util.Response" |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | "/api-wms/v1/product/addDisuse": { |
| | | "post": { |
| | | "produces": [ |
| | |
| | | "MaterialModeVirtual" |
| | | ] |
| | | }, |
| | | "constvar.MiniDictType": { |
| | | "type": "integer", |
| | | "enum": [ |
| | | 1, |
| | | 2, |
| | | 3 |
| | | ], |
| | | "x-enum-comments": { |
| | | "StockoutType": "出库类型", |
| | | "StorageType": "入库类型", |
| | | "TransferType": "调拨类型" |
| | | }, |
| | | "x-enum-varnames": [ |
| | | "TransferType", |
| | | "StorageType", |
| | | "StockoutType" |
| | | ] |
| | | }, |
| | | "constvar.OperationSource": { |
| | | "type": "integer", |
| | | "enum": [ |
| | |
| | | } |
| | | } |
| | | }, |
| | | "models.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "code": { |
| | | "description": "编码", |
| | | "type": "string" |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "models.MonthStats": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | }, |
| | | "id": { |
| | | "type": "integer" |
| | | }, |
| | | "inventoryDealer": { |
| | | "$ref": "#/definitions/models.MiniDict" |
| | | }, |
| | | "inventoryDealerType": { |
| | | "type": "integer" |
| | | }, |
| | | "isInternalOutput": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.AddMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.AddOperation": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.EditMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "id": { |
| | | "description": "字典类型", |
| | | "type": "integer" |
| | | }, |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.FinishLocationProductAmount": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.GetMiniDictList": { |
| | | "type": "object", |
| | | "properties": { |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | }, |
| | | "request.GetMonthStats": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | }, |
| | | "productId": { |
| | | "description": "产品id", |
| | | "type": "string" |
| | | } |
| | | } |
| | | }, |
| | | "request.MiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "isDefault": { |
| | | "description": "是否默认", |
| | | "type": "boolean" |
| | | }, |
| | | "name": { |
| | | "description": "名称", |
| | | "type": "string" |
| | | }, |
| | | "value": { |
| | | "description": "值", |
| | | "type": "string" |
| | | } |
| | | } |
| | |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveMiniDict": { |
| | | "type": "object", |
| | | "properties": { |
| | | "list": { |
| | | "type": "array", |
| | | "items": { |
| | | "$ref": "#/definitions/request.MiniDict" |
| | | } |
| | | }, |
| | | "type": { |
| | | "description": "字典类型", |
| | | "allOf": [ |
| | | { |
| | | "$ref": "#/definitions/constvar.MiniDictType" |
| | | } |
| | | ] |
| | | } |
| | | } |
| | | }, |
| | | "request.SaveUnitDict": { |
| | | "type": "object", |
| | | "properties": { |
| | |
| | | - MaterialModeConsumables |
| | | - MaterialModeOther |
| | | - MaterialModeVirtual |
| | | constvar.MiniDictType: |
| | | enum: |
| | | - 1 |
| | | - 2 |
| | | - 3 |
| | | type: integer |
| | | x-enum-comments: |
| | | StockoutType: 出库类型 |
| | | StorageType: 入库类型 |
| | | TransferType: 调拨类型 |
| | | x-enum-varnames: |
| | | - TransferType |
| | | - StorageType |
| | | - StockoutType |
| | | constvar.OperationSource: |
| | | enum: |
| | | - 1 |
| | |
| | | description: 重量 |
| | | type: number |
| | | type: object |
| | | models.MiniDict: |
| | | properties: |
| | | code: |
| | | description: 编码 |
| | | type: string |
| | | id: |
| | | type: integer |
| | | isDefault: |
| | | description: 是否默认 |
| | | type: boolean |
| | | name: |
| | | description: 名称 |
| | | type: string |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型 |
| | | value: |
| | | description: 值 |
| | | type: string |
| | | type: object |
| | | models.MonthStats: |
| | | properties: |
| | | MoreUnitsArr: |
| | |
| | | $ref: '#/definitions/models.OperationDetails' |
| | | type: array |
| | | id: |
| | | type: integer |
| | | inventoryDealer: |
| | | $ref: '#/definitions/models.MiniDict' |
| | | inventoryDealerType: |
| | | type: integer |
| | | isInternalOutput: |
| | | description: 是否调拨产生的出库 |
| | |
| | | - $ref: '#/definitions/constvar.RuleType' |
| | | description: 上架规则类型 1:产品类型;2:产品类别类型 |
| | | type: object |
| | | request.AddMiniDict: |
| | | properties: |
| | | isDefault: |
| | | description: 是否默认 |
| | | type: boolean |
| | | name: |
| | | description: 名称 |
| | | type: string |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型 |
| | | value: |
| | | description: 值 |
| | | type: string |
| | | type: object |
| | | request.AddOperation: |
| | | properties: |
| | | accountant: |
| | |
| | | token: |
| | | type: string |
| | | type: object |
| | | request.EditMiniDict: |
| | | properties: |
| | | id: |
| | | description: 字典类型 |
| | | type: integer |
| | | isDefault: |
| | | description: 是否默认 |
| | | type: boolean |
| | | name: |
| | | description: 名称 |
| | | type: string |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型 |
| | | value: |
| | | description: 值 |
| | | type: string |
| | | type: object |
| | | request.FinishLocationProductAmount: |
| | | properties: |
| | | locationProductAmountId: |
| | |
| | | type: |
| | | type: integer |
| | | type: object |
| | | request.GetMiniDictList: |
| | | properties: |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型 |
| | | type: object |
| | | request.GetMonthStats: |
| | | properties: |
| | | date: |
| | |
| | | type: integer |
| | | productId: |
| | | description: 产品id |
| | | type: string |
| | | type: object |
| | | request.MiniDict: |
| | | properties: |
| | | isDefault: |
| | | description: 是否默认 |
| | | type: boolean |
| | | name: |
| | | description: 名称 |
| | | type: string |
| | | value: |
| | | description: 值 |
| | | type: string |
| | | type: object |
| | | request.OperationAllList: |
| | |
| | | type: integer |
| | | productId: |
| | | type: string |
| | | type: object |
| | | request.SaveMiniDict: |
| | | properties: |
| | | list: |
| | | items: |
| | | $ref: '#/definitions/request.MiniDict' |
| | | type: array |
| | | type: |
| | | allOf: |
| | | - $ref: '#/definitions/constvar.MiniDictType' |
| | | description: 字典类型 |
| | | type: object |
| | | request.SaveUnitDict: |
| | | properties: |
| | |
| | | info: |
| | | contact: {} |
| | | paths: |
| | | /api-s/v1/organize/department: |
| | | get: |
| | | parameters: |
| | | - description: 页码 |
| | | in: query |
| | | name: page |
| | | type: integer |
| | | - description: 每页大小 |
| | | in: query |
| | | name: pageSize |
| | | type: integer |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.Department' |
| | | type: array |
| | | type: object |
| | | summary: 查询部门信息列表 |
| | | tags: |
| | | - 部门信息 |
| | | post: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.AddDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 添加部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | /api-s/v1/organize/department/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.UpdateDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 编辑部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | put: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.UpdateDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 编辑部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | /api-wms/v1/attachment/uploadFiles: |
| | | post: |
| | | responses: |
| | |
| | | summary: 编辑公司 |
| | | tags: |
| | | - 公司 |
| | | /api-wms/v1/dict/add: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.AddMiniDict' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 添加字典信息 |
| | | tags: |
| | | - 数据字典 |
| | | /api-wms/v1/dict/delete/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: id |
| | | in: path |
| | | name: id |
| | | required: true |
| | | type: string |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 删除字典信息 |
| | | tags: |
| | | - 数据字典 |
| | | /api-wms/v1/dict/edit: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.EditMiniDict' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 编辑字典信息 |
| | | tags: |
| | | - 数据字典 |
| | | /api-wms/v1/dict/getDictList: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.GetMiniDictList' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.MiniDict' |
| | | type: array |
| | | type: object |
| | | summary: 获取字典信息列表 |
| | | tags: |
| | | - 数据字典 |
| | | /api-wms/v1/dict/save: |
| | | post: |
| | | parameters: |
| | | - description: 参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.SaveMiniDict' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 批量更新迷你字典(会删除原数据) |
| | | tags: |
| | | - 数据字典 |
| | | /api-wms/v1/forms/doMonthStats: |
| | | post: |
| | | parameters: |
| | |
| | | summary: 编辑作业类型 |
| | | tags: |
| | | - 业务类型 |
| | | /api-wms/v1/organize/department: |
| | | get: |
| | | parameters: |
| | | - description: 页码 |
| | | in: query |
| | | name: page |
| | | type: integer |
| | | - description: 每页大小 |
| | | in: query |
| | | name: pageSize |
| | | type: integer |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | allOf: |
| | | - $ref: '#/definitions/util.ResponseList' |
| | | - properties: |
| | | data: |
| | | items: |
| | | $ref: '#/definitions/models.Department' |
| | | type: array |
| | | type: object |
| | | summary: 查询部门信息列表 |
| | | tags: |
| | | - 部门信息 |
| | | post: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.AddDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 添加部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | /api-wms/v1/organize/department/{id}: |
| | | delete: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.UpdateDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 编辑部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | put: |
| | | parameters: |
| | | - description: 部门信息信息 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.UpdateDepartment' |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 编辑部门信息 |
| | | tags: |
| | | - 部门信息 |
| | | /api-wms/v1/product/addDisuse: |
| | | post: |
| | | parameters: |