| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package account
- import (
- "mtp20access/global"
- "mtp20access/model/account/request"
- "mtp20access/model/common/response"
- signService "mtp20access/service/sign"
- "mtp20access/utils"
- "github.com/gin-gonic/gin"
- "go.uber.org/zap"
- )
- // AddUser 查询用户电子签记录表
- // @Summary 查询用户电子签记录表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Success 200 {object} response.Response{data=[]account.Useresignrecord,msg=string} "出参"
- // @Router /Account/QueryUserESignRecord [get]
- // @Tags 账户服务
- func QueryUserESignRecord(c *gin.Context) {
- g := utils.GinUtils{C: c}
- // 获取请求账号信息
- claims := g.GetClaims()
- if g.Err != nil {
- return
- }
- if rsp, err := signService.QueryUserESignRecord(claims.UserID); err == nil {
- response.OkWithDetailed(rsp, "查询成功", g.C)
- } else {
- global.M2A_LOG.Error(err.Error(), zap.Error(err))
- response.FailWithMessage(err.Error(), c)
- }
- }
- // AddUser 实名认证添加用户
- // @Summary 实名认证添加用户
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body request.AddUserReq true "入参"
- // @Success 200 {object} response.Response{msg=string} "出参"
- // @Router /Account/AddUser [post]
- // @Tags 账户服务
- func AddUser(c *gin.Context) {
- g := utils.GinUtils{C: c}
- r := request.AddUserReq{}
- g.BindJsonReq(&r)
- if g.Err != nil {
- return
- }
- // 获取请求账号信息
- claims := g.GetClaims()
- if g.Err != nil {
- return
- }
- if err := signService.AddUser(r, claims.UserID); err == nil {
- response.Ok(g.C)
- } else {
- global.M2A_LOG.Error(err.Error(), zap.Error(err))
- response.FailWithMessage(err.Error(), c)
- }
- }
|