1
This commit is contained in:
@@ -768,6 +768,24 @@ func (c *LaKaLaController) UploadImg() {
|
||||
})
|
||||
}
|
||||
|
||||
// UploadAttachmentImg 图片上传
|
||||
// @Title 图片上传
|
||||
// @Description 图片上传
|
||||
// @Param token header string true "认证token"
|
||||
// @Param orgCode formData string true "机构代码"
|
||||
// @Param attType formData string true "附件类型"
|
||||
// @Param attExtName formData string true "附件扩展名称"
|
||||
// @Param attContext formData string true "附件内容 "
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /UploadAttachmentImg [post]
|
||||
func (c *LaKaLaController) UploadAttachmentImg() {
|
||||
c.callUploadAttachmentImg(func(params *tLakalaUploadAttachmentImgParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = lakalaServer.UploadAttachmentImg(params.OrgCode, params.AttType, params.AttExtName, params.AttContext)
|
||||
return
|
||||
})
|
||||
}
|
||||
|
||||
// QueryIncoming 进件查询
|
||||
// @Title 进件查询
|
||||
// @Description 进件查询
|
||||
|
||||
Reference in New Issue
Block a user