Commit 070539c4f07dabc41ebd1305baf787cf3ff27b6a

Authored by 房远帅
1 parent 19c2f9a2

楚江ERP:客户资信历史记录去除权限

... ... @@ -60,7 +60,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
60 60 * 查询列表
61 61 */
62 62 @ApiOperation("查询列表")
63   - @HasPermission({"customerCreditHistory:customercredithistory:query"})
64 63 @GetMapping("/query")
65 64 public InvokeResult<PageResult<GetCustomerCreditHistoryBo>> query(@Valid QueryCustomerCreditHistoryVo vo) {
66 65
... ... @@ -80,7 +79,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
80 79 * 查询列表
81 80 */
82 81 @ApiOperation("查询列表")
83   - @HasPermission({"customerCreditHistory:customercredithistory:query"})
84 82 @GetMapping("/customerCreditHistoryList")
85 83 public InvokeResult<List<GetCustomerCreditHistoryBo>> customerCreditHistoryList(@Valid QueryCustomerCreditHistoryVo vo) {
86 84 vo.setType("PART");
... ... @@ -126,7 +124,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
126 124 * 查询列表
127 125 */
128 126 @ApiOperation("查询列表")
129   - @HasPermission({"customerCreditHistory:customercredithistory:query"})
130 127 @GetMapping("/examineCustomerCreditHistoryList")
131 128 public InvokeResult<List<GetCustomerCreditHistoryBo>> examineCustomerCreditHistoryList(@Valid QueryCustomerCreditHistoryVo vo) {
132 129 vo.setType("PART");
... ... @@ -156,7 +153,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
156 153 */
157 154 @ApiOperation("根据ID查询变更记录")
158 155 @ApiImplicitParam(value = "id", name = "id", paramType = "query", required = true)
159   - @HasPermission({"customerCreditHistory:customercredithistory:query"})
160 156 @GetMapping("/getById")
161 157 public InvokeResult<ChangeData> get(@NotBlank(message = "id不能为空!") String id) {
162 158
... ... @@ -204,7 +200,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
204 200 * 新增
205 201 */
206 202 @ApiOperation("新增")
207   - @HasPermission({"customerCreditHistory:customercredithistory:add"})
208 203 @PostMapping
209 204 public InvokeResult<Void> create(@Valid CreateCustomerCreditHistoryVo vo) {
210 205
... ... @@ -218,7 +213,6 @@ public class CustomerCreditHistoryController extends DefaultBaseController {
218 213 */
219 214 @ApiOperation("根据ID删除")
220 215 @ApiImplicitParam(value = "id", name = "id", paramType = "query", required = true)
221   - @HasPermission({"customerCreditHistory:customercredithistory:delete"})
222 216 @DeleteMapping
223 217 public InvokeResult<Void> deleteById(@NotBlank(message = "id不能为空!") String id) {
224 218
... ...