@@ -12,24 +12,24 @@ import (
type FlowHistoryHandler struct {
type FlowHistoryHandler struct {
}
}
// @Summary 流程历史列表
// @Summary 流程历史列表
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Param Token header string true "token"
// @Param Token header string true "token"
// @Param PageNo query int true "页码"
// @Param PageNo query int true "页码"
// @Param PageSize query int true "每页数量"
// @Param PageSize query int true "每页数量"
// @Param applyId query int false "申请id"
// @Param applyId query int false "申请id"
// @Param templateId query int false "模板id"
// @Param templateId query int false "模板id"
// @Param applyUserId query int false "申请人id"
// @Param applyUserId query int false "申请人id"
// @Param applyUserNickname query string false "申请人昵称"
// @Param applyUserNickname query string false "申请人昵称"
// @Param approverId query int false "审批人id"
// @Param approverId query int false "审批人id"
// @Param approverNickname query string false "审批用户昵称"
// @Param approverNickname query string false "审批用户昵称"
// @Param nodeId query string false "节点"
// @Param nodeId query string false "节点"
// @Param formValue query string false "表单值"
// @Param formValue query string false "表单值"
// @Param passStatus query int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passStatus query int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passRemark query string false "通过备注"
// @Param passRemark query string false "通过备注"
// @Success 200 {object} response.Response{data=response.PageResp{lists=[]FlowHistoryResp}} "成功"
// @Success 200 {object} response.Response{data=response.PageResp{lists=[]FlowHistoryResp}} "成功"
// @Router /api/admin/flow/flow_history/list [get]
// @Router /api/admin/flow/flow_history/list [get]
func ( hd FlowHistoryHandler ) List ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) List ( c * gin . Context ) {
var page request . PageReq
var page request . PageReq
var listReq = FlowHistoryListReq {
var listReq = FlowHistoryListReq {
@@ -45,11 +45,11 @@ func (hd FlowHistoryHandler) List(c *gin.Context) {
response . CheckAndRespWithData ( c , res , err )
response . CheckAndRespWithData ( c , res , err )
}
}
// @Summary 流程历史列表-所有
// @Summary 流程历史列表-所有
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Success 200 {object} response.Response{data=FlowHistoryResp} "成功"
// @Success 200 {object} response.Response{data=FlowHistoryResp} "成功"
// @Router /api/admin/flow/flow_history/listAll [get]
// @Router /api/admin/flow/flow_history/listAll [get]
func ( hd FlowHistoryHandler ) ListAll ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) ListAll ( c * gin . Context ) {
var listReq FlowHistoryListReq
var listReq FlowHistoryListReq
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyQuery ( c , & listReq ) ) {
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyQuery ( c , & listReq ) ) {
@@ -59,13 +59,13 @@ func (hd FlowHistoryHandler) ListAll(c *gin.Context) {
response . CheckAndRespWithData ( c , res , err )
response . CheckAndRespWithData ( c , res , err )
}
}
// @Summary 流程历史详情
// @Summary 流程历史详情
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Param Token header string true "token"
// @Param Token header string true "token"
// @Param id query int false "历史id"
// @Param id query int false "历史id"
// @Success 200 {object} response.Response{data=FlowHistoryResp} "成功"
// @Success 200 {object} response.Response{data=FlowHistoryResp} "成功"
// @Router /api/admin/flow/flow_history/detail [get]
// @Router /api/admin/flow/flow_history/detail [get]
func ( hd FlowHistoryHandler ) Detail ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Detail ( c * gin . Context ) {
var detailReq FlowHistoryDetailReq
var detailReq FlowHistoryDetailReq
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyQuery ( c , & detailReq ) ) {
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyQuery ( c , & detailReq ) ) {
@@ -75,22 +75,22 @@ func (hd FlowHistoryHandler) Detail(c *gin.Context) {
response . CheckAndRespWithData ( c , res , err )
response . CheckAndRespWithData ( c , res , err )
}
}
// @Summary 流程历史新增
// @Summary 流程历史新增
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Param Token header string true "token"
// @Param Token header string true "token"
// @Param applyId body int false "申请id"
// @Param applyId body int false "申请id"
// @Param templateId body int false "模板id"
// @Param templateId body int false "模板id"
// @Param applyUserId body int false "申请人id"
// @Param applyUserId body int false "申请人id"
// @Param applyUserNickname body string false "申请人昵称"
// @Param applyUserNickname body string false "申请人昵称"
// @Param approverId body int false "审批人id"
// @Param approverId body int false "审批人id"
// @Param approverNickname body string false "审批用户昵称"
// @Param approverNickname body string false "审批用户昵称"
// @Param nodeId body string false "节点"
// @Param nodeId body string false "节点"
// @Param formValue body string false "表单值"
// @Param formValue body string false "表单值"
// @Param passStatus body int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passStatus body int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passRemark body string false "通过备注"
// @Param passRemark body string false "通过备注"
// @Success 200 {object} response.Response "成功"
// @Success 200 {object} response.Response "成功"
// @Router /api/admin/flow/flow_history/add [post]
// @Router /api/admin/flow/flow_history/add [post]
func ( hd FlowHistoryHandler ) Add ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Add ( c * gin . Context ) {
var addReq FlowHistoryAddReq
var addReq FlowHistoryAddReq
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & addReq ) ) {
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & addReq ) ) {
@@ -99,23 +99,23 @@ func (hd FlowHistoryHandler) Add(c *gin.Context) {
response . CheckAndResp ( c , Service . Add ( addReq ) )
response . CheckAndResp ( c , Service . Add ( addReq ) )
}
}
// @Summary 流程历史编辑
// @Summary 流程历史编辑
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Param Token header string true "token"
// @Param Token header string true "token"
// @Param id body int false "历史id"
// @Param id body int false "历史id"
// @Param applyId body int false "申请id"
// @Param applyId body int false "申请id"
// @Param templateId body int false "模板id"
// @Param templateId body int false "模板id"
// @Param applyUserId body int false "申请人id"
// @Param applyUserId body int false "申请人id"
// @Param applyUserNickname body string false "申请人昵称"
// @Param applyUserNickname body string false "申请人昵称"
// @Param approverId body int false "审批人id"
// @Param approverId body int false "审批人id"
// @Param approverNickname body string false "审批用户昵称"
// @Param approverNickname body string false "审批用户昵称"
// @Param nodeId body string false "节点"
// @Param nodeId body string false "节点"
// @Param formValue body string false "表单值"
// @Param formValue body string false "表单值"
// @Param passStatus body int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passStatus body int false "通过状态: 0待处理, 1通过, 2拒绝"
// @Param passRemark body string false "通过备注"
// @Param passRemark body string false "通过备注"
// @Success 200 {object} response.Response "成功"
// @Success 200 {object} response.Response "成功"
// @Router /api/admin/flow/flow_history/edit [post]
// @Router /api/admin/flow/flow_history/edit [post]
func ( hd FlowHistoryHandler ) Edit ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Edit ( c * gin . Context ) {
var editReq FlowHistoryEditReq
var editReq FlowHistoryEditReq
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & editReq ) ) {
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & editReq ) ) {
@@ -124,13 +124,13 @@ func (hd FlowHistoryHandler) Edit(c *gin.Context) {
response . CheckAndResp ( c , Service . Edit ( editReq ) )
response . CheckAndResp ( c , Service . Edit ( editReq ) )
}
}
// @Summary 流程历史删除
// @Summary 流程历史删除
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
// @Produce json
// @Produce json
// @Param Token header string true "token"
// @Param Token header string true "token"
// @Param id body int false "历史id"
// @Param id body int false "历史id"
// @Success 200 {object} response.Response "成功"
// @Success 200 {object} response.Response "成功"
// @Router /api/admin/flow/flow_history/del [post]
// @Router /api/admin/flow/flow_history/del [post]
func ( hd FlowHistoryHandler ) Del ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Del ( c * gin . Context ) {
var delReq FlowHistoryDelReq
var delReq FlowHistoryDelReq
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & delReq ) ) {
if response . IsFailWithResp ( c , util . VerifyUtil . VerifyBody ( c , & delReq ) ) {
@@ -140,7 +140,7 @@ func (hd FlowHistoryHandler) Del(c *gin.Context) {
}
}
// 提交申请,通过审批
// 提交申请,通过审批
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
//
//
// @Router /api/admin/flow/flow_apply/pass [post]
// @Router /api/admin/flow/flow_apply/pass [post]
func ( hd FlowHistoryHandler ) Pass ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Pass ( c * gin . Context ) {
@@ -154,7 +154,7 @@ func (hd FlowHistoryHandler) Pass(c *gin.Context) {
}
}
// 拒绝审批
// 拒绝审批
// @Tags flow_history-流程历史
// @Tags flow_history-流程历史
//
//
// @Router /api/admin/flow/flow_apply/back [post]
// @Router /api/admin/flow/flow_apply/back [post]
func ( hd FlowHistoryHandler ) Back ( c * gin . Context ) {
func ( hd FlowHistoryHandler ) Back ( c * gin . Context ) {