123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package v1
- import (
- "fmt"
- "gin-vue-admin/global/response"
- "gin-vue-admin/model"
- "gin-vue-admin/model/request"
- resp "gin-vue-admin/model/response"
- "gin-vue-admin/service"
- "github.com/gin-gonic/gin"
- )
- // @Tags SysApi
- // @Summary 创建客户
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.ExaCustomer true "创建客户"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/createExaCustomer [post]
- func CreateExaCustomer(c *gin.Context) {
- var cu model.ExaCustomer
- _ = c.ShouldBindJSON(&cu)
- claims, _ := c.Get("claims")
- waitUse := claims.(*request.CustomClaims)
- cu.SysUserID = waitUse.ID
- cu.SysUserAuthorityID = waitUse.AuthorityId
- err := service.CreateExaCustomer(cu)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败:%v", err), c)
- } else {
- response.OkWithMessage("创建成功", c)
- }
- }
- // @Tags SysApi
- // @Summary 删除客户
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.ExaCustomer true "删除客户"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/deleteExaCustomer [post]
- func DeleteExaCustomer(c *gin.Context) {
- var cu model.ExaCustomer
- _ = c.ShouldBindJSON(&cu)
- err := service.DeleteExaCustomer(cu)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("删除失败:%v", err), c)
- } else {
- response.OkWithMessage("删除成功", c)
- }
- }
- // @Tags SysApi
- // @Summary 更新客户信息
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.ExaCustomer true "创建客户"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/updateExaCustomer [post]
- func UpdateExaCustomer(c *gin.Context) {
- var cu model.ExaCustomer
- _ = c.ShouldBindJSON(&cu)
- err := service.UpdateExaCustomer(&cu)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("更新失败:%v", err), c)
- } else {
- response.OkWithMessage("更新成功", c)
- }
- }
- // @Tags SysApi
- // @Summary 获取单一客户信息
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.ExaCustomer true "获取单一客户信息"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/getExaCustomer [post]
- func GetExaCustomer(c *gin.Context) {
- var cu model.ExaCustomer
- _ = c.ShouldBindJSON(&cu)
- err, customer := service.GetExaCustomer(cu.ID)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("获取失败:%v", err), c)
- } else {
- response.OkWithData(resp.ExaCustomerResponse{Customer: customer}, c)
- }
- }
- // @Tags SysApi
- // @Summary 获取权限客户列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.PageInfo true "获取权限客户列表"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /customer/getExaCustomerList [post]
- func GetExaCustomerList(c *gin.Context) {
- claims, _ := c.Get("claims")
- waitUse := claims.(*request.CustomClaims)
- var pageInfo request.PageInfo
- _ = c.ShouldBindJSON(&pageInfo)
- err, customerList, total := service.GetCustomerInfoList(waitUse.AuthorityId, pageInfo)
- if err != nil {
- response.FailWithMessage(fmt.Sprintf("创建失败:%v", err), c)
- } else {
- response.OkWithData(resp.PageResult{
- List: customerList,
- Total: total,
- Page: pageInfo.Page,
- PageSize: pageInfo.PageSize,
- }, c)
- }
- }
|