fix
wangpengfei
2023-08-28 28fb78f3fa0e4f629ff7d49f8305f5120cdafd15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package test
 
import (
    "github.com/gin-gonic/gin"
    "go.uber.org/zap"
    "srm/global"
    "srm/model/common/request"
    "srm/model/common/response"
    "srm/model/test"
    testReq "srm/model/test/request"
    "srm/service"
)
 
type IndustryApi struct {
}
 
var iService = service.ServiceGroupApp.TestServiceGroup.IndustryService
 
// CreateIndustry 创建Industry
// @Tags Industry
// @Summary 创建Industry
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body test.Industry true "创建Industry"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /i/createIndustry [post]
func (iApi *IndustryApi) CreateIndustry(c *gin.Context) {
    var i test.Industry
    err := c.ShouldBindJSON(&i)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    if err := iService.CreateIndustry(&i); err != nil {
        global.GVA_LOG.Error("创建失败!", zap.Error(err))
        response.FailWithMessage("创建失败", c)
    } else {
        response.OkWithMessage("创建成功", c)
    }
}
 
// DeleteIndustry 删除Industry
// @Tags Industry
// @Summary 删除Industry
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body test.Industry true "删除Industry"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /i/deleteIndustry [delete]
func (iApi *IndustryApi) DeleteIndustry(c *gin.Context) {
    var i test.Industry
    err := c.ShouldBindJSON(&i)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    if err := iService.DeleteIndustry(i); err != nil {
        global.GVA_LOG.Error("删除失败!", zap.Error(err))
        response.FailWithMessage("删除失败", c)
    } else {
        response.OkWithMessage("删除成功", c)
    }
}
 
// DeleteIndustryByIds 批量删除Industry
// @Tags Industry
// @Summary 批量删除Industry
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body request.IdsReq true "批量删除Industry"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"批量删除成功"}"
// @Router /i/deleteIndustryByIds [delete]
func (iApi *IndustryApi) DeleteIndustryByIds(c *gin.Context) {
    var IDS request.IdsReq
    err := c.ShouldBindJSON(&IDS)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    if err := iService.DeleteIndustryByIds(IDS); err != nil {
        global.GVA_LOG.Error("批量删除失败!", zap.Error(err))
        response.FailWithMessage("批量删除失败", c)
    } else {
        response.OkWithMessage("批量删除成功", c)
    }
}
 
// UpdateIndustry 更新Industry
// @Tags Industry
// @Summary 更新Industry
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body request.IndustryList true "更新Industry"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
// @Router /i/updateIndustry [put]
func (iApi *IndustryApi) UpdateIndustry(c *gin.Context) {
    var i testReq.IndustryList
    err := c.ShouldBindJSON(&i)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
 
    // 删除所有相关的行业
    if err := iService.DeleteAll(); err != nil {
        global.GVA_LOG.Error("更新失败!", zap.Error(err))
        response.FailWithMessage("保存失败", c)
        return
    }
 
    for _, industry := range i.Industries {
        if err := iService.CreateIndustry(&industry); err != nil {
            global.GVA_LOG.Error("更新失败!", zap.Error(err))
            response.FailWithMessage("保存失败", c)
            return
        }
    }
 
    response.OkWithMessage("更新成功", c)
}
 
// FindIndustry 用id查询Industry
// @Tags Industry
// @Summary 用id查询Industry
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data query test.Industry true "用id查询Industry"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
// @Router /i/findIndustry [get]
func (iApi *IndustryApi) FindIndustry(c *gin.Context) {
    var i test.Industry
    err := c.ShouldBindQuery(&i)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    if rei, err := iService.GetIndustry(i.ID); err != nil {
        global.GVA_LOG.Error("查询失败!", zap.Error(err))
        response.FailWithMessage("查询失败", c)
    } else {
        response.OkWithData(gin.H{"rei": rei}, c)
    }
}
 
// GetIndustryList 分页获取Industry列表
// @Tags Industry
// @Summary 分页获取Industry列表
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data query testReq.IndustrySearch true "分页获取Industry列表"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /i/getIndustryList [get]
func (iApi *IndustryApi) GetIndustryList(c *gin.Context) {
    var pageInfo testReq.IndustrySearch
    err := c.ShouldBindQuery(&pageInfo)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    if list, total, err := iService.GetIndustryInfoList(pageInfo); err != nil {
        global.GVA_LOG.Error("获取失败!", zap.Error(err))
        response.FailWithMessage("获取失败", c)
    } else {
        response.OkWithDetailed(response.PageResult{
            List:     list,
            Total:    total,
            Page:     pageInfo.Page,
            PageSize: pageInfo.PageSize,
        }, "获取成功", c)
    }
}