Merge branch 'dev' of http://192.168.2.240:7070/r/kidgrow-microservices-platform into dev
# Conflicts:
# kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-server/src/main/java/com/kidgrow/oprationcenter/controller/DataNeedController.java
35 files modified
2 files deleted
10 files added
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | ${classname}Service.saveOrUpdate(${classname}); |
| | | return ResultBody.ok().data(${classname}).msg("保存成功"); |
| | | boolean v= ${classname}Service.saveOrUpdate(${classname}); |
| | | if(v) { |
| | | return ResultBody.ok().data(${classname}).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long ${pk.attrname}) { |
| | | ${classname}Service.removeById(${pk.attrname}); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= ${classname}Service.removeById(${pk.attrname}); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.departmentId != null and p.departmentId !=''"> |
| | | and department_id = #{p.departmentId} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.isAnswer != null and p.isAnswer !=''"> |
| | | and is_answer = #{p.isAnswer} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.hospitalId != null and p.hospitalId !=''"> |
| | | and hospital_id = #{p.hospitalId} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.applicationName != null and p.applicationName !=''"> |
| | | and application_name = #{p.applicationName} |
| | | </if> |
| | |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | p.is_del=0 |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | |
| | | package com.kidgrow.oprationcenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.oprationcenter.model.BusinessRecords; |
| | | import com.kidgrow.oprationcenter.service.IBusinessRecordsService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.oprationcenter.model.BusinessRecords; |
| | | import com.kidgrow.oprationcenter.service.IBusinessRecordsService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.BindingResult; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 业务操作记录 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return businessRecordsService.findList(params); |
| | | return ResultBody.ok().data(businessRecordsService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | businessRecordsService.saveOrUpdate(businessRecords); |
| | | return ResultBody.ok().data(businessRecords).msg("保存成功"); |
| | | boolean v= businessRecordsService.saveOrUpdate(businessRecords); |
| | | if(v) { |
| | | return ResultBody.ok().data(businessRecords).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | businessRecordsService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= businessRecordsService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 医院服务信息表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:04 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return businessServerService.findList(params); |
| | | return ResultBody.ok().data(businessServerService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | businessServerService.saveOrUpdate(businessServer); |
| | | return ResultBody.ok().data(businessServer).msg("保存成功"); |
| | | boolean v= businessServerService.saveOrUpdate(businessServer); |
| | | if(v) { |
| | | return ResultBody.ok().data(businessServer).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | businessServerService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= businessServerService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 医答医生信息表-未完待续 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return doctorAnswerService.findList(params); |
| | | return ResultBody.ok().data(doctorAnswerService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | doctorAnswerService.saveOrUpdate(doctorAnswer); |
| | | return ResultBody.ok().data(doctorAnswer).msg("保存成功"); |
| | | boolean v= doctorAnswerService.saveOrUpdate(doctorAnswer); |
| | | if(v) { |
| | | return ResultBody.ok().data(doctorAnswer).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | doctorAnswerService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= doctorAnswerService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 医生业务服务信息表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return doctorServerService.findList(params); |
| | | return ResultBody.ok().data(doctorServerService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | doctorServerService.saveOrUpdate(doctorServer); |
| | | return ResultBody.ok().data(doctorServer).msg("保存成功"); |
| | | boolean v= doctorServerService.saveOrUpdate(doctorServer); |
| | | if(v) { |
| | | return ResultBody.ok().data(doctorServer).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | doctorServerService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= doctorServerService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 签约医生信息表-未完待续 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return doctorSigningService.findList(params); |
| | | return ResultBody.ok().data(doctorSigningService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | doctorSigningService.saveOrUpdate(doctorSigning); |
| | | return ResultBody.ok().data(doctorSigning).msg("保存成功"); |
| | | boolean v= doctorSigningService.saveOrUpdate(doctorSigning); |
| | | if(v) { |
| | | return ResultBody.ok().data(doctorSigning).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | doctorSigningService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= doctorSigningService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 医生的模板 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return doctorTempleteService.findList(params); |
| | | return ResultBody.ok().data(doctorTempleteService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | doctorTempleteService.saveOrUpdate(doctorTemplete); |
| | | return ResultBody.ok().data(doctorTemplete).msg("保存成功"); |
| | | boolean v= doctorTempleteService.saveOrUpdate(doctorTemplete); |
| | | if(v) { |
| | | return ResultBody.ok().data(doctorTemplete).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | doctorTempleteService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= doctorTempleteService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 筛查医院信息表-未完待续 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return hospitalScreeningService.findList(params); |
| | | return ResultBody.ok().data(hospitalScreeningService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | hospitalScreeningService.saveOrUpdate(hospitalScreening); |
| | | return ResultBody.ok().data(hospitalScreening).msg("保存成功"); |
| | | boolean v= hospitalScreeningService.saveOrUpdate(hospitalScreening); |
| | | if(v) { |
| | | return ResultBody.ok().data(hospitalScreening).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | hospitalScreeningService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= hospitalScreeningService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 产品的充值记录-订单 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return productOrderService.findList(params); |
| | | return ResultBody.ok().data(productOrderService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | productOrderService.saveOrUpdate(productOrder); |
| | | return ResultBody.ok().data(productOrder).msg("保存成功"); |
| | | boolean v= productOrderService.saveOrUpdate(productOrder); |
| | | if(v) { |
| | | return ResultBody.ok().data(productOrder).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | productOrderService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= productOrderService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 产品/明显的充值记录 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return productOrderDetailService.findList(params); |
| | | return ResultBody.ok().data(productOrderDetailService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | productOrderDetailService.saveOrUpdate(productOrderDetail); |
| | | return ResultBody.ok().data(productOrderDetail).msg("保存成功"); |
| | | boolean v= productOrderDetailService.saveOrUpdate(productOrderDetail); |
| | | if(v) { |
| | | return ResultBody.ok().data(productOrderDetail).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | productOrderDetailService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= productOrderDetailService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:04 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return sysFeedbackService.findList(params); |
| | | return ResultBody.ok().data(sysFeedbackService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | sysFeedbackService.saveOrUpdate(sysFeedback); |
| | | return ResultBody.ok().data(sysFeedback).msg("保存成功"); |
| | | boolean v= sysFeedbackService.saveOrUpdate(sysFeedback); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysFeedback).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | sysFeedbackService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= sysFeedbackService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | package com.kidgrow.oprationcenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.oprationcenter.model.SysLogger; |
| | | import com.kidgrow.oprationcenter.service.ISysLoggerService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.BindingResult; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import com.kidgrow.oprationcenter.model.SysLogger; |
| | | import com.kidgrow.oprationcenter.service.ISysLoggerService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:04 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return sysLoggerService.findList(params); |
| | | return ResultBody.ok().data(sysLoggerService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | sysLoggerService.saveOrUpdate(sysLogger); |
| | | return ResultBody.ok().data(sysLogger).msg("保存成功"); |
| | | boolean v= sysLoggerService.saveOrUpdate(sysLogger); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysLogger).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | sysLoggerService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= sysLoggerService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | package com.kidgrow.oprationcenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.oprationcenter.model.SysProduct; |
| | | import com.kidgrow.oprationcenter.service.ISysProductService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.BindingResult; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import com.kidgrow.oprationcenter.model.SysProduct; |
| | | import com.kidgrow.oprationcenter.service.ISysProductService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Project: 运营中心 |
| | | * @CreateDate: Created in 2020-04-02 18:25:34 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return sysProductService.findList(params); |
| | | return ResultBody.ok().data(sysProductService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | sysProductService.saveOrUpdate(sysProduct); |
| | | return ResultBody.ok().data(sysProduct).msg("保存成功"); |
| | | boolean v= sysProductService.saveOrUpdate(sysProduct); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysProduct).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | sysProductService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= sysProductService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 系统用户登录日志表<br> |
| | | * @Project: 用户中心<br> |
| | | * @CreateDate: Created in 2020-03-09 10:13:23 <br> |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version 1.0 |
| | | */ |
| | |
| | | * @return |
| | | */ |
| | | List<SysUserLogs> findList(Page<SysUserLogs> page, @Param("p") Map<String, Object> params); |
| | | |
| | | /** |
| | | * 根据SysUserLogs对象当做查询条件进行查询 |
| | | * @param |
| | | * @return SysUserLogs对象 |
| | | */ |
| | | SysUserLogs findByObject(SysUserLogs sysUserLogs); |
| | | } |
| | |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 系统用户登录日志表<br> |
| | | * @Project: 用户中心<br> |
| | | * @CreateDate: Created in 2020-03-09 10:13:23 <br> |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version 1.0 |
| | | */ |
| | |
| | | * @return |
| | | */ |
| | | PageResult<SysUserLogs> findList(Map<String, Object> params); |
| | | |
| | | |
| | | /** |
| | | * 根据SysUserLogs对象当做查询条件进行查询 |
| | | * @param sysUserLogs |
| | | * @return SysUserLogs对象 |
| | | */ |
| | | SysUserLogs findByObject(SysUserLogs sysUserLogs); |
| | | } |
| | | |
| | |
| | | package com.kidgrow.usercenter.service.impl; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.service.impl.SuperServiceImpl; |
| | | import com.kidgrow.usercenter.mapper.SysUserLogsMapper; |
| | | import com.kidgrow.usercenter.model.SysUserLogs; |
| | | import com.kidgrow.usercenter.service.ISysUserLogsService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.collections4.MapUtils; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import org.apache.commons.collections4.MapUtils; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.usercenter.model.SysUserLogs; |
| | | import com.kidgrow.usercenter.mapper.SysUserLogsMapper; |
| | | import com.kidgrow.usercenter.service.ISysUserLogsService; |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 系统用户登录日志表<br> |
| | | * @Project: 用户中心<br> |
| | | * @CreateDate: Created in 2020-03-09 10:13:23 <br> |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version 1.0 |
| | | */ |
| | |
| | | List<SysUserLogs> list = baseMapper.findList(page, params); |
| | | return PageResult.<SysUserLogs>builder().data(list).code(0).count(page.getTotal()).build(); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysUserLogs对象当做查询条件进行查询 |
| | | * @param sysUserLogs |
| | | * @return SysUserLogs |
| | | */ |
| | | @Override |
| | | public SysUserLogs findByObject(SysUserLogs sysUserLogs){ |
| | | return baseMapper.findByObject(sysUserLogs); |
| | | } |
| | | } |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!--省市区数据表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysAreaMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.areaName != null and p.areaName !=''"> |
| | | and area_name = #{p.areaName} |
| | | </if> |
| | | <if test="p.areaParentId != null and p.areaParentId !=''"> |
| | | and area_parent_id = #{p.areaParentId} |
| | | </if> |
| | | <if test="p.areaShortname != null and p.areaShortname !=''"> |
| | | and area_shortname = #{p.areaShortname} |
| | | </if> |
| | | <if test="p.areaLeveltype != null and p.areaLeveltype !=''"> |
| | | and area_leveltype = #{p.areaLeveltype} |
| | | </if> |
| | | <if test="p.areaCitycode != null and p.areaCitycode !=''"> |
| | | and area_citycode = #{p.areaCitycode} |
| | | </if> |
| | | <if test="p.areaZipcode != null and p.areaZipcode !=''"> |
| | | and area_zipcode = #{p.areaZipcode} |
| | | </if> |
| | | <if test="p.areaLng != null and p.areaLng !=''"> |
| | | and area_lng = #{p.areaLng} |
| | | </if> |
| | | <if test="p.areaLat != null and p.areaLat !=''"> |
| | | and area_Lat = #{p.areaLat} |
| | | </if> |
| | | <if test="p.areaCh != null and p.areaCh !=''"> |
| | | and area_ch = #{p.areaCh} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysArea当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysArea"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_area |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysArea当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysArea"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_area |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!--公司信息表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysCompanyMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.orgId != null and p.orgId !=''"> |
| | | and org_id = #{p.orgId} |
| | | </if> |
| | | <if test="p.companyName != null and p.companyName !=''"> |
| | | and company_name = #{p.companyName} |
| | | </if> |
| | | <if test="p.companyArea != null and p.companyArea !=''"> |
| | | and company_area = #{p.companyArea} |
| | | </if> |
| | | <if test="p.companyTel != null and p.companyTel !=''"> |
| | | and company_tel = #{p.companyTel} |
| | | </if> |
| | | <if test="p.companyAdress != null and p.companyAdress !=''"> |
| | | and company_adress = #{p.companyAdress} |
| | | </if> |
| | | <if test="p.companyLogo != null and p.companyLogo !=''"> |
| | | and company_logo = #{p.companyLogo} |
| | | </if> |
| | | <if test="p.companyAbout != null and p.companyAbout !=''"> |
| | | and company_about = #{p.companyAbout} |
| | | </if> |
| | | <if test="p.tenantId != null and p.tenantId !=''"> |
| | | and tenant_id = #{p.tenantId} |
| | | </if> |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysCompany当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysCompany"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_company |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysCompany当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysCompany"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_company |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!--科室表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysDepartmentMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.departmentName != null and p.departmentName !=''"> |
| | | and department_name = #{p.departmentName} |
| | | </if> |
| | | <if test="p.orgId != null and p.orgId !=''"> |
| | | and org_id = #{p.orgId} |
| | | </if> |
| | | <if test="p.serverUserId != null and p.serverUserId !=''"> |
| | | and server_user_id = #{p.serverUserId} |
| | | </if> |
| | | <if test="p.serverUserName != null and p.serverUserName !=''"> |
| | | and server_user_name = #{p.serverUserName} |
| | | </if> |
| | | <if test="p.departmentAbout != null and p.departmentAbout !=''"> |
| | | and department_about = #{p.departmentAbout} |
| | | </if> |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysDepartment当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysDepartment"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_department |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysDepartment当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysDepartment"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_department |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!--系统字典表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysDictionariesMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.dictionariesName != null and p.dictionariesName !=''"> |
| | | and dictionaries_name = #{p.dictionariesName} |
| | | </if> |
| | | <if test="p.dictionariesClassId != null and p.dictionariesClassId !=''"> |
| | | and dictionaries_class_id = #{p.dictionariesClassId} |
| | | </if> |
| | | <if test="p.dictionariesOrder != null and p.dictionariesOrder !=''"> |
| | | and dictionaries_order = #{p.dictionariesOrder} |
| | | </if> |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysDictionaries当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysDictionaries"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_dictionaries |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysDictionaries当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysDictionaries"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_dictionaries |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!----> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysDoctorMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.userId != null and p.userId !=''"> |
| | | and user_id = #{p.userId} |
| | | </if> |
| | | <if test="p.hospitalId != null and p.hospitalId !=''"> |
| | | and hospital_id = #{p.hospitalId} |
| | | </if> |
| | | <if test="p.hospitalName != null and p.hospitalName !=''"> |
| | | and hospital_name = #{p.hospitalName} |
| | | </if> |
| | | <if test="p.departmentId != null and p.departmentId !=''"> |
| | | and department_id = #{p.departmentId} |
| | | </if> |
| | | <if test="p.departmentName != null and p.departmentName !=''"> |
| | | and department_name = #{p.departmentName} |
| | | </if> |
| | | <if test="p.doctorName != null and p.doctorName !=''"> |
| | | and doctor_name = #{p.doctorName} |
| | | </if> |
| | | <if test="p.doctorLogo != null and p.doctorLogo !=''"> |
| | | and doctor_logo = #{p.doctorLogo} |
| | | </if> |
| | | <if test="p.doctorTel != null and p.doctorTel !=''"> |
| | | and doctor_tel = #{p.doctorTel} |
| | | </if> |
| | | <if test="p.doctorRankId != null and p.doctorRankId !=''"> |
| | | and doctor_rank_id = #{p.doctorRankId} |
| | | </if> |
| | | <if test="p.doctorRank != null and p.doctorRank !=''"> |
| | | and doctor_rank = #{p.doctorRank} |
| | | </if> |
| | | <if test="p.doctorOtherLink != null and p.doctorOtherLink !=''"> |
| | | and doctor_other_link = #{p.doctorOtherLink} |
| | | </if> |
| | | <if test="p.doctorEmail != null and p.doctorEmail !=''"> |
| | | and doctor_email = #{p.doctorEmail} |
| | | </if> |
| | | <if test="p.doctorAbout != null and p.doctorAbout !=''"> |
| | | and doctor_about = #{p.doctorAbout} |
| | | </if> |
| | | <if test="p.isAnswer != null and p.isAnswer !=''"> |
| | | and is_answer = #{p.isAnswer} |
| | | </if> |
| | | <if test="p.isSigning != null and p.isSigning !=''"> |
| | | and is_signing = #{p.isSigning} |
| | | </if> |
| | | <if test="p.isTop != null and p.isTop !=''"> |
| | | and is_top = #{p.isTop} |
| | | </if> |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="p.doctorState != null and p.doctorState !=''"> |
| | | and doctor_state = #{p.doctorState} |
| | | </if> |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysDoctor当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysDoctor"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_doctor |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysDoctor当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysDoctor"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_doctor |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!----> |
| | | <!--医院基础信息表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysHospitalMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="id != null"> |
| | | and id = #{id} |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="hospitalName != null and hospitalName !=''"> |
| | | and hospital_name = #{hospitalName} |
| | | <if test="p.hospitalName != null and p.hospitalName !=''"> |
| | | and hospital_name = #{p.hospitalName} |
| | | </if> |
| | | <if test="createUserId != null and createUserId != ''"> |
| | | and create_user_id = #{createUserId} |
| | | <if test="p.orgId != null and p.orgId !=''"> |
| | | and org_id = #{p.orgId} |
| | | </if> |
| | | <if test="createUserName != null and createUserName !=''"> |
| | | and create_user_name = #{createUserName} |
| | | <if test="p.hospitalShortName != null and p.hospitalShortName !=''"> |
| | | and hospital_short_name = #{p.hospitalShortName} |
| | | </if> |
| | | <if test="updateUserId != null and updateUserId != ''"> |
| | | and update_user_id = #{updateUserId} |
| | | <if test="p.hospitalCode != null and p.hospitalCode !=''"> |
| | | and hospital_code = #{p.hospitalCode} |
| | | </if> |
| | | <if test="updateUserName != null and updateUserName !=''"> |
| | | and update_user_name = #{updateUserName} |
| | | <if test="p.hospitalTypeId != null and p.hospitalTypeId !=''"> |
| | | and hospital_type_id = #{p.hospitalTypeId} |
| | | </if> |
| | | <if test="createTime != null and createTime !=''"> |
| | | and create_time = #{createTime} |
| | | <if test="p.hospitalTypeName != null and p.hospitalTypeName !=''"> |
| | | and hospital_type_name = #{p.hospitalTypeName} |
| | | </if> |
| | | <if test="updateTime != null and updateTime !=''"> |
| | | and update_time = #{updateTime} |
| | | <if test="p.hospitalTel != null and p.hospitalTel !=''"> |
| | | and hospital_tel = #{p.hospitalTel} |
| | | </if> |
| | | <if test="isDel != null"> |
| | | and is_del = #{isDel} |
| | | <if test="p.hospitalArea != null and p.hospitalArea !=''"> |
| | | and hospital_area = #{p.hospitalArea} |
| | | </if> |
| | | <if test="tenantId != null"> |
| | | and tenant_id = #{tenantId} |
| | | <if test="p.areaCode != null and p.areaCode !=''"> |
| | | and area_code = #{p.areaCode} |
| | | </if> |
| | | <if test="enabled != null"> |
| | | and enabled = #{enabled} |
| | | <if test="p.hospitalAdress != null and p.hospitalAdress !=''"> |
| | | and hospital_adress = #{p.hospitalAdress} |
| | | </if> |
| | | <if test="p.latitude != null and p.latitude !=''"> |
| | | and latitude = #{p.latitude} |
| | | </if> |
| | | <if test="p.longitude != null and p.longitude !=''"> |
| | | and longitude = #{p.longitude} |
| | | </if> |
| | | <if test="p.hospitalQualifiedId != null and p.hospitalQualifiedId !=''"> |
| | | and hospital_qualified_id = #{p.hospitalQualifiedId} |
| | | </if> |
| | | <if test="p.hospitalQualifiedName != null and p.hospitalQualifiedName !=''"> |
| | | and hospital_qualified_name = #{p.hospitalQualifiedName} |
| | | </if> |
| | | <if test="p.hospitalLitLogo != null and p.hospitalLitLogo !=''"> |
| | | and hospital_lit_logo = #{p.hospitalLitLogo} |
| | | </if> |
| | | <if test="p.hospitalLogo != null and p.hospitalLogo !=''"> |
| | | and hospital_logo = #{p.hospitalLogo} |
| | | </if> |
| | | <if test="p.hospitalAdimage != null and p.hospitalAdimage !=''"> |
| | | and hospital_adimage = #{p.hospitalAdimage} |
| | | </if> |
| | | <if test="p.hospitalAbout != null and p.hospitalAbout !=''"> |
| | | and hospital_about = #{p.hospitalAbout} |
| | | </if> |
| | | <if test="p.isScreen != null and p.isScreen !=''"> |
| | | and is_screen = #{p.isScreen} |
| | | </if> |
| | | <if test="p.serverUserId != null and p.serverUserId !=''"> |
| | | and server_user_id = #{p.serverUserId} |
| | | </if> |
| | | <if test="p.serverUserName != null and p.serverUserName !=''"> |
| | | and server_user_name = #{p.serverUserName} |
| | | </if> |
| | | <if test="p.hospitalState != null and p.hospitalState !=''"> |
| | | and hospital_state = #{p.hospitalState} |
| | | </if> |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="p.tenantId != null and p.tenantId !=''"> |
| | | and tenant_id = #{p.tenantId} |
| | | </if> |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysHospital当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysHospital"> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysHospital"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_hospital |
| | | <include refid="where"></include> |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysHospital当作查询条件返回对象集合--> |
| | |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_hospital |
| | | |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
| | |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="id != null and id !=''"> |
| | | and id = #{id} |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="orgLevel != null and orgLevel !=''"> |
| | | and org_level = #{orgLevel} |
| | | <if test="p.orgLevel != null and p.orgLevel !=''"> |
| | | and org_level = #{p.orgLevel} |
| | | </if> |
| | | <if test="orgAttr != null and orgAttr !=''"> |
| | | and org_attr = #{orgAttr} |
| | | <if test="p.orgAttr != null and p.orgAttr !=''"> |
| | | and org_attr = #{p.orgAttr} |
| | | </if> |
| | | <if test="orgParentId != null and orgParentId !=''"> |
| | | and org_parent_id = #{orgParentId} |
| | | <if test="p.orgParentId != null and p.orgParentId !=''"> |
| | | and org_parent_id = #{p.orgParentId} |
| | | </if> |
| | | <if test="orgName != null and orgName !=''"> |
| | | and org_name = #{orgName} |
| | | <if test="p.orgName != null and p.orgName !=''"> |
| | | and org_name = #{p.orgName} |
| | | </if> |
| | | <if test="orgOrder != null and orgOrder !=''"> |
| | | and org_order = #{orgOrder} |
| | | <if test="p.orgOrder != null and p.orgOrder !=''"> |
| | | and org_order = #{p.orgOrder} |
| | | </if> |
| | | <if test="isDel != null and isDel !=''"> |
| | | and is_del = #{isDel} |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="enabled != null and enabled !=''"> |
| | | and enabled = #{enabled} |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="createUserId != null and createUserId !=''"> |
| | | and create_user_id = #{createUserId} |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="createUserName != null and createUserName !=''"> |
| | | and create_user_name = #{createUserName} |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="updateUserId != null and updateUserId !=''"> |
| | | and update_user_id = #{updateUserId} |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="updateUserName != null and updateUserName !=''"> |
| | | and update_user_name = #{updateUserName} |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="createTime != null and createTime !=''"> |
| | | and create_time = #{createTime} |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="updateTime != null and updateTime !=''"> |
| | | and update_time = #{updateTime} |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysOrganization当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.common.model.SysOrganization"> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysOrganization"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_organization |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysOrganization当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.common.model.SysOrganization"> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysOrganization"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_organization |
| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <!--系统用户登录日志表--> |
| | | <mapper namespace="com.kidgrow.usercenter.mapper.SysUserLogsMapper"> |
| | | <!--定义查询列--> |
| | | <sql id="Column_List"> |
| | | * |
| | | </sql> |
| | | |
| | | <!--sql查询片段--> |
| | | <sql id="where"> |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="p.loginTime != null and p.loginTime !=''"> |
| | | and login_time = #{p.loginTime} |
| | | </if> |
| | | <if test="p.loginIp != null and p.loginIp !=''"> |
| | | and login_ip = #{p.loginIp} |
| | | </if> |
| | | <if test="p.loginAgentBrowser != null and p.loginAgentBrowser !=''"> |
| | | and login_agent_browser = #{p.loginAgentBrowser} |
| | | </if> |
| | | <if test="p.loginAgentSystem != null and p.loginAgentSystem !=''"> |
| | | and login_agent_system = #{p.loginAgentSystem} |
| | | </if> |
| | | <if test="p.loginNums != null and p.loginNums !=''"> |
| | | and login_nums = #{p.loginNums} |
| | | </if> |
| | | <if test="p.loginType != null and p.loginType !=''"> |
| | | and login_type = #{p.loginType} |
| | | </if> |
| | | <if test="p.userid != null and p.userid !=''"> |
| | | and userid = #{p.userid} |
| | | </if> |
| | | <if test="p.username != null and p.username !=''"> |
| | | and username = #{p.username} |
| | | </if> |
| | | <if test="p.clientId != null and p.clientId !=''"> |
| | | and client_id = #{p.clientId} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysUserLogs当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysUserLogs"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_user_logs |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysUserLogs当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysUserLogs"> |
| | | select * from sys_user_logs t |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_user_logs |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | </mapper> |
| | |
| | | <where> |
| | | <!--查询条件自行添加--> |
| | | is_del=0 |
| | | <if test="id != null and id !=''"> |
| | | and id = #{id} |
| | | <if test="p.id != null and p.id !=''"> |
| | | and id = #{p.id} |
| | | </if> |
| | | <if test="userId != null and userId !=''"> |
| | | and user_id = #{userId} |
| | | <if test="p.userId != null and p.userId !=''"> |
| | | and user_id = #{p.userId} |
| | | </if> |
| | | <if test="orgId != null and orgId !=''"> |
| | | and org_id = #{orgId} |
| | | <if test="p.orgId != null and p.orgId !=''"> |
| | | and org_id = #{p.orgId} |
| | | </if> |
| | | <if test="enabled != null and enabled !=''"> |
| | | and enabled = #{enabled} |
| | | <if test="p.enabled != null and p.enabled !=''"> |
| | | and enabled = #{p.enabled} |
| | | </if> |
| | | <if test="isDel != null and isDel !=''"> |
| | | and is_del = #{isDel} |
| | | <if test="p.isDel != null and p.isDel !=''"> |
| | | and is_del = #{p.isDel} |
| | | </if> |
| | | <if test="createUserId != null and createUserId !=''"> |
| | | and create_user_id = #{createUserId} |
| | | <if test="p.createUserId != null and p.createUserId !=''"> |
| | | and create_user_id = #{p.createUserId} |
| | | </if> |
| | | <if test="createUserName != null and createUserName !=''"> |
| | | and create_user_name = #{createUserName} |
| | | <if test="p.createUserName != null and p.createUserName !=''"> |
| | | and create_user_name = #{p.createUserName} |
| | | </if> |
| | | <if test="updateUserId != null and updateUserId !=''"> |
| | | and update_user_id = #{updateUserId} |
| | | <if test="p.updateUserId != null and p.updateUserId !=''"> |
| | | and update_user_id = #{p.updateUserId} |
| | | </if> |
| | | <if test="updateUserName != null and updateUserName !=''"> |
| | | and update_user_name = #{updateUserName} |
| | | <if test="p.updateUserName != null and p.updateUserName !=''"> |
| | | and update_user_name = #{p.updateUserName} |
| | | </if> |
| | | <if test="createTime != null and createTime !=''"> |
| | | and create_time = #{createTime} |
| | | <if test="p.createTime != null and p.createTime !=''"> |
| | | and create_time = #{p.createTime} |
| | | </if> |
| | | <if test="updateTime != null and updateTime !=''"> |
| | | and update_time = #{updateTime} |
| | | <if test="p.updateTime != null and p.updateTime !=''"> |
| | | and update_time = #{p.updateTime} |
| | | </if> |
| | | </where> |
| | | </sql> |
| | | |
| | | <!--定义根据-SysUserOrg当作查询条件返回对象--> |
| | | <select id="findByObject" resultType="com.kidgrow.common.model.SysUserOrg"> |
| | | <select id="findByObject" resultType="com.kidgrow.usercenter.model.SysUserOrg"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_user_org |
| | | <include refid="where"/> |
| | | order by id desc |
| | | </select> |
| | | |
| | | <!--定义根据-SysUserOrg当作查询条件返回对象集合--> |
| | | <select id="findList" resultType="com.kidgrow.common.model.SysUserOrg"> |
| | | <select id="findList" resultType="com.kidgrow.usercenter.model.SysUserOrg"> |
| | | select |
| | | <include refid="Column_List"/> |
| | | from sys_user_org |
New file |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.usercenter.model.SysArea; |
| | | import com.kidgrow.usercenter.service.ISysAreaService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.BindingResult; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.util.Map; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 省市区数据表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/sysarea") |
| | | @Api(tags = "省市区数据表") |
| | | public class SysAreaController extends BaseController{ |
| | | @Autowired |
| | | private ISysAreaService sysAreaService; |
| | | |
| | | /** |
| | | * 列表 |
| | | */ |
| | | @ApiOperation(value = "查询列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysAreaService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | | * 查询 |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysArea model = sysAreaService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysArea当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysArea当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysArea sysArea) { |
| | | SysArea model = sysAreaService.findByObject(sysArea); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 新增or更新 |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@Valid @RequestBody SysArea sysArea, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysAreaService.saveOrUpdate(sysArea); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysArea).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | boolean v= sysAreaService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.usercenter.model.SysCompany; |
| | | import com.kidgrow.usercenter.service.ISysCompanyService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 公司信息表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/syscompany") |
| | | @Api(tags = "公司信息表") |
| | | public class SysCompanyController extends BaseController{ |
| | | @Autowired |
| | | private ISysCompanyService sysCompanyService; |
| | | |
| | | /** |
| | | * 列表 |
| | | */ |
| | | @ApiOperation(value = "查询列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysCompanyService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | | * 查询 |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysCompany model = sysCompanyService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysCompany当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysCompany当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysCompany sysCompany) { |
| | | SysCompany model = sysCompanyService.findByObject(sysCompany); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 新增or更新 |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@Valid @RequestBody SysCompany sysCompany, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysCompanyService.saveOrUpdate(sysCompany); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysCompany).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | boolean v= sysCompanyService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.usercenter.model.SysDepartment; |
| | | import com.kidgrow.usercenter.service.ISysDepartmentService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 科室表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/sysdepartment") |
| | | @Api(tags = "科室表") |
| | | public class SysDepartmentController extends BaseController{ |
| | | @Autowired |
| | | private ISysDepartmentService sysDepartmentService; |
| | | |
| | | /** |
| | | * 列表 |
| | | */ |
| | | @ApiOperation(value = "查询列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysDepartmentService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | | * 查询 |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysDepartment model = sysDepartmentService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysDepartment当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysDepartment当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysDepartment sysDepartment) { |
| | | SysDepartment model = sysDepartmentService.findByObject(sysDepartment); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 新增or更新 |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@Valid @RequestBody SysDepartment sysDepartment, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysDepartmentService.saveOrUpdate(sysDepartment); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysDepartment).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | boolean v= sysDepartmentService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.usercenter.model.SysDictionaries; |
| | | import com.kidgrow.usercenter.service.ISysDictionariesService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 系统字典表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/sysdictionaries") |
| | | @Api(tags = "系统字典表") |
| | | public class SysDictionariesController extends BaseController{ |
| | | @Autowired |
| | | private ISysDictionariesService sysDictionariesService; |
| | | |
| | | /** |
| | | * 列表 |
| | | */ |
| | | @ApiOperation(value = "查询列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysDictionariesService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | | * 查询 |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysDictionaries model = sysDictionariesService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysDictionaries当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysDictionaries当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysDictionaries sysDictionaries) { |
| | | SysDictionaries model = sysDictionariesService.findByObject(sysDictionaries); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 新增or更新 |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@Valid @RequestBody SysDictionaries sysDictionaries, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysDictionariesService.saveOrUpdate(sysDictionaries); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysDictionaries).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | boolean v= sysDictionariesService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import java.util.Map; |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import com.kidgrow.usercenter.model.SysDoctor; |
| | | import com.kidgrow.usercenter.service.ISysDoctorService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/sysdoctor") |
| | | @Api(tags = "") |
| | | public class SysDoctorController extends BaseController{ |
| | | @Autowired |
| | | private ISysDoctorService sysDoctorService; |
| | | |
| | | /** |
| | | * 列表 |
| | | */ |
| | | @ApiOperation(value = "查询列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysDoctorService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | | * 查询 |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysDoctor model = sysDoctorService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysDoctor当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysDoctor当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysDoctor sysDoctor) { |
| | | SysDoctor model = sysDoctorService.findByObject(sysDoctor); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 新增or更新 |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@Valid @RequestBody SysDoctor sysDoctor, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysDoctorService.saveOrUpdate(sysDoctor); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysDoctor).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 删除 |
| | | */ |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | boolean v= sysDoctorService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: |
| | | * @Description: 医院基础信息表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-03-11 16:15:31 <br> |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/syshospital") |
| | | @Api(tags = "") |
| | | @Api(tags = "医院基础信息表") |
| | | public class SysHospitalController extends BaseController{ |
| | | @Autowired |
| | | private ISysHospitalService sysHospitalService; |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return sysHospitalService.findList(params); |
| | | return ResultBody.ok().data(sysHospitalService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | sysHospitalService.saveOrUpdate(sysHospital); |
| | | return ResultBody.ok().data(sysHospital).msg("保存成功"); |
| | | boolean v= sysHospitalService.saveOrUpdate(sysHospital); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysHospital).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | sysHospitalService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= sysHospitalService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | package com.kidgrow.usercenter.controller; |
| | | |
| | | import java.util.Map; |
| | | |
| | | import com.kidgrow.common.controller.BaseController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import io.swagger.annotations.Api; |
| | |
| | | import com.kidgrow.usercenter.service.ISysUserLogsService; |
| | | import com.kidgrow.common.model.*; |
| | | |
| | | import org.springframework.validation.BindingResult; |
| | | import javax.validation.Valid; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.ArrayList; |
| | |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 系统用户登录日志表 |
| | | * @Project: 用户中心 |
| | | * @CreateDate: Created in 2020-03-09 10:13:23 <br> |
| | | * @CreateDate: Created in 2020-04-02 18:32:36 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version: 1.0 |
| | | */ |
| | |
| | | @RestController |
| | | @RequestMapping("/sysuserlogs") |
| | | @Api(tags = "系统用户登录日志表") |
| | | public class SysUserLogsController { |
| | | public class SysUserLogsController extends BaseController{ |
| | | @Autowired |
| | | private ISysUserLogsService sysUserLogsService; |
| | | |
| | |
| | | @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer") |
| | | }) |
| | | @GetMapping |
| | | public PageResult list(@RequestParam Map<String, Object> params) { |
| | | return sysUserLogsService.findList(params); |
| | | public ResultBody<PageResult> list(@RequestParam Map<String, Object> params) { |
| | | if(params.size()==0){ |
| | | params.put("page",1); |
| | | params.put("limit",10); |
| | | } |
| | | return ResultBody.ok().data(sysUserLogsService.findList(params)); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiOperation(value = "查询") |
| | | @GetMapping("/{id}") |
| | | public ResultBody findUserById(@PathVariable Long id) { |
| | | public ResultBody findById(@PathVariable Long id) { |
| | | SysUserLogs model = sysUserLogsService.getById(id); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | | /** |
| | | * 根据SysUserLogs当做查询条件进行查询 |
| | | */ |
| | | @ApiOperation(value = "根据SysUserLogs当做查询条件进行查询") |
| | | @PostMapping("/query") |
| | | public ResultBody findByObject(@RequestBody SysUserLogs sysUserLogs) { |
| | | SysUserLogs model = sysUserLogsService.findByObject(sysUserLogs); |
| | | return ResultBody.ok().data(model).msg("查询成功"); |
| | | } |
| | | |
| | |
| | | */ |
| | | @ApiOperation(value = "保存") |
| | | @PostMapping |
| | | public ResultBody save(@RequestBody SysUserLogs sysUserLogs) { |
| | | sysUserLogsService.saveOrUpdate(sysUserLogs); |
| | | return ResultBody.ok().msg("保存成功"); |
| | | public ResultBody save(@Valid @RequestBody SysUserLogs sysUserLogs, BindingResult bindingResult) { |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | boolean v= sysUserLogsService.saveOrUpdate(sysUserLogs); |
| | | if(v) { |
| | | return ResultBody.ok().data(sysUserLogs).msg("保存成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | sysUserLogsService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= sysUserLogsService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |
| | |
| | | if (bindingResult.hasErrors()) { |
| | | return ResultBody.failed().msg(bindingResult.getFieldError().getDefaultMessage()); |
| | | } else { |
| | | orderTestService.saveOrUpdate(orderTest); |
| | | return ResultBody.ok().data(orderTest).msg("保存成功"); |
| | | boolean v= orderTestService.saveOrUpdate(orderTest); |
| | | if(v) { |
| | | return ResultBody.ok().data(orderTest).msg("保存成功"); |
| | | } |
| | | else{ |
| | | return ResultBody.failed().msg("保存失败"); |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation(value = "删除") |
| | | @DeleteMapping("/{id}") |
| | | public ResultBody delete(@PathVariable Long id) { |
| | | orderTestService.removeById(id); |
| | | return ResultBody.ok().msg("删除成功"); |
| | | boolean v= orderTestService.removeById(id); |
| | | if(v) { |
| | | return ResultBody.ok().msg("删除成功"); |
| | | } |
| | | else { |
| | | return ResultBody.failed().msg("删除失败"); |
| | | } |
| | | } |
| | | } |