Commit 4ec04cacfc270ece918233f27a21dada9c585fdb

Authored by 陈威
1 parent 428bc0da
Exists in dev

update

Showing 37 changed files with 123 additions and 139 deletions   Show diff stats
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McBasicCmtyController.java
... ... @@ -34,7 +34,7 @@ import java.util.stream.Collectors;
34 34 /**
35 35 * 基础数据-户数Controller
36 36 *
37   - * @author lidwd
  37 + * @author cw
38 38 * @date 2024-05-22
39 39 */
40 40 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McBasicMoneyController.java
... ... @@ -32,7 +32,7 @@ import java.util.stream.Collectors;
32 32 /**
33 33 * 基础数据-金额Controller
34 34 *
35   - * @author lidwd
  35 + * @author cw
36 36 * @date 2024-05-23
37 37 */
38 38 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McConstructionController.java
... ... @@ -31,7 +31,7 @@ import com.chinagas.common.core.web.page.TableDataInfo;
31 31 /**
32 32 * 施工维护Controller
33 33 *
34   - * @author lidwd
  34 + * @author cw
35 35 * @date 2024-05-30
36 36 */
37 37 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McIgnitionController.java
... ... @@ -24,7 +24,7 @@ import java.util.Map;
24 24 /**
25 25 * 点火维护Controller
26 26 *
27   - * @author lidwd
  27 + * @author cw
28 28 * @date 2024-05-22
29 29 */
30 30 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McOperationLogController.java
... ... @@ -24,7 +24,7 @@ import java.util.Map;
24 24 /**
25 25 * 市场化收费相关记录Controller
26 26 *
27   - * @author lidwd
  27 + * @author cw
28 28 * @date 2024-05-30
29 29 */
30 30 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McVisitController.java
... ... @@ -24,7 +24,7 @@ import java.util.Map;
24 24 /**
25 25 * 拜访工单Controller
26 26 *
27   - * @author lidwd
  27 + * @author cw
28 28 * @date 2024-05-30
29 29 */
30 30 @RestController
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/controller/McVisitUserController.java
1 1 package com.chinagas.modules.schsf.controller;
2   -import java.net.URLEncoder;
3   -import java.util.List;
4   -import java.io.IOException;
5   -import java.util.Map;
6   -import javax.servlet.http.HttpServletResponse;
7 2  
8   -import com.alibaba.excel.EasyExcel;
9   -import com.alibaba.excel.util.MapUtils;
10   -import com.alibaba.fastjson2.JSON;
11   -import com.chinagas.common.core.domain.AjaxResult;
  3 +import com.chinagas.common.core.web.controller.BaseController;
  4 +import com.chinagas.modules.schsf.service.IMcVisitUserService;
12 5 import org.springframework.beans.factory.annotation.Autowired;
13   -import org.springframework.web.bind.annotation.GetMapping;
14   -import org.springframework.web.bind.annotation.PostMapping;
15   -import org.springframework.web.bind.annotation.PutMapping;
16   -import org.springframework.web.bind.annotation.DeleteMapping;
17   -import org.springframework.web.bind.annotation.PathVariable;
18   -import org.springframework.web.bind.annotation.RequestBody;
19 6 import org.springframework.web.bind.annotation.RequestMapping;
20 7 import org.springframework.web.bind.annotation.RestController;
21   -import com.chinagas.common.log.annotation.Log;
22   -import com.chinagas.common.log.enums.BusinessType;
23   -import com.chinagas.common.security.annotation.RequirePermission;
24   -import com.chinagas.modules.schsf.domain.McVisitUser;
25   -import com.chinagas.modules.schsf.service.IMcVisitUserService;
26   -import com.chinagas.common.core.web.controller.BaseController;
27   -
28   -import com.chinagas.common.core.web.page.TableDataInfo;
29 8  
30 9  
31 10 /**
32 11 * 百万用户信息(被拜访的用户)Controller
33 12 *
34   - * @author lidwd
  13 + * @author cw
35 14 * @date 2024-05-30
36 15 */
37 16 @RestController
... ... @@ -41,88 +20,93 @@ public class McVisitUserController extends BaseController
41 20 @Autowired
42 21 private IMcVisitUserService mcVisitUserService;
43 22  
44   - /**
45   - * 查询百万用户信息(被拜访的用户)列表
46   - */
47   - @RequirePermission("schsf:mcVisitUser:list")
48   - @GetMapping("/list")
49   - public TableDataInfo list(McVisitUser mcVisitUser)
50   - {
51   - startPage();
52   - List<McVisitUser> list = mcVisitUserService.selectMcVisitUserList(mcVisitUser);
53   - return getDataTable(list);
54   - }
55 23  
56 24  
57   - /**
58   - * 导出百万用户信息(被拜访的用户)列表
59   - */
60   - @RequirePermission("schsf:mcVisitUser:export")
61   - @Log(title = "百万用户信息(被拜访的用户)",businessType = BusinessType.EXPORT)
62   - @PostMapping("/export")
63   - public void export(HttpServletResponse response,McVisitUser mcVisitUser) throws IOException {
64   - List<McVisitUser> list = mcVisitUserService.selectMcVisitUserList(mcVisitUser);
65   - try {
66   - response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
67   - response.setCharacterEncoding("utf-8");
68   - // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
69   - String fileName = URLEncoder.encode("百万用户信息(被拜访的用户)", "UTF-8").replaceAll("\\+", "%20");
70   - response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");
71   - // 这里需要设置不关闭流
72   - EasyExcel.write(response.getOutputStream(), McVisitUser.class).autoCloseStream(Boolean.FALSE).sheet("客户信息列表")
73   - .doWrite(list);
74   - } catch (Exception e) {
75   - // 重置response
76   - e.printStackTrace();
77   - response.reset();
78   - response.setContentType("application/json");
79   - response.setCharacterEncoding("utf-8");
80   - Map<String, String> map = MapUtils.newHashMap();
81   - map.put("status", "failure");
82   - map.put("message", "下载文件失败" + e.getMessage());
83   - response.getWriter().println(JSON.toJSONString(map));
84   - }
85   - }
86   - /**
87   - * 获取百万用户信息(被拜访的用户)详细信息
88   - */
89   - @RequirePermission("schsf:mcVisitUser:query")
90   - @GetMapping(value = "/{id}")
91   - public AjaxResult getInfo(@PathVariable("id") Long id)
92   - {
93   - return AjaxResult.success(mcVisitUserService.selectMcVisitUserById(id));
94   - }
95 25  
96   - /**
97   - * 新增百万用户信息(被拜访的用户)
98   - */
99   - @RequirePermission("schsf:mcVisitUser:add")
100   - @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.INSERT)
101   - @PostMapping
102   - public AjaxResult add(@RequestBody McVisitUser mcVisitUser)
103   - {
104   - return toAjax(mcVisitUserService.insertMcVisitUser(mcVisitUser));
105   - }
106 26  
107   - /**
108   - * 修改百万用户信息(被拜访的用户)
109   - */
110   - @RequirePermission("schsf:mcVisitUser:edit")
111   - @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.UPDATE)
112   - @PutMapping
113   - public AjaxResult edit(@RequestBody McVisitUser mcVisitUser)
114   - {
115   - return toAjax(mcVisitUserService.updateMcVisitUser(mcVisitUser));
116   - }
117 27  
118   - /**
119   - * 删除百万用户信息(被拜访的用户)
120   - */
121   - @RequirePermission("schsf:mcVisitUser:remove")
122   - @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.DELETE)
123   - @DeleteMapping("/{ids}")
124   - public AjaxResult remove(@PathVariable Long[] ids)
125   - {
126   - return toAjax(mcVisitUserService.deleteMcVisitUserByIds(ids));
127   - }
  28 +// /**
  29 +// * 查询百万用户信息(被拜访的用户)列表
  30 +// */
  31 +// @RequirePermission("schsf:mcVisitUser:list")
  32 +// @GetMapping("/list")
  33 +// public TableDataInfo list(McVisitUser mcVisitUser)
  34 +// {
  35 +// startPage();
  36 +// List<McVisitUser> list = mcVisitUserService.selectMcVisitUserList(mcVisitUser);
  37 +// return getDataTable(list);
  38 +// }
  39 +//
  40 +//
  41 +// /**
  42 +// * 导出百万用户信息(被拜访的用户)列表
  43 +// */
  44 +// @RequirePermission("schsf:mcVisitUser:export")
  45 +// @Log(title = "百万用户信息(被拜访的用户)",businessType = BusinessType.EXPORT)
  46 +// @PostMapping("/export")
  47 +// public void export(HttpServletResponse response,McVisitUser mcVisitUser) throws IOException {
  48 +// List<McVisitUser> list = mcVisitUserService.selectMcVisitUserList(mcVisitUser);
  49 +// try {
  50 +// response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
  51 +// response.setCharacterEncoding("utf-8");
  52 +// // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
  53 +// String fileName = URLEncoder.encode("百万用户信息(被拜访的用户)", "UTF-8").replaceAll("\\+", "%20");
  54 +// response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");
  55 +// // 这里需要设置不关闭流
  56 +// EasyExcel.write(response.getOutputStream(), McVisitUser.class).autoCloseStream(Boolean.FALSE).sheet("客户信息列表")
  57 +// .doWrite(list);
  58 +// } catch (Exception e) {
  59 +// // 重置response
  60 +// e.printStackTrace();
  61 +// response.reset();
  62 +// response.setContentType("application/json");
  63 +// response.setCharacterEncoding("utf-8");
  64 +// Map<String, String> map = MapUtils.newHashMap();
  65 +// map.put("status", "failure");
  66 +// map.put("message", "下载文件失败" + e.getMessage());
  67 +// response.getWriter().println(JSON.toJSONString(map));
  68 +// }
  69 +// }
  70 +// /**
  71 +// * 获取百万用户信息(被拜访的用户)详细信息
  72 +// */
  73 +// @RequirePermission("schsf:mcVisitUser:query")
  74 +// @GetMapping(value = "/{id}")
  75 +// public AjaxResult getInfo(@PathVariable("id") Long id)
  76 +// {
  77 +// return AjaxResult.success(mcVisitUserService.selectMcVisitUserById(id));
  78 +// }
  79 +//
  80 +// /**
  81 +// * 新增百万用户信息(被拜访的用户)
  82 +// */
  83 +// @RequirePermission("schsf:mcVisitUser:add")
  84 +// @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.INSERT)
  85 +// @PostMapping
  86 +// public AjaxResult add(@RequestBody McVisitUser mcVisitUser)
  87 +// {
  88 +// return toAjax(mcVisitUserService.insertMcVisitUser(mcVisitUser));
  89 +// }
  90 +//
  91 +// /**
  92 +// * 修改百万用户信息(被拜访的用户)
  93 +// */
  94 +// @RequirePermission("schsf:mcVisitUser:edit")
  95 +// @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.UPDATE)
  96 +// @PutMapping
  97 +// public AjaxResult edit(@RequestBody McVisitUser mcVisitUser)
  98 +// {
  99 +// return toAjax(mcVisitUserService.updateMcVisitUser(mcVisitUser));
  100 +// }
  101 +//
  102 +// /**
  103 +// * 删除百万用户信息(被拜访的用户)
  104 +// */
  105 +// @RequirePermission("schsf:mcVisitUser:remove")
  106 +// @Log(title = "百万用户信息(被拜访的用户)", businessType = BusinessType.DELETE)
  107 +// @DeleteMapping("/{ids}")
  108 +// public AjaxResult remove(@PathVariable Long[] ids)
  109 +// {
  110 +// return toAjax(mcVisitUserService.deleteMcVisitUserByIds(ids));
  111 +// }
128 112 }
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McBasicCmty.java
... ... @@ -9,7 +9,7 @@ import com.chinagas.common.core.web.domain.BaseEntity;
9 9 /**
10 10 * 基础数据-户数对象 mc_basic_cmty
11 11 *
12   - * @author lidwd
  12 + * @author cw
13 13 * @date 2024-05-22
14 14 */
15 15 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McBasicMoney.java
... ... @@ -11,7 +11,7 @@ import java.math.BigDecimal;
11 11 /**
12 12 * 基础数据-金额对象 mc_basic_money
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-23
16 16 */
17 17 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McConstruction.java
... ... @@ -11,7 +11,7 @@ import com.chinagas.common.core.web.domain.BaseEntity;
11 11 /**
12 12 * 施工维护对象 mc_construction
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-30
16 16 */
17 17 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McIgnition.java
... ... @@ -11,7 +11,7 @@ import java.util.Date;
11 11 /**
12 12 * 点火维护对象 mc_ignition
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-22
16 16 */
17 17 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McOperationLog.java
... ... @@ -11,7 +11,7 @@ import com.chinagas.common.core.web.domain.BaseEntity;
11 11 /**
12 12 * 市场化收费相关记录对象 mc_operation_log
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-30
16 16 */
17 17 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McVisit.java
... ... @@ -12,7 +12,7 @@ import java.util.Date;
12 12 /**
13 13 * 拜访工单对象 mc_visit
14 14 *
15   - * @author lidwd
  15 + * @author cw
16 16 * @date 2024-05-30
17 17 */
18 18 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/domain/McVisitUser.java
... ... @@ -9,7 +9,7 @@ import com.chinagas.common.core.web.domain.BaseEntity;
9 9 /**
10 10 * 百万用户信息(被拜访的用户)对象 mc_visit_user
11 11 *
12   - * @author lidwd
  12 + * @author cw
13 13 * @date 2024-05-30
14 14 */
15 15 @ExcelIgnoreUnannotated
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McBasicCmtyMapper.java
... ... @@ -9,7 +9,7 @@ import java.util.List;
9 9 /**
10 10 * 基础数据-户数Mapper接口
11 11 *
12   - * @author lidwd
  12 + * @author cw
13 13 * @date 2024-05-22
14 14 */
15 15 public interface McBasicCmtyMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McBasicMoneyMapper.java
... ... @@ -8,7 +8,7 @@ import java.util.List;
8 8 /**
9 9 * 基础数据-金额Mapper接口
10 10 *
11   - * @author lidwd
  11 + * @author cw
12 12 * @date 2024-05-23
13 13 */
14 14 public interface McBasicMoneyMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McConstructionMapper.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McConstruction;
6 6 /**
7 7 * 施工维护Mapper接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface McConstructionMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McFileMapper.java
... ... @@ -7,7 +7,7 @@ import java.util.List;
7 7 /**
8 8 * 市场化收费相关文件Mapper接口
9 9 *
10   - * @author lidwd
  10 + * @author cw
11 11 * @date 2024-05-22
12 12 */
13 13 public interface McFileMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McIgnitionMapper.java
... ... @@ -7,7 +7,7 @@ import java.util.List;
7 7 /**
8 8 * 点火维护Mapper接口
9 9 *
10   - * @author lidwd
  10 + * @author cw
11 11 * @date 2024-05-22
12 12 */
13 13 public interface McIgnitionMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McOperationLogMapper.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McOperationLog;
6 6 /**
7 7 * 市场化收费相关记录Mapper接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface McOperationLogMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McVisitMapper.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McVisit;
6 6 /**
7 7 * 拜访工单Mapper接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface McVisitMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/mapper/McVisitUserMapper.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McVisitUser;
6 6 /**
7 7 * 百万用户信息(被拜访的用户)Mapper接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface McVisitUserMapper
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcBasicCmtyService.java
... ... @@ -9,7 +9,7 @@ import java.util.List;
9 9 /**
10 10 * 基础数据-户数Service接口
11 11 *
12   - * @author lidwd
  12 + * @author cw
13 13 * @date 2024-05-22
14 14 */
15 15 public interface IMcBasicCmtyService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcBasicMoneyService.java
... ... @@ -8,7 +8,7 @@ import java.util.List;
8 8 /**
9 9 * 基础数据-金额Service接口
10 10 *
11   - * @author lidwd
  11 + * @author cw
12 12 * @date 2024-05-23
13 13 */
14 14 public interface IMcBasicMoneyService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcConstructionService.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McConstruction;
6 6 /**
7 7 * 施工维护Service接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface IMcConstructionService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcIgnitionService.java
... ... @@ -7,7 +7,7 @@ import java.util.List;
7 7 /**
8 8 * 点火维护Service接口
9 9 *
10   - * @author lidwd
  10 + * @author cw
11 11 * @date 2024-05-22
12 12 */
13 13 public interface IMcIgnitionService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcOperationLogService.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McOperationLog;
6 6 /**
7 7 * 市场化收费相关记录Service接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface IMcOperationLogService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcVisitService.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McVisit;
6 6 /**
7 7 * 拜访工单Service接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface IMcVisitService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/IMcVisitUserService.java
... ... @@ -6,7 +6,7 @@ import com.chinagas.modules.schsf.domain.McVisitUser;
6 6 /**
7 7 * 百万用户信息(被拜访的用户)Service接口
8 8 *
9   - * @author lidwd
  9 + * @author cw
10 10 * @date 2024-05-30
11 11 */
12 12 public interface IMcVisitUserService
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McBasicCmtyServiceImpl.java
... ... @@ -16,7 +16,7 @@ import java.util.List;
16 16 /**
17 17 * 基础数据-户数Service业务层处理
18 18 *
19   - * @author lidwd
  19 + * @author cw
20 20 * @date 2024-05-22
21 21 */
22 22 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McBasicMoneyServiceImpl.java
... ... @@ -15,7 +15,7 @@ import java.util.List;
15 15 /**
16 16 * 基础数据-金额Service业务层处理
17 17 *
18   - * @author lidwd
  18 + * @author cw
19 19 * @date 2024-05-23
20 20 */
21 21 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McConstructionServiceImpl.java
... ... @@ -11,7 +11,7 @@ import com.chinagas.modules.schsf.service.IMcConstructionService;
11 11 /**
12 12 * 施工维护Service业务层处理
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-30
16 16 */
17 17 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McFileServiceImpl.java
... ... @@ -13,7 +13,7 @@ import java.util.List;
13 13 /**
14 14 * 市场化收费相关文件Service业务层处理
15 15 *
16   - * @author lidwd
  16 + * @author cw
17 17 * @date 2024-05-22
18 18 */
19 19 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McIgnitionServiceImpl.java
... ... @@ -12,7 +12,7 @@ import java.util.List;
12 12 /**
13 13 * 点火维护Service业务层处理
14 14 *
15   - * @author lidwd
  15 + * @author cw
16 16 * @date 2024-05-22
17 17 */
18 18 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McOperationLogServiceImpl.java
... ... @@ -10,7 +10,7 @@ import com.chinagas.modules.schsf.service.IMcOperationLogService;
10 10 /**
11 11 * 市场化收费相关记录Service业务层处理
12 12 *
13   - * @author lidwd
  13 + * @author cw
14 14 * @date 2024-05-30
15 15 */
16 16 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McVisitServiceImpl.java
... ... @@ -12,7 +12,7 @@ import java.util.List;
12 12 /**
13 13 * 拜访工单Service业务层处理
14 14 *
15   - * @author lidwd
  15 + * @author cw
16 16 * @date 2024-05-30
17 17 */
18 18 @Service
... ...
zr-cloud/zr-modules/zr-schsf/src/main/java/com/chinagas/modules/schsf/service/impl/McVisitUserServiceImpl.java
... ... @@ -11,7 +11,7 @@ import com.chinagas.modules.schsf.service.IMcVisitUserService;
11 11 /**
12 12 * 百万用户信息(被拜访的用户)Service业务层处理
13 13 *
14   - * @author lidwd
  14 + * @author cw
15 15 * @date 2024-05-30
16 16 */
17 17 @Service
... ...