| | |
| | | spring: |
| | | # 数据源 |
| | | datasource: |
| | | url: jdbc:mysql://127.0.0.1:3306/zhyl?useUnicode=true&characterEncoding=utf-8&useSSL=false |
| | | url: jdbc:mysql://127.0.0.1:3306/zhyl?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai |
| | | username: root |
| | | # Jasypt加密 可到common-utils中找到JasyptUtil加解密工具类生成加密结果 格式为ENC(加密结果) 以下解密结果为123456 |
| | | password: root |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.Area; |
| | | import cn.cetc54.platform.zhyl.service.IAreaService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "区域管理接口") |
| | | @RequestMapping("/platform/area") |
| | | @Transactional |
| | | public class AreaController { |
| | | |
| | | @Autowired |
| | | private IAreaService iAreaService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<Area> get(@PathVariable String id){ |
| | | |
| | | Area area = iAreaService.getById(id); |
| | | return new ResultUtil<Area>().setData(area); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<Area>> getAll(){ |
| | | |
| | | List<Area> list = iAreaService.list(); |
| | | return new ResultUtil<List<Area>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<Area>> getByPage(PageVo page){ |
| | | |
| | | IPage<Area> data = iAreaService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<Area>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<Area> saveOrUpdate(Area area){ |
| | | |
| | | if(iAreaService.saveOrUpdate(area)){ |
| | | return new ResultUtil<Area>().setData(area); |
| | | } |
| | | return new ResultUtil<Area>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iAreaService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDetails; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuDetailsService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "服务详情管理接口") |
| | | @RequestMapping("/platform/fuwuDetails") |
| | | @Transactional |
| | | public class FuwuDetailsController { |
| | | |
| | | @Autowired |
| | | private IFuwuDetailsService iFuwuDetailsService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<FuwuDetails> get(@PathVariable String id){ |
| | | |
| | | FuwuDetails fuwuDetails = iFuwuDetailsService.getById(id); |
| | | return new ResultUtil<FuwuDetails>().setData(fuwuDetails); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<FuwuDetails>> getAll(){ |
| | | |
| | | List<FuwuDetails> list = iFuwuDetailsService.list(); |
| | | return new ResultUtil<List<FuwuDetails>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<FuwuDetails>> getByPage(PageVo page){ |
| | | |
| | | IPage<FuwuDetails> data = iFuwuDetailsService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<FuwuDetails>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<FuwuDetails> saveOrUpdate(FuwuDetails fuwuDetails){ |
| | | |
| | | if(iFuwuDetailsService.saveOrUpdate(fuwuDetails)){ |
| | | return new ResultUtil<FuwuDetails>().setData(fuwuDetails); |
| | | } |
| | | return new ResultUtil<FuwuDetails>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iFuwuDetailsService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDuixiang; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuDuixiangService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "服务对象管理接口") |
| | | @RequestMapping("/platform/fuwuDuixiang") |
| | | @Transactional |
| | | public class FuwuDuixiangController { |
| | | |
| | | @Autowired |
| | | private IFuwuDuixiangService iFuwuDuixiangService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<FuwuDuixiang> get(@PathVariable String id){ |
| | | |
| | | FuwuDuixiang fuwuDuixiang = iFuwuDuixiangService.getById(id); |
| | | return new ResultUtil<FuwuDuixiang>().setData(fuwuDuixiang); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<FuwuDuixiang>> getAll(){ |
| | | |
| | | List<FuwuDuixiang> list = iFuwuDuixiangService.list(); |
| | | return new ResultUtil<List<FuwuDuixiang>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<FuwuDuixiang>> getByPage(PageVo page){ |
| | | |
| | | IPage<FuwuDuixiang> data = iFuwuDuixiangService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<FuwuDuixiang>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<FuwuDuixiang> saveOrUpdate(FuwuDuixiang fuwuDuixiang){ |
| | | |
| | | if(iFuwuDuixiangService.saveOrUpdate(fuwuDuixiang)){ |
| | | return new ResultUtil<FuwuDuixiang>().setData(fuwuDuixiang); |
| | | } |
| | | return new ResultUtil<FuwuDuixiang>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iFuwuDuixiangService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuPerson; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuPersonService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "服务人员管理接口") |
| | | @RequestMapping("/platform/fuwuPerson") |
| | | @Transactional |
| | | public class FuwuPersonController { |
| | | |
| | | @Autowired |
| | | private IFuwuPersonService iFuwuPersonService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<FuwuPerson> get(@PathVariable String id){ |
| | | |
| | | FuwuPerson fuwuPerson = iFuwuPersonService.getById(id); |
| | | return new ResultUtil<FuwuPerson>().setData(fuwuPerson); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<FuwuPerson>> getAll(){ |
| | | |
| | | List<FuwuPerson> list = iFuwuPersonService.list(); |
| | | return new ResultUtil<List<FuwuPerson>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<FuwuPerson>> getByPage(PageVo page){ |
| | | |
| | | IPage<FuwuPerson> data = iFuwuPersonService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<FuwuPerson>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<FuwuPerson> saveOrUpdate(FuwuPerson fuwuPerson){ |
| | | |
| | | if(iFuwuPersonService.saveOrUpdate(fuwuPerson)){ |
| | | return new ResultUtil<FuwuPerson>().setData(fuwuPerson); |
| | | } |
| | | return new ResultUtil<FuwuPerson>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iFuwuPersonService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.Order; |
| | | import cn.cetc54.platform.zhyl.service.IOrderService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "订单管理接口") |
| | | @RequestMapping("/platform/order") |
| | | @Transactional |
| | | public class OrderController { |
| | | |
| | | @Autowired |
| | | private IOrderService iOrderService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<Order> get(@PathVariable String id){ |
| | | |
| | | Order order = iOrderService.getById(id); |
| | | return new ResultUtil<Order>().setData(order); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<Order>> getAll(){ |
| | | |
| | | List<Order> list = iOrderService.list(); |
| | | return new ResultUtil<List<Order>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<Order>> getByPage(PageVo page){ |
| | | |
| | | IPage<Order> data = iOrderService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<Order>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<Order> saveOrUpdate(Order order){ |
| | | |
| | | if(iOrderService.saveOrUpdate(order)){ |
| | | return new ResultUtil<Order>().setData(order); |
| | | } |
| | | return new ResultUtil<Order>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iOrderService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.OrgFuwu; |
| | | import cn.cetc54.platform.zhyl.service.IOrgFuwuService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "服务机构管理接口") |
| | | @RequestMapping("/platform/orgFuwu") |
| | | @Transactional |
| | | public class OrgFuwuController { |
| | | |
| | | @Autowired |
| | | private IOrgFuwuService iOrgFuwuService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<OrgFuwu> get(@PathVariable String id){ |
| | | |
| | | OrgFuwu orgFuwu = iOrgFuwuService.getById(id); |
| | | return new ResultUtil<OrgFuwu>().setData(orgFuwu); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<OrgFuwu>> getAll(){ |
| | | |
| | | List<OrgFuwu> list = iOrgFuwuService.list(); |
| | | return new ResultUtil<List<OrgFuwu>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<OrgFuwu>> getByPage(PageVo page){ |
| | | |
| | | IPage<OrgFuwu> data = iOrgFuwuService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<OrgFuwu>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<OrgFuwu> saveOrUpdate(OrgFuwu orgFuwu){ |
| | | |
| | | if(iOrgFuwuService.saveOrUpdate(orgFuwu)){ |
| | | return new ResultUtil<OrgFuwu>().setData(orgFuwu); |
| | | } |
| | | return new ResultUtil<OrgFuwu>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iOrgFuwuService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.OrgYanglao; |
| | | import cn.cetc54.platform.zhyl.service.IOrgYanglaoService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "养老机构管理接口") |
| | | @RequestMapping("/platform/orgYanglao") |
| | | @Transactional |
| | | public class OrgYanglaoController { |
| | | |
| | | @Autowired |
| | | private IOrgYanglaoService iOrgYanglaoService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<OrgYanglao> get(@PathVariable String id){ |
| | | |
| | | OrgYanglao orgYanglao = iOrgYanglaoService.getById(id); |
| | | return new ResultUtil<OrgYanglao>().setData(orgYanglao); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<OrgYanglao>> getAll(){ |
| | | |
| | | List<OrgYanglao> list = iOrgYanglaoService.list(); |
| | | return new ResultUtil<List<OrgYanglao>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<OrgYanglao>> getByPage(PageVo page){ |
| | | |
| | | IPage<OrgYanglao> data = iOrgYanglaoService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<OrgYanglao>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<OrgYanglao> saveOrUpdate(OrgYanglao orgYanglao){ |
| | | |
| | | if(iOrgYanglaoService.saveOrUpdate(orgYanglao)){ |
| | | return new ResultUtil<OrgYanglao>().setData(orgYanglao); |
| | | } |
| | | return new ResultUtil<OrgYanglao>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iOrgYanglaoService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.Subsidy; |
| | | import cn.cetc54.platform.zhyl.service.ISubsidyService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "补贴管理接口") |
| | | @RequestMapping("/platform/subsidy") |
| | | @Transactional |
| | | public class SubsidyController { |
| | | |
| | | @Autowired |
| | | private ISubsidyService iSubsidyService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<Subsidy> get(@PathVariable String id){ |
| | | |
| | | Subsidy subsidy = iSubsidyService.getById(id); |
| | | return new ResultUtil<Subsidy>().setData(subsidy); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<Subsidy>> getAll(){ |
| | | |
| | | List<Subsidy> list = iSubsidyService.list(); |
| | | return new ResultUtil<List<Subsidy>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<Subsidy>> getByPage(PageVo page){ |
| | | |
| | | IPage<Subsidy> data = iSubsidyService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<Subsidy>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<Subsidy> saveOrUpdate(Subsidy subsidy){ |
| | | |
| | | if(iSubsidyService.saveOrUpdate(subsidy)){ |
| | | return new ResultUtil<Subsidy>().setData(subsidy); |
| | | } |
| | | return new ResultUtil<Subsidy>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iSubsidyService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.controller; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.common.utils.PageUtil; |
| | | import cn.cetc54.platform.core.common.utils.ResultUtil; |
| | | import cn.cetc54.platform.core.common.vo.PageVo; |
| | | import cn.cetc54.platform.core.common.vo.Result; |
| | | import cn.cetc54.platform.zhyl.entity.SubsidyLog; |
| | | import cn.cetc54.platform.zhyl.service.ISubsidyLogService; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "补贴日志管理接口") |
| | | @RequestMapping("/platform/subsidyLog") |
| | | @Transactional |
| | | public class SubsidyLogController { |
| | | |
| | | @Autowired |
| | | private ISubsidyLogService iSubsidyLogService; |
| | | |
| | | @RequestMapping(value = "/get/{id}", method = RequestMethod.GET) |
| | | @ApiOperation(value = "通过id获取") |
| | | public Result<SubsidyLog> get(@PathVariable String id){ |
| | | |
| | | SubsidyLog subsidyLog = iSubsidyLogService.getById(id); |
| | | return new ResultUtil<SubsidyLog>().setData(subsidyLog); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getAll", method = RequestMethod.GET) |
| | | @ApiOperation(value = "获取全部数据") |
| | | public Result<List<SubsidyLog>> getAll(){ |
| | | |
| | | List<SubsidyLog> list = iSubsidyLogService.list(); |
| | | return new ResultUtil<List<SubsidyLog>>().setData(list); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getByPage", method = RequestMethod.GET) |
| | | @ApiOperation(value = "分页获取") |
| | | public Result<IPage<SubsidyLog>> getByPage(PageVo page){ |
| | | |
| | | IPage<SubsidyLog> data = iSubsidyLogService.page(PageUtil.initMpPage(page)); |
| | | return new ResultUtil<IPage<SubsidyLog>>().setData(data); |
| | | } |
| | | |
| | | @RequestMapping(value = "/insertOrUpdate", method = RequestMethod.POST) |
| | | @ApiOperation(value = "编辑或更新数据") |
| | | public Result<SubsidyLog> saveOrUpdate(SubsidyLog subsidyLog){ |
| | | |
| | | if(iSubsidyLogService.saveOrUpdate(subsidyLog)){ |
| | | return new ResultUtil<SubsidyLog>().setData(subsidyLog); |
| | | } |
| | | return new ResultUtil<SubsidyLog>().setErrorMsg("操作失败"); |
| | | } |
| | | |
| | | @RequestMapping(value = "/delByIds", method = RequestMethod.POST) |
| | | @ApiOperation(value = "批量通过id删除") |
| | | public Result<Object> delAllByIds(@RequestParam String[] ids){ |
| | | |
| | | for(String id : ids){ |
| | | iSubsidyLogService.removeById(id); |
| | | } |
| | | return ResultUtil.success("批量通过id删除数据成功"); |
| | | } |
| | | } |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import cn.cetc54.platform.core.common.constant.CommonConstant; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * 区域 |
| | | * @author xfei |
| | | * @date 2020/12/10 |
| | | * @author |
| | | */ |
| | | public class Area { |
| | | } |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_area") |
| | | @TableName("t_yl_area") |
| | | @ApiModel(value = "区域") |
| | | public class Area extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 20 ,name = "name") |
| | | @ApiModelProperty(value = "区域名称") |
| | | private String name; |
| | | |
| | | @Column( length = 24 ,name = "pid") |
| | | @ApiModelProperty(value = "上级区域id") |
| | | private String pid; |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_fuwu_details") |
| | | @TableName("t_yl_fuwu_details") |
| | | @ApiModel(value = "服务详情") |
| | | public class FuwuDetails extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 24 ,name = "org_fw_id") |
| | | @ApiModelProperty(value = "服务机构id") |
| | | private String orgFwId; |
| | | |
| | | @Column( length = 24 ,name = "pid") |
| | | @ApiModelProperty(value = "隶属上级服务id") |
| | | private String pid; |
| | | |
| | | @Column( length = 24 ,name = "name") |
| | | @ApiModelProperty(value = "服务名称") |
| | | private String name; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_fuwu_duixiang") |
| | | @TableName("t_yl_fuwu_duixiang") |
| | | @ApiModel(value = "服务对象") |
| | | public class FuwuDuixiang extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 10 ,name = "name") |
| | | @ApiModelProperty(value = "名称") |
| | | private String name; |
| | | |
| | | @Column( length = 10 ,name = "age") |
| | | @ApiModelProperty(value = "年龄") |
| | | private Integer age; |
| | | |
| | | @Column( length = 10 ,name = "sex") |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | |
| | | @Column( length = 20 ,name = "sfzhm") |
| | | @ApiModelProperty(value = "身份证号码") |
| | | private String sfzhm; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 20 ,name = "record_year") |
| | | @ApiModelProperty(value = "登记年份") |
| | | private String recordYear; |
| | | |
| | | @Column( length = 20 ,name = "record_month") |
| | | @ApiModelProperty(value = "登记月份") |
| | | private String recordMonth; |
| | | |
| | | @Column( length = 200 ,name = "subsidyIds") |
| | | @ApiModelProperty(value = "补贴集合") |
| | | private String subsidyIds; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_fuwu_person") |
| | | @TableName("t_yl_fuwu_person") |
| | | @ApiModel(value = "服务人员") |
| | | public class FuwuPerson extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 10 ,name = "name") |
| | | @ApiModelProperty(value = "名称") |
| | | private String name; |
| | | |
| | | @Column( length = 10 ,name = "age") |
| | | @ApiModelProperty(value = "年龄") |
| | | private Integer age; |
| | | |
| | | @Column( length = 10 ,name = "sex") |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | |
| | | @Column( length = 20 ,name = "sfzhm") |
| | | @ApiModelProperty(value = "身份证号码") |
| | | private String sfzhm; |
| | | |
| | | @Column( length = 20 ,name = "org_fw_Id") |
| | | @ApiModelProperty(value = "服务机构id") |
| | | private String orgFwId; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_order") |
| | | @TableName("t_yl_order") |
| | | @ApiModel(value = "订单") |
| | | public class Order extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 24 ,name = "detail_id") |
| | | @ApiModelProperty(value = "服务详情id") |
| | | private String detailId; |
| | | |
| | | @Column( length = 24 ,name = "duixiang_id") |
| | | @ApiModelProperty(value = "服务对象id") |
| | | private String duixiangId; |
| | | |
| | | @Column( length = 24 ,name = "person_id") |
| | | @ApiModelProperty(value = "服务人员id") |
| | | private String personId; |
| | | |
| | | @Column( length = 2 ,name = "state") |
| | | @ApiModelProperty(value = "订单状态") |
| | | private Integer state; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_org_fuwu") |
| | | @TableName("t_yl_org_fuwu") |
| | | @ApiModel(value = "服务机构") |
| | | public class OrgFuwu extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 10 ,name = "name") |
| | | @ApiModelProperty(value = "名称") |
| | | private String name; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_org_yanglao") |
| | | @TableName("t_yl_org_yanglao") |
| | | @ApiModel(value = "养老机构") |
| | | public class OrgYanglao extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 10 ,name = "name") |
| | | @ApiModelProperty(value = "名称") |
| | | private String name; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 1 ,name = "type") |
| | | @ApiModelProperty(value = "类型") |
| | | private Integer type; |
| | | |
| | | @Column( length = 10 ,name = "square") |
| | | @ApiModelProperty(value = "面积") |
| | | private String square; |
| | | |
| | | @Column( length = 10 ,name = "bed_number") |
| | | @ApiModelProperty(value = "床位数") |
| | | private Integer bedNumber; |
| | | |
| | | @Column( length = 10 ,name = "nurse_number") |
| | | @ApiModelProperty(value = "护理人员数") |
| | | private Integer nurseNumber; |
| | | |
| | | @Column( length = 10 ,name = "duixiang_number") |
| | | @ApiModelProperty(value = "入住老人数") |
| | | private Integer duixiangNumber; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_subsidy") |
| | | @TableName("t_yl_subsidy") |
| | | @ApiModel(value = "补贴") |
| | | public class Subsidy extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 1 ,name = "type") |
| | | @ApiModelProperty(value = "补助类型") |
| | | private Integer type; |
| | | |
| | | @Column( length = 10 ,name = "money") |
| | | @ApiModelProperty(value = "补助金额") |
| | | private Double money; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.entity; |
| | | |
| | | |
| | | import cn.cetc54.platform.core.base.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.DynamicInsert; |
| | | import org.hibernate.annotations.DynamicUpdate; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Table; |
| | | |
| | | /** |
| | | * @author |
| | | */ |
| | | @Data |
| | | @Entity |
| | | @DynamicInsert |
| | | @DynamicUpdate |
| | | @Table(name = "t_yl_subsidy_log") |
| | | @TableName("t_yl_subsidy_log") |
| | | @ApiModel(value = "补贴日志") |
| | | public class SubsidyLog extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Column( length = 24 ,name = "area_id") |
| | | @ApiModelProperty(value = "区域id") |
| | | private String areaId; |
| | | |
| | | @Column( length = 20 ,name = "year") |
| | | @ApiModelProperty(value = "登记年份") |
| | | private String year; |
| | | |
| | | @Column( length = 20 ,name = "month") |
| | | @ApiModelProperty(value = "登记月份") |
| | | private String month; |
| | | |
| | | @Column( length = 1 ,name = "type") |
| | | @ApiModelProperty(value = "补助类型") |
| | | private Integer type; |
| | | |
| | | @Column( length = 10 ,name = "money") |
| | | @ApiModelProperty(value = "补助金额") |
| | | private Double money; |
| | | |
| | | @Column( length = 24 ,name = "duixiang_id") |
| | | @ApiModelProperty(value = "服务对象id") |
| | | private String duixiangId; |
| | | |
| | | @Column( length = 1 ,name = "state") |
| | | @ApiModelProperty(value = "状态,") |
| | | private Integer state; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Area; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 区域数据处理层 |
| | | * @author |
| | | */ |
| | | public interface AreaMapper extends BaseMapper<Area> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDetails; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务详情数据处理层 |
| | | * @author |
| | | */ |
| | | public interface FuwuDetailsMapper extends BaseMapper<FuwuDetails> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDuixiang; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务对象数据处理层 |
| | | * @author |
| | | */ |
| | | public interface FuwuDuixiangMapper extends BaseMapper<FuwuDuixiang> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuPerson; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务人员数据处理层 |
| | | * @author |
| | | */ |
| | | public interface FuwuPersonMapper extends BaseMapper<FuwuPerson> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Order; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 订单数据处理层 |
| | | * @author |
| | | */ |
| | | public interface OrderMapper extends BaseMapper<Order> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.OrgFuwu; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务机构数据处理层 |
| | | * @author |
| | | */ |
| | | public interface OrgFuwuMapper extends BaseMapper<OrgFuwu> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.OrgYanglao; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 养老机构数据处理层 |
| | | * @author |
| | | */ |
| | | public interface OrgYanglaoMapper extends BaseMapper<OrgYanglao> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.SubsidyLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴日志数据处理层 |
| | | * @author |
| | | */ |
| | | public interface SubsidyLogMapper extends BaseMapper<SubsidyLog> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Subsidy; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴数据处理层 |
| | | * @author |
| | | */ |
| | | public interface SubsidyMapper extends BaseMapper<Subsidy> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.Area; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 区域接口 |
| | | * @author |
| | | */ |
| | | public interface IAreaService extends IService<Area> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDetails; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务详情接口 |
| | | * @author |
| | | */ |
| | | public interface IFuwuDetailsService extends IService<FuwuDetails> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDuixiang; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务对象接口 |
| | | * @author |
| | | */ |
| | | public interface IFuwuDuixiangService extends IService<FuwuDuixiang> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuPerson; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务人员接口 |
| | | * @author |
| | | */ |
| | | public interface IFuwuPersonService extends IService<FuwuPerson> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.Order; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 订单接口 |
| | | * @author |
| | | */ |
| | | public interface IOrderService extends IService<Order> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.OrgFuwu; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务机构接口 |
| | | * @author |
| | | */ |
| | | public interface IOrgFuwuService extends IService<OrgFuwu> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.OrgYanglao; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 养老机构接口 |
| | | * @author |
| | | */ |
| | | public interface IOrgYanglaoService extends IService<OrgYanglao> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.SubsidyLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴日志接口 |
| | | * @author |
| | | */ |
| | | public interface ISubsidyLogService extends IService<SubsidyLog> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.cetc54.platform.zhyl.entity.Subsidy; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴接口 |
| | | * @author |
| | | */ |
| | | public interface ISubsidyService extends IService<Subsidy> { |
| | | |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.AreaMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Area; |
| | | import cn.cetc54.platform.zhyl.service.IAreaService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 区域接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IAreaServiceImpl extends ServiceImpl<AreaMapper, Area> implements IAreaService { |
| | | |
| | | @Autowired |
| | | private AreaMapper areaMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.FuwuDetailsMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDetails; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuDetailsService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务详情接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IFuwuDetailsServiceImpl extends ServiceImpl<FuwuDetailsMapper, FuwuDetails> implements IFuwuDetailsService { |
| | | |
| | | @Autowired |
| | | private FuwuDetailsMapper fuwuDetailsMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.FuwuDuixiangMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuDuixiang; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuDuixiangService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务对象接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IFuwuDuixiangServiceImpl extends ServiceImpl<FuwuDuixiangMapper, FuwuDuixiang> implements IFuwuDuixiangService { |
| | | |
| | | @Autowired |
| | | private FuwuDuixiangMapper fuwuDuixiangMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.FuwuPersonMapper; |
| | | import cn.cetc54.platform.zhyl.entity.FuwuPerson; |
| | | import cn.cetc54.platform.zhyl.service.IFuwuPersonService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务人员接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IFuwuPersonServiceImpl extends ServiceImpl<FuwuPersonMapper, FuwuPerson> implements IFuwuPersonService { |
| | | |
| | | @Autowired |
| | | private FuwuPersonMapper fuwuPersonMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.OrderMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Order; |
| | | import cn.cetc54.platform.zhyl.service.IOrderService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 订单接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IOrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements IOrderService { |
| | | |
| | | @Autowired |
| | | private OrderMapper orderMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.OrgFuwuMapper; |
| | | import cn.cetc54.platform.zhyl.entity.OrgFuwu; |
| | | import cn.cetc54.platform.zhyl.service.IOrgFuwuService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 服务机构接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IOrgFuwuServiceImpl extends ServiceImpl<OrgFuwuMapper, OrgFuwu> implements IOrgFuwuService { |
| | | |
| | | @Autowired |
| | | private OrgFuwuMapper orgFuwuMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.OrgYanglaoMapper; |
| | | import cn.cetc54.platform.zhyl.entity.OrgYanglao; |
| | | import cn.cetc54.platform.zhyl.service.IOrgYanglaoService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 养老机构接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IOrgYanglaoServiceImpl extends ServiceImpl<OrgYanglaoMapper, OrgYanglao> implements IOrgYanglaoService { |
| | | |
| | | @Autowired |
| | | private OrgYanglaoMapper orgYanglaoMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.SubsidyLogMapper; |
| | | import cn.cetc54.platform.zhyl.entity.SubsidyLog; |
| | | import cn.cetc54.platform.zhyl.service.ISubsidyLogService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴日志接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class ISubsidyLogServiceImpl extends ServiceImpl<SubsidyLogMapper, SubsidyLog> implements ISubsidyLogService { |
| | | |
| | | @Autowired |
| | | private SubsidyLogMapper subsidyLogMapper; |
| | | } |
New file |
| | |
| | | package cn.cetc54.platform.zhyl.serviceimpl; |
| | | |
| | | import cn.cetc54.platform.zhyl.mapper.SubsidyMapper; |
| | | import cn.cetc54.platform.zhyl.entity.Subsidy; |
| | | import cn.cetc54.platform.zhyl.service.ISubsidyService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 补贴接口实现 |
| | | * @author |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class ISubsidyServiceImpl extends ServiceImpl<SubsidyMapper, Subsidy> implements ISubsidyService { |
| | | |
| | | @Autowired |
| | | private SubsidyMapper subsidyMapper; |
| | | } |
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="cn.cetc54.platform.zhyl.mapper.FuwuDetailsMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.FuwuDuixiangMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.FuwuPersonMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.Fuwu_detailsMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.Fuwu_duixiangMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.Fuwu_personMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.OrderMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.OrgFuwuMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.OrgYanglaoMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.SubsidyLogMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.SubsidyMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.AreaMapper"> |
| | | |
| | | </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="cn.cetc54.platform.zhyl.mapper.Yl_areaMapper"> |
| | | |
| | | </mapper> |