Compare commits

...

2 Commits

13 changed files with 31 additions and 31 deletions

View File

@ -37,7 +37,7 @@ import java.util.Map;
*/ */
@Api(tags="咨询信息") @Api(tags="咨询信息")
@RestController @RestController
@RequestMapping("/h5Api/nuBizAdvisoryInfo") @RequestMapping("/admin/h5Api/nuBizAdvisoryInfo")
@Slf4j @Slf4j
public class H5ApiAdvisoryInfoController extends JeecgController<NuBizAdvisoryInfo, INuBizAdvisoryInfoService> { public class H5ApiAdvisoryInfoController extends JeecgController<NuBizAdvisoryInfo, INuBizAdvisoryInfoService> {
@Autowired @Autowired

View File

@ -47,12 +47,12 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
*/ */
@Api(tags="咨询信息") @Api(tags="咨询信息")
@RestController @RestController
@RequestMapping("/NuBizAdvisoryInfo/nuBizAdvisoryInfo") @RequestMapping("/admin/NuBizAdvisoryInfo/nuBizAdvisoryInfo")
@Slf4j @Slf4j
public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryInfo, INuBizAdvisoryInfoService> { public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryInfo, INuBizAdvisoryInfoService> {
@Autowired @Autowired
private INuBizAdvisoryInfoService nuBizAdvisoryInfoService; private INuBizAdvisoryInfoService nuBizAdvisoryInfoService;
/** /**
* 分页列表查询 * 分页列表查询
* *
@ -79,7 +79,7 @@ public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryIn
IPage<NuBizAdvisoryInfo> pageList = nuBizAdvisoryInfoService.page(page, queryWrapper); IPage<NuBizAdvisoryInfo> pageList = nuBizAdvisoryInfoService.page(page, queryWrapper);
return Result.OK(pageList); return Result.OK(pageList);
} }
/** /**
* 添加 * 添加
* *
@ -93,7 +93,7 @@ public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryIn
nuBizAdvisoryInfoService.save(nuBizAdvisoryInfo); nuBizAdvisoryInfoService.save(nuBizAdvisoryInfo);
return Result.OK(nuBizAdvisoryInfo); return Result.OK(nuBizAdvisoryInfo);
} }
/** /**
* 编辑 * 编辑
* *
@ -108,7 +108,7 @@ public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryIn
nuBizAdvisoryInfoService.updateById(nuBizAdvisoryInfo); nuBizAdvisoryInfoService.updateById(nuBizAdvisoryInfo);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
} }
/** /**
* 通过id删除 * 通过id删除
* *
@ -123,7 +123,7 @@ public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryIn
nuBizAdvisoryInfoService.removeById(id); nuBizAdvisoryInfoService.removeById(id);
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }
/** /**
* 批量删除 * 批量删除
* *
@ -138,7 +138,7 @@ public class NuBizAdvisoryInfoController extends JeecgController<NuBizAdvisoryIn
this.nuBizAdvisoryInfoService.removeByIds(Arrays.asList(ids.split(","))); this.nuBizAdvisoryInfoService.removeByIds(Arrays.asList(ids.split(",")));
return Result.OK("批量删除成功!"); return Result.OK("批量删除成功!");
} }
/** /**
* 通过id查询 * 通过id查询
* *

View File

@ -29,7 +29,7 @@ import java.util.Arrays;
*/ */
@Api(tags="app版本记录") @Api(tags="app版本记录")
@RestController @RestController
@RequestMapping("/appVersionConfig/appVersionConfig") @RequestMapping("/admin/appVersionConfig/appVersionConfig")
@Slf4j @Slf4j
public class AppVersionConfigController extends JeecgController<AppVersionConfig, IAppVersionConfigService> { public class AppVersionConfigController extends JeecgController<AppVersionConfig, IAppVersionConfigService> {
@Autowired @Autowired

View File

@ -47,12 +47,12 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
*/ */
@Api(tags="资源同步错误日志") @Api(tags="资源同步错误日志")
@RestController @RestController
@RequestMapping("/mediaasyncerrorlog/mediaAsyncErrorLog") @RequestMapping("/admin/mediaasyncerrorlog/mediaAsyncErrorLog")
@Slf4j @Slf4j
public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErrorLog, IMediaAsyncErrorLogService> { public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErrorLog, IMediaAsyncErrorLogService> {
@Autowired @Autowired
private IMediaAsyncErrorLogService mediaAsyncErrorLogService; private IMediaAsyncErrorLogService mediaAsyncErrorLogService;
/** /**
* 分页列表查询 * 分页列表查询
* *
@ -74,7 +74,7 @@ public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErro
IPage<MediaAsyncErrorLog> pageList = mediaAsyncErrorLogService.page(page, queryWrapper); IPage<MediaAsyncErrorLog> pageList = mediaAsyncErrorLogService.page(page, queryWrapper);
return Result.OK(pageList); return Result.OK(pageList);
} }
/** /**
* 添加 * 添加
* *
@ -89,7 +89,7 @@ public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErro
mediaAsyncErrorLogService.save(mediaAsyncErrorLog); mediaAsyncErrorLogService.save(mediaAsyncErrorLog);
return Result.OK("添加成功!"); return Result.OK("添加成功!");
} }
/** /**
* 编辑 * 编辑
* *
@ -104,7 +104,7 @@ public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErro
mediaAsyncErrorLogService.updateById(mediaAsyncErrorLog); mediaAsyncErrorLogService.updateById(mediaAsyncErrorLog);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
} }
/** /**
* 通过id删除 * 通过id删除
* *
@ -119,7 +119,7 @@ public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErro
mediaAsyncErrorLogService.removeById(id); mediaAsyncErrorLogService.removeById(id);
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }
/** /**
* 批量删除 * 批量删除
* *
@ -134,7 +134,7 @@ public class MediaAsyncErrorLogController extends JeecgController<MediaAsyncErro
this.mediaAsyncErrorLogService.removeByIds(Arrays.asList(ids.split(","))); this.mediaAsyncErrorLogService.removeByIds(Arrays.asList(ids.split(",")));
return Result.OK("批量删除成功!"); return Result.OK("批量删除成功!");
} }
/** /**
* 通过id查询 * 通过id查询
* *

View File

@ -50,7 +50,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
*/ */
@Api(tags = "媒体资源管理") @Api(tags = "媒体资源管理")
@RestController @RestController
@RequestMapping("/mediamanage/mediaManage") @RequestMapping("/admin/mediamanage/mediaManage")
@Slf4j @Slf4j
public class MediaManageController extends JeecgController<MediaManage, IMediaManageService> { public class MediaManageController extends JeecgController<MediaManage, IMediaManageService> {

View File

@ -43,7 +43,7 @@ import java.util.Map;
*/ */
@Api(tags = "护理单元") @Api(tags = "护理单元")
@RestController @RestController
@RequestMapping("/nuBaseInfo/nuBaseInfo") @RequestMapping("/admin/nuBaseInfo/nuBaseInfo")
@Slf4j @Slf4j
public class NuBaseInfoController extends JeecgController<NuBaseInfo, INuBaseInfoService> { public class NuBaseInfoController extends JeecgController<NuBaseInfo, INuBaseInfoService> {
@Autowired @Autowired

View File

@ -47,12 +47,12 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
*/ */
@Api(tags="员工咨询信息") @Api(tags="员工咨询信息")
@RestController @RestController
@RequestMapping("/nuEmployeesAdvisoryInfo/nuEmployeesAdvisoryInfo") @RequestMapping("/admin/nuEmployeesAdvisoryInfo/nuEmployeesAdvisoryInfo")
@Slf4j @Slf4j
public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmployeesAdvisoryInfo, INuEmployeesAdvisoryInfoService> { public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmployeesAdvisoryInfo, INuEmployeesAdvisoryInfoService> {
@Autowired @Autowired
private INuEmployeesAdvisoryInfoService nuEmployeesAdvisoryInfoService; private INuEmployeesAdvisoryInfoService nuEmployeesAdvisoryInfoService;
/** /**
* 分页列表查询 * 分页列表查询
* *
@ -74,7 +74,7 @@ public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmploye
IPage<NuEmployeesAdvisoryInfo> pageList = nuEmployeesAdvisoryInfoService.page(page, queryWrapper); IPage<NuEmployeesAdvisoryInfo> pageList = nuEmployeesAdvisoryInfoService.page(page, queryWrapper);
return Result.OK(pageList); return Result.OK(pageList);
} }
/** /**
* 添加 * 添加
* *
@ -88,7 +88,7 @@ public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmploye
nuEmployeesAdvisoryInfoService.save(nuEmployeesAdvisoryInfo); nuEmployeesAdvisoryInfoService.save(nuEmployeesAdvisoryInfo);
return Result.OK("添加成功!"); return Result.OK("添加成功!");
} }
/** /**
* 编辑 * 编辑
* *
@ -102,7 +102,7 @@ public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmploye
nuEmployeesAdvisoryInfoService.updateById(nuEmployeesAdvisoryInfo); nuEmployeesAdvisoryInfoService.updateById(nuEmployeesAdvisoryInfo);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
} }
/** /**
* 通过id删除 * 通过id删除
* *
@ -117,7 +117,7 @@ public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmploye
nuEmployeesAdvisoryInfoService.removeById(id); nuEmployeesAdvisoryInfoService.removeById(id);
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }
/** /**
* 批量删除 * 批量删除
* *
@ -132,7 +132,7 @@ public class NuEmployeesAdvisoryInfoController extends JeecgController<NuEmploye
this.nuEmployeesAdvisoryInfoService.removeByIds(Arrays.asList(ids.split(","))); this.nuEmployeesAdvisoryInfoService.removeByIds(Arrays.asList(ids.split(",")));
return Result.OK("批量删除成功!"); return Result.OK("批量删除成功!");
} }
/** /**
* 通过id查询 * 通过id查询
* *

View File

@ -48,7 +48,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
*/ */
@Api(tags = "机构加盟申请信息表") @Api(tags = "机构加盟申请信息表")
@RestController @RestController
@RequestMapping("/orgapplyinfo/orgApplyInfo") @RequestMapping("/admin/orgapplyinfo/orgApplyInfo")
@Slf4j @Slf4j
public class OrgApplyInfoController extends JeecgController<OrgApplyInfo, IOrgApplyInfoService> { public class OrgApplyInfoController extends JeecgController<OrgApplyInfo, IOrgApplyInfoService> {
@Autowired @Autowired

View File

@ -31,7 +31,7 @@ import java.util.Map;
*/ */
@Api(tags="体型标签") @Api(tags="体型标签")
@RestController @RestController
@RequestMapping("/directiveTag/bodyTag") @RequestMapping("/services/directiveTag/bodyTag")
@Slf4j @Slf4j
public class DirectiveBodyTagController extends JeecgController<DirectiveBodyTag, IDirectiveBodyTagService> { public class DirectiveBodyTagController extends JeecgController<DirectiveBodyTag, IDirectiveBodyTagService> {
@Autowired @Autowired

View File

@ -31,7 +31,7 @@ import java.util.Map;
*/ */
@Api(tags="情绪标签") @Api(tags="情绪标签")
@RestController @RestController
@RequestMapping("/directiveTag/emotionTag") @RequestMapping("/services/directiveTag/emotionTag")
@Slf4j @Slf4j
public class DirectiveEmotionTagController extends JeecgController<DirectiveEmotionTag, IDirectiveEmotionTagService> { public class DirectiveEmotionTagController extends JeecgController<DirectiveEmotionTag, IDirectiveEmotionTagService> {
@Autowired @Autowired

View File

@ -31,7 +31,7 @@ import java.util.Map;
*/ */
@Api(tags="服务类别") @Api(tags="服务类别")
@RestController @RestController
@RequestMapping("/serviceCategory/configServiceCategory") @RequestMapping("/services/serviceCategory/configServiceCategory")
@Slf4j @Slf4j
public class ConfigServiceCategoryController extends JeecgController<ConfigServiceCategory, IConfigServiceCategoryService> { public class ConfigServiceCategoryController extends JeecgController<ConfigServiceCategory, IConfigServiceCategoryService> {
@Autowired @Autowired

View File

@ -41,7 +41,7 @@ import java.util.stream.Collectors;
*/ */
@Api(tags = "服务指令") @Api(tags = "服务指令")
@RestController @RestController
@RequestMapping("/serviceDirective/configServiceDirective") @RequestMapping("/services/serviceDirective/configServiceDirective")
@Slf4j @Slf4j
public class ConfigServiceDirectiveController extends JeecgController<ConfigServiceDirective, IConfigServiceDirectiveService> { public class ConfigServiceDirectiveController extends JeecgController<ConfigServiceDirective, IConfigServiceDirectiveService> {
@Autowired @Autowired

View File

@ -31,7 +31,7 @@ import java.util.Map;
*/ */
@Api(tags = "服务类型") @Api(tags = "服务类型")
@RestController @RestController
@RequestMapping("/ServiceType/configServiceType") @RequestMapping("/services/ServiceType/configServiceType")
@Slf4j @Slf4j
public class ConfigServiceTypeController extends JeecgController<ConfigServiceType, IConfigServiceTypeService> { public class ConfigServiceTypeController extends JeecgController<ConfigServiceType, IConfigServiceTypeService> {
@Autowired @Autowired