Browse Source

feat:[资源库管理][给药制剂管理][麻精药管理][钥匙管理]

master
15881625488@163.com 3 weeks ago
parent
commit
02b0001494
60 changed files with 2864 additions and 0 deletions
  1. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjController.java
  2. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjFfjlController.java
  3. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjJcgjController.java
  4. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjTzController.java
  5. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyController.java
  6. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyFfjlController.java
  7. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyJcgjController.java
  8. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyTzController.java
  9. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgController.java
  10. +66
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgYjController.java
  11. +204
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Gyzj.java
  12. +218
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjFfjl.java
  13. +95
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjJcgj.java
  14. +123
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjTz.java
  15. +204
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Mjy.java
  16. +218
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyFfjl.java
  17. +94
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyJcgj.java
  18. +123
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyTz.java
  19. +84
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Zcg.java
  20. +71
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/ZcgYj.java
  21. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjFfjlMapper.java
  22. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjJcgjMapper.java
  23. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjMapper.java
  24. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjTzMapper.java
  25. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyFfjlMapper.java
  26. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyJcgjMapper.java
  27. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyMapper.java
  28. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyTzMapper.java
  29. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgMapper.java
  30. +14
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgYjMapper.java
  31. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjFfjlService.java
  32. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjJcgjService.java
  33. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjService.java
  34. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjTzService.java
  35. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyFfjlService.java
  36. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyJcgjService.java
  37. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyService.java
  38. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyTzService.java
  39. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgService.java
  40. +23
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgYjService.java
  41. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjFfjlServiceImpl.java
  42. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjJcgjServiceImpl.java
  43. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java
  44. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjTzServiceImpl.java
  45. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyFfjlServiceImpl.java
  46. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyJcgjServiceImpl.java
  47. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java
  48. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyTzServiceImpl.java
  49. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgServiceImpl.java
  50. +34
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgYjServiceImpl.java
  51. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjFfjlMapper.xml
  52. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjJcgjMapper.xml
  53. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjMapper.xml
  54. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjTzMapper.xml
  55. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml
  56. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyJcgjMapper.xml
  57. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyMapper.xml
  58. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyTzMapper.xml
  59. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgMapper.xml
  60. +6
    -0
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgYjMapper.xml

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.Gyzj;
import com.hxhq.business.service.IGyzjService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 给药制剂Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/gyzj")
public class GyzjController extends BaseController
{
@Autowired
private IGyzjService gyzjService;
/**
* 查询给药制剂列表
*/
@GetMapping("/list")
public TableDataInfo list(Gyzj gyzj)
{
startPage();
List<Gyzj> list = gyzjService.queryList(gyzj);
return getDataTable(list);
}
/**
* 获取给药制剂详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(gyzjService.getById(id));
}
/**
* 新增给药制剂信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody Gyzj gyzj)
{
return toAjax(gyzjService.saveOrUpdate(gyzj));
}
/**
* 删除给药制剂信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(gyzjService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjFfjlController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.GyzjFfjl;
import com.hxhq.business.service.IGyzjFfjlService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 给药制剂-发放记录Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/gyzjFfjl")
public class GyzjFfjlController extends BaseController
{
@Autowired
private IGyzjFfjlService gyzjFfjlService;
/**
* 查询给药制剂-发放记录列表
*/
@GetMapping("/list")
public TableDataInfo list(GyzjFfjl gyzjFfjl)
{
startPage();
List<GyzjFfjl> list = gyzjFfjlService.queryList(gyzjFfjl);
return getDataTable(list);
}
/**
* 获取给药制剂-发放记录详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(gyzjFfjlService.getById(id));
}
/**
* 新增给药制剂-发放记录信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody GyzjFfjl gyzjFfjl)
{
return toAjax(gyzjFfjlService.saveOrUpdate(gyzjFfjl));
}
/**
* 删除给药制剂-发放记录信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(gyzjFfjlService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjJcgjController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.GyzjJcgj;
import com.hxhq.business.service.IGyzjJcgjService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 给药制剂-稽查轨迹Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/gyzjJcgj")
public class GyzjJcgjController extends BaseController
{
@Autowired
private IGyzjJcgjService gyzjJcgjService;
/**
* 查询给药制剂-稽查轨迹列表
*/
@GetMapping("/list")
public TableDataInfo list(GyzjJcgj gyzjJcgj)
{
startPage();
List<GyzjJcgj> list = gyzjJcgjService.queryList(gyzjJcgj);
return getDataTable(list);
}
/**
* 获取给药制剂-稽查轨迹详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(gyzjJcgjService.getById(id));
}
/**
* 新增给药制剂-稽查轨迹信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody GyzjJcgj gyzjJcgj)
{
return toAjax(gyzjJcgjService.saveOrUpdate(gyzjJcgj));
}
/**
* 删除给药制剂-稽查轨迹信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(gyzjJcgjService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjTzController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.GyzjTz;
import com.hxhq.business.service.IGyzjTzService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 给药制剂-台账Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/gyzjTz")
public class GyzjTzController extends BaseController
{
@Autowired
private IGyzjTzService gyzjTzService;
/**
* 查询给药制剂-台账列表
*/
@GetMapping("/list")
public TableDataInfo list(GyzjTz gyzjTz)
{
startPage();
List<GyzjTz> list = gyzjTzService.queryList(gyzjTz);
return getDataTable(list);
}
/**
* 获取给药制剂-台账详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(gyzjTzService.getById(id));
}
/**
* 新增给药制剂-台账信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody GyzjTz gyzjTz)
{
return toAjax(gyzjTzService.saveOrUpdate(gyzjTz));
}
/**
* 删除给药制剂-台账信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(gyzjTzService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.Mjy;
import com.hxhq.business.service.IMjyService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 麻精药Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/mjy")
public class MjyController extends BaseController
{
@Autowired
private IMjyService mjyService;
/**
* 查询麻精药列表
*/
@GetMapping("/list")
public TableDataInfo list(Mjy mjy)
{
startPage();
List<Mjy> list = mjyService.queryList(mjy);
return getDataTable(list);
}
/**
* 获取麻精药详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(mjyService.getById(id));
}
/**
* 新增麻精药信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody Mjy mjy)
{
return toAjax(mjyService.saveOrUpdate(mjy));
}
/**
* 删除麻精药信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(mjyService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyFfjlController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.MjyFfjl;
import com.hxhq.business.service.IMjyFfjlService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 麻精药-发放记录Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/mjyFfjl")
public class MjyFfjlController extends BaseController
{
@Autowired
private IMjyFfjlService mjyFfjlService;
/**
* 查询麻精药-发放记录列表
*/
@GetMapping("/list")
public TableDataInfo list(MjyFfjl mjyFfjl)
{
startPage();
List<MjyFfjl> list = mjyFfjlService.queryList(mjyFfjl);
return getDataTable(list);
}
/**
* 获取麻精药-发放记录详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(mjyFfjlService.getById(id));
}
/**
* 新增麻精药-发放记录信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody MjyFfjl mjyFfjl)
{
return toAjax(mjyFfjlService.saveOrUpdate(mjyFfjl));
}
/**
* 删除麻精药-发放记录信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(mjyFfjlService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyJcgjController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.MjyJcgj;
import com.hxhq.business.service.IMjyJcgjService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 麻精药-稽查轨迹Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/mjyJcgj")
public class MjyJcgjController extends BaseController
{
@Autowired
private IMjyJcgjService mjyJcgjService;
/**
* 查询麻精药-稽查轨迹列表
*/
@GetMapping("/list")
public TableDataInfo list(MjyJcgj mjyJcgj)
{
startPage();
List<MjyJcgj> list = mjyJcgjService.queryList(mjyJcgj);
return getDataTable(list);
}
/**
* 获取麻精药-稽查轨迹详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(mjyJcgjService.getById(id));
}
/**
* 新增麻精药-稽查轨迹信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody MjyJcgj mjyJcgj)
{
return toAjax(mjyJcgjService.saveOrUpdate(mjyJcgj));
}
/**
* 删除麻精药-稽查轨迹信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(mjyJcgjService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyTzController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.MjyTz;
import com.hxhq.business.service.IMjyTzService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 麻精药-台账Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/mjyTz")
public class MjyTzController extends BaseController
{
@Autowired
private IMjyTzService mjyTzService;
/**
* 查询麻精药-台账列表
*/
@GetMapping("/list")
public TableDataInfo list(MjyTz mjyTz)
{
startPage();
List<MjyTz> list = mjyTzService.queryList(mjyTz);
return getDataTable(list);
}
/**
* 获取麻精药-台账详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(mjyTzService.getById(id));
}
/**
* 新增麻精药-台账信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody MjyTz mjyTz)
{
return toAjax(mjyTzService.saveOrUpdate(mjyTz));
}
/**
* 删除麻精药-台账信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(mjyTzService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.Zcg;
import com.hxhq.business.service.IZcgService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 暂存柜Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/zcg")
public class ZcgController extends BaseController
{
@Autowired
private IZcgService zcgService;
/**
* 查询暂存柜列表
*/
@GetMapping("/list")
public TableDataInfo list(Zcg zck)
{
startPage();
List<Zcg> list = zcgService.queryList(zck);
return getDataTable(list);
}
/**
* 获取暂存柜详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(zcgService.getById(id));
}
/**
* 新增暂存柜信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody Zcg zck)
{
return toAjax(zcgService.saveOrUpdate(zck));
}
/**
* 删除暂存柜信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(zcgService.removeByIds(Arrays.asList(ids)));
}
}

+ 66
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgYjController.java View File

@ -0,0 +1,66 @@
package com.hxhq.business.controller;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.hxhq.business.domain.ZcgYj;
import com.hxhq.business.service.IZcgYjService;
import com.hxhq.common.core.web.controller.BaseController;
import com.hxhq.common.core.web.domain.AjaxResult;
import com.hxhq.common.core.web.page.TableDataInfo;
/**
* 暂存柜-关联药剂Controller
*
* @author hxhq
* @date 2025-12-18
*/
@RestController
@RequestMapping("/business/zcgYj")
public class ZcgYjController extends BaseController
{
@Autowired
private IZcgYjService zcgYjService;
/**
* 查询暂存柜-关联药剂列表
*/
@GetMapping("/list")
public TableDataInfo list(ZcgYj zcgYj)
{
startPage();
List<ZcgYj> list = zcgYjService.queryList(zcgYj);
return getDataTable(list);
}
/**
* 获取暂存柜-关联药剂详细信息
*/
@GetMapping(value = "/info")
public AjaxResult getInfo(Long id)
{
return AjaxResult.success(zcgYjService.getById(id));
}
/**
* 新增暂存柜-关联药剂信息
*/
@PostMapping("/save")
public AjaxResult save(@RequestBody ZcgYj zcgYj)
{
return toAjax(zcgYjService.saveOrUpdate(zcgYj));
}
/**
* 删除暂存柜-关联药剂信息
*/
@PostMapping("/delete")
public AjaxResult delete(@RequestBody Long[] ids)
{
return toAjax(zcgYjService.removeByIds(Arrays.asList(ids)));
}
}

+ 204
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Gyzj.java View File

@ -0,0 +1,204 @@
package com.hxhq.business.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 给药制剂对象 t_gyzj
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_gyzj")
public class Gyzj extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 名称 */
private String mc;
/** 编号 */
private String bh;
/** 浓度 */
private String nd;
/** 浓度单位 */
private String nddw;
/** 库存 */
private String kc;
/** 库存单位 */
private String kcdw;
/** 失效日期 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sxrq;
/** 制剂状态:1:入库;3:已发放;5:已锁定;7:待归档;9:归档;11:待解档 */
private Long zt;
/** 借阅状态:1:未借阅;3:借阅中 */
private Long jyzt;
/** 关联钥匙 */
private Long zcgId;
/** 存储条件 */
private String cctj;
/** 存储位置 */
private String ccwz;
/** 表单id */
private Long bdId;
/** 试验id */
private Long syId;
public void setMc(String mc)
{
this.mc = mc;
}
public String getMc()
{
return mc;
}
public void setBh(String bh)
{
this.bh = bh;
}
public String getBh()
{
return bh;
}
public void setNd(String nd)
{
this.nd = nd;
}
public String getNd()
{
return nd;
}
public void setNddw(String nddw)
{
this.nddw = nddw;
}
public String getNddw()
{
return nddw;
}
public void setKc(String kc)
{
this.kc = kc;
}
public String getKc()
{
return kc;
}
public void setKcdw(String kcdw)
{
this.kcdw = kcdw;
}
public String getKcdw()
{
return kcdw;
}
public void setSxrq(Date sxrq)
{
this.sxrq = sxrq;
}
public Date getSxrq()
{
return sxrq;
}
public void setZt(Long zt)
{
this.zt = zt;
}
public Long getZt()
{
return zt;
}
public void setJyzt(Long jyzt)
{
this.jyzt = jyzt;
}
public Long getJyzt()
{
return jyzt;
}
public void setZcgId(Long zcgId)
{
this.zcgId = zcgId;
}
public Long getZcgId()
{
return zcgId;
}
public void setCctj(String cctj)
{
this.cctj = cctj;
}
public String getCctj()
{
return cctj;
}
public void setCcwz(String ccwz)
{
this.ccwz = ccwz;
}
public String getCcwz()
{
return ccwz;
}
public void setBdId(Long bdId)
{
this.bdId = bdId;
}
public Long getBdId()
{
return bdId;
}
public void setSyId(Long syId)
{
this.syId = syId;
}
public Long getSyId()
{
return syId;
}
}

+ 218
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjFfjl.java View File

@ -0,0 +1,218 @@
package com.hxhq.business.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 给药制剂-发放记录对象 t_gyzj_ffjl
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_gyzj_ffjl")
public class GyzjFfjl extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 给药制剂id */
private Long gyzjId;
/** 目的 */
private String md;
/** 转移条件 */
private String zytj;
/** 出库时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date cksj;
/** 出库净重 */
private String ckjz;
/** 入库时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date rksj;
/** 入库净重 */
private String rkjz;
/** 使用量 */
private String syl;
/** 领取人1 */
private Long lqr1;
/** 领取人2 */
private Long lqr2;
/** 库管员1 */
private Long kgy1;
/** 库管员2 */
private Long kgy2;
/** 暂存柜id */
private Long zckId;
/** 状态 */
private Integer zt;
/** 借阅状态 */
private Integer jyzt;
public void setGyzjId(Long gyzjId)
{
this.gyzjId = gyzjId;
}
public Long getGyzjId()
{
return gyzjId;
}
public void setMd(String md)
{
this.md = md;
}
public String getMd()
{
return md;
}
public void setZytj(String zytj)
{
this.zytj = zytj;
}
public String getZytj()
{
return zytj;
}
public void setCksj(Date cksj)
{
this.cksj = cksj;
}
public Date getCksj()
{
return cksj;
}
public void setCkjz(String ckjz)
{
this.ckjz = ckjz;
}
public String getCkjz()
{
return ckjz;
}
public void setRksj(Date rksj)
{
this.rksj = rksj;
}
public Date getRksj()
{
return rksj;
}
public void setRkjz(String rkjz)
{
this.rkjz = rkjz;
}
public String getRkjz()
{
return rkjz;
}
public void setSyl(String syl)
{
this.syl = syl;
}
public String getSyl()
{
return syl;
}
public void setLqr1(Long lqr1)
{
this.lqr1 = lqr1;
}
public Long getLqr1()
{
return lqr1;
}
public void setLqr2(Long lqr2)
{
this.lqr2 = lqr2;
}
public Long getLqr2()
{
return lqr2;
}
public void setKgy1(Long kgy1)
{
this.kgy1 = kgy1;
}
public Long getKgy1()
{
return kgy1;
}
public void setKgy2(Long kgy2)
{
this.kgy2 = kgy2;
}
public Long getKgy2()
{
return kgy2;
}
public void setZckId(Long zckId)
{
this.zckId = zckId;
}
public Long getZckId()
{
return zckId;
}
public void setZt(Integer zt)
{
this.zt = zt;
}
public Integer getZt()
{
return zt;
}
public void setJyzt(Integer jyzt)
{
this.jyzt = jyzt;
}
public Integer getJyzt()
{
return jyzt;
}
}

+ 95
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjJcgj.java View File

@ -0,0 +1,95 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
import io.swagger.v3.oas.models.security.SecurityScheme;
/**
* 给药制剂-稽查轨迹对象 t_gyzj_jcgj
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_gyzj_jcgj")
public class GyzjJcgj extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 给药制剂id */
private Long gyzjId;
/** 稽查轨迹类型 */
private String jcgjlx;
/** 稽查名称 */
private String jcmc;
/** 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 */
private Integer jcmcys;
/** 稽查内容 */
private String jcnr;
/** 签名意义 */
private String qmyy;
/** 签名人id */
private Long qmrId;
public Long getGyzjId() {
return gyzjId;
}
public void setGyzjId(Long gyzjId) {
this.gyzjId = gyzjId;
}
public String getJcgjlx() {
return jcgjlx;
}
public void setJcgjlx(String jcgjlx) {
this.jcgjlx = jcgjlx;
}
public String getJcmc() {
return jcmc;
}
public void setJcmc(String jcmc) {
this.jcmc = jcmc;
}
public Integer getJcmcys() {
return jcmcys;
}
public void setJcmcys(Integer jcmcys) {
this.jcmcys = jcmcys;
}
public String getJcnr() {
return jcnr;
}
public void setJcnr(String jcnr) {
this.jcnr = jcnr;
}
public String getQmyy() {
return qmyy;
}
public void setQmyy(String qmyy) {
this.qmyy = qmyy;
}
public Long getQmrId() {
return qmrId;
}
public void setQmrId(Long qmrId) {
this.qmrId = qmrId;
}
}

+ 123
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjTz.java View File

@ -0,0 +1,123 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 给药制剂-台账对象 t_gyzj_tz
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_gyzj_tz")
public class GyzjTz extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 给药制剂id */
private Long gyzjId;
/** 使用人id */
private Long syrId;
/** 领取人id */
private Long lqrId;
/** 发放人id */
private Long ffrId;
/** 归还人id */
private Long ghrId;
/** 接收人id */
private Long jsrId;
/** 操作类型 */
private String czlx;
/** 操作量 */
private String cznr;
public void setGyzjId(Long gyzjId)
{
this.gyzjId = gyzjId;
}
public Long getGyzjId()
{
return gyzjId;
}
public void setSyrId(Long syrId)
{
this.syrId = syrId;
}
public Long getSyrId()
{
return syrId;
}
public void setLqrId(Long lqrId)
{
this.lqrId = lqrId;
}
public Long getLqrId()
{
return lqrId;
}
public void setFfrId(Long ffrId)
{
this.ffrId = ffrId;
}
public Long getFfrId()
{
return ffrId;
}
public void setGhrId(Long ghrId)
{
this.ghrId = ghrId;
}
public Long getGhrId()
{
return ghrId;
}
public void setJsrId(Long jsrId)
{
this.jsrId = jsrId;
}
public Long getJsrId()
{
return jsrId;
}
public void setCzlx(String czlx)
{
this.czlx = czlx;
}
public String getCzlx()
{
return czlx;
}
public void setCznr(String cznr)
{
this.cznr = cznr;
}
public String getCznr()
{
return cznr;
}
}

+ 204
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Mjy.java View File

@ -0,0 +1,204 @@
package com.hxhq.business.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 麻精药对象 t_mjy
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_mjy")
public class Mjy extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 名称 */
private String mc;
/** 编号 */
private String bh;
/** 浓度 */
private String nd;
/** 浓度单位 */
private String nddw;
/** 库存 */
private String kc;
/** 库存单位 */
private String kcdw;
/** 失效日期 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date sxrq;
/** 制剂状态:1:入库;3:已发放;5:已锁定;7:待归档;9:归档;11:待解档 */
private Long zt;
/** 借阅状态:1:未借阅;3:借阅中 */
private Long jyzt;
/** 关联钥匙 */
private Long zcgId;
/** 存储条件 */
private String cctj;
/** 存储位置 */
private String ccwz;
/** 表单id */
private Long bdId;
/** 试验id */
private Long syId;
public void setMc(String mc)
{
this.mc = mc;
}
public String getMc()
{
return mc;
}
public void setBh(String bh)
{
this.bh = bh;
}
public String getBh()
{
return bh;
}
public void setNd(String nd)
{
this.nd = nd;
}
public String getNd()
{
return nd;
}
public void setNddw(String nddw)
{
this.nddw = nddw;
}
public String getNddw()
{
return nddw;
}
public void setKc(String kc)
{
this.kc = kc;
}
public String getKc()
{
return kc;
}
public void setKcdw(String kcdw)
{
this.kcdw = kcdw;
}
public String getKcdw()
{
return kcdw;
}
public void setSxrq(Date sxrq)
{
this.sxrq = sxrq;
}
public Date getSxrq()
{
return sxrq;
}
public void setZt(Long zt)
{
this.zt = zt;
}
public Long getZt()
{
return zt;
}
public void setJyzt(Long jyzt)
{
this.jyzt = jyzt;
}
public Long getJyzt()
{
return jyzt;
}
public void setZcgId(Long zcgId)
{
this.zcgId = zcgId;
}
public Long getZcgId()
{
return zcgId;
}
public void setCctj(String cctj)
{
this.cctj = cctj;
}
public String getCctj()
{
return cctj;
}
public void setCcwz(String ccwz)
{
this.ccwz = ccwz;
}
public String getCcwz()
{
return ccwz;
}
public void setBdId(Long bdId)
{
this.bdId = bdId;
}
public Long getBdId()
{
return bdId;
}
public void setSyId(Long syId)
{
this.syId = syId;
}
public Long getSyId()
{
return syId;
}
}

+ 218
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyFfjl.java View File

@ -0,0 +1,218 @@
package com.hxhq.business.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 麻精药-发放记录对象 t_mjy_ffjl
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_mjy_ffjl")
public class MjyFfjl extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 麻精药id */
private Long mjyId;
/** 目的 */
private String md;
/** 转移条件 */
private String zytj;
/** 出库时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date cksj;
/** 出库净重 */
private String ckjz;
/** 入库时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date rksj;
/** 入库净重 */
private String rkjz;
/** 使用量 */
private String syl;
/** 领取人1 */
private Long lqr1;
/** 领取人2 */
private Long lqr2;
/** 库管员1 */
private Long kgy1;
/** 库管员2 */
private Long kgy2;
/** 暂存柜id */
private Long zckId;
/** 状态 */
private Integer zt;
/** 借阅状态 */
private Integer jyzt;
public void setMjyId(Long mjyId)
{
this.mjyId = mjyId;
}
public Long getMjyId()
{
return mjyId;
}
public void setMd(String md)
{
this.md = md;
}
public String getMd()
{
return md;
}
public void setZytj(String zytj)
{
this.zytj = zytj;
}
public String getZytj()
{
return zytj;
}
public void setCksj(Date cksj)
{
this.cksj = cksj;
}
public Date getCksj()
{
return cksj;
}
public void setCkjz(String ckjz)
{
this.ckjz = ckjz;
}
public String getCkjz()
{
return ckjz;
}
public void setRksj(Date rksj)
{
this.rksj = rksj;
}
public Date getRksj()
{
return rksj;
}
public void setRkjz(String rkjz)
{
this.rkjz = rkjz;
}
public String getRkjz()
{
return rkjz;
}
public void setSyl(String syl)
{
this.syl = syl;
}
public String getSyl()
{
return syl;
}
public void setLqr1(Long lqr1)
{
this.lqr1 = lqr1;
}
public Long getLqr1()
{
return lqr1;
}
public void setLqr2(Long lqr2)
{
this.lqr2 = lqr2;
}
public Long getLqr2()
{
return lqr2;
}
public void setKgy1(Long kgy1)
{
this.kgy1 = kgy1;
}
public Long getKgy1()
{
return kgy1;
}
public void setKgy2(Long kgy2)
{
this.kgy2 = kgy2;
}
public Long getKgy2()
{
return kgy2;
}
public void setZckId(Long zckId)
{
this.zckId = zckId;
}
public Long getZckId()
{
return zckId;
}
public void setZt(Integer zt)
{
this.zt = zt;
}
public Integer getZt()
{
return zt;
}
public void setJyzt(Integer jyzt)
{
this.jyzt = jyzt;
}
public Integer getJyzt()
{
return jyzt;
}
}

+ 94
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyJcgj.java View File

@ -0,0 +1,94 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 麻精药-稽查轨迹对象 t_mjy_jcgj
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_mjy_jcgj")
public class MjyJcgj extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 麻精药id */
private Long mjyId;
/** 稽查轨迹类型 */
private String jcgjlx;
/** 稽查名称 */
private String jcmc;
/** 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 */
private Integer jcmcys;
/** 稽查内容 */
private String jcnr;
/** 签名意义 */
private String qmyy;
/** 签名人id */
private Long qmrId;
public Long getMjyId() {
return mjyId;
}
public void setMjyId(Long mjyId) {
this.mjyId = mjyId;
}
public String getJcgjlx() {
return jcgjlx;
}
public void setJcgjlx(String jcgjlx) {
this.jcgjlx = jcgjlx;
}
public String getJcmc() {
return jcmc;
}
public void setJcmc(String jcmc) {
this.jcmc = jcmc;
}
public Integer getJcmcys() {
return jcmcys;
}
public void setJcmcys(Integer jcmcys) {
this.jcmcys = jcmcys;
}
public String getJcnr() {
return jcnr;
}
public void setJcnr(String jcnr) {
this.jcnr = jcnr;
}
public String getQmyy() {
return qmyy;
}
public void setQmyy(String qmyy) {
this.qmyy = qmyy;
}
public Long getQmrId() {
return qmrId;
}
public void setQmrId(Long qmrId) {
this.qmrId = qmrId;
}
}

+ 123
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyTz.java View File

@ -0,0 +1,123 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 麻精药-台账对象 t_mjy_tz
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_mjy_tz")
public class MjyTz extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 麻精药id */
private Long mjyId;
/** 使用人id */
private Long syrId;
/** 领取人id */
private Long lqrId;
/** 发放人id */
private Long ffrId;
/** 归还人id */
private Long ghrId;
/** 接收人id */
private Long jsrId;
/** 操作类型 */
private String czlx;
/** 操作量 */
private String cznr;
public void setMjyId(Long mjyId)
{
this.mjyId = mjyId;
}
public Long getMjyId()
{
return mjyId;
}
public void setSyrId(Long syrId)
{
this.syrId = syrId;
}
public Long getSyrId()
{
return syrId;
}
public void setLqrId(Long lqrId)
{
this.lqrId = lqrId;
}
public Long getLqrId()
{
return lqrId;
}
public void setFfrId(Long ffrId)
{
this.ffrId = ffrId;
}
public Long getFfrId()
{
return ffrId;
}
public void setGhrId(Long ghrId)
{
this.ghrId = ghrId;
}
public Long getGhrId()
{
return ghrId;
}
public void setJsrId(Long jsrId)
{
this.jsrId = jsrId;
}
public Long getJsrId()
{
return jsrId;
}
public void setCzlx(String czlx)
{
this.czlx = czlx;
}
public String getCzlx()
{
return czlx;
}
public void setCznr(String cznr)
{
this.cznr = cznr;
}
public String getCznr()
{
return cznr;
}
}

+ 84
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Zcg.java View File

@ -0,0 +1,84 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 暂存柜对象 t_zcg
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_zcg")
public class Zcg extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 暂存库名称 */
private String mc;
/** 钥匙编号 */
private String bh;
/** 钥匙1领取人 */
private Long yslqr1;
/** 钥匙2领取人 */
private Long yslqr2;
/** 状态:1:未借用;5:借用中;10:停用 */
private Long zt;
public void setMc(String mc)
{
this.mc = mc;
}
public String getMc()
{
return mc;
}
public void setBh(String bh)
{
this.bh = bh;
}
public String getBh()
{
return bh;
}
public void setYslqr1(Long yslqr1)
{
this.yslqr1 = yslqr1;
}
public Long getYslqr1()
{
return yslqr1;
}
public void setYslqr2(Long yslqr2)
{
this.yslqr2 = yslqr2;
}
public Long getYslqr2()
{
return yslqr2;
}
public void setZt(Long zt)
{
this.zt = zt;
}
public Long getZt()
{
return zt;
}
}

+ 71
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/ZcgYj.java View File

@ -0,0 +1,71 @@
package com.hxhq.business.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.hxhq.common.core.domain.MpBaseEntity;
/**
* 暂存柜-关联药剂对象 t_zcg_yj
*
* @author hxhq
* @date 2025-12-18
*/
@TableName("t_zcg_yj")
public class ZcgYj extends MpBaseEntity
{
private static final long serialVersionUID = 1L;
/** 暂存库id */
private Long zcgId;
/** 药剂名称 */
private String yjmc;
/** 药剂id */
private Long yjId;
/** 药剂类型:1:供试品;3:给药制剂;5:麻精药 */
private Long yjlx;
public void setZcgId(Long zcgId)
{
this.zcgId = zcgId;
}
public Long getZcgId()
{
return zcgId;
}
public void setYjmc(String yjmc)
{
this.yjmc = yjmc;
}
public String getYjmc()
{
return yjmc;
}
public void setYjId(Long yjId)
{
this.yjId = yjId;
}
public Long getYjId()
{
return yjId;
}
public void setYjlx(Long yjlx)
{
this.yjlx = yjlx;
}
public Long getYjlx()
{
return yjlx;
}
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjFfjlMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.GyzjFfjl;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 给药制剂-发放记录Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface GyzjFfjlMapper extends BaseMapper<GyzjFfjl>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjJcgjMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.GyzjJcgj;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 给药制剂-稽查轨迹Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface GyzjJcgjMapper extends BaseMapper<GyzjJcgj>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.Gyzj;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 给药制剂Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface GyzjMapper extends BaseMapper<Gyzj>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjTzMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.GyzjTz;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 给药制剂-台账Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface GyzjTzMapper extends BaseMapper<GyzjTz>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyFfjlMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.MjyFfjl;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 麻精药-发放记录Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface MjyFfjlMapper extends BaseMapper<MjyFfjl>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyJcgjMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.MjyJcgj;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 麻精药-稽查轨迹Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface MjyJcgjMapper extends BaseMapper<MjyJcgj>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.Mjy;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 麻精药Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface MjyMapper extends BaseMapper<Mjy>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyTzMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.MjyTz;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 麻精药-台账Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface MjyTzMapper extends BaseMapper<MjyTz>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.Zcg;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 暂存柜Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface ZcgMapper extends BaseMapper<Zcg>
{
}

+ 14
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgYjMapper.java View File

@ -0,0 +1,14 @@
package com.hxhq.business.mapper;
import com.hxhq.business.domain.ZcgYj;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 暂存柜-关联药剂Mapper接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface ZcgYjMapper extends BaseMapper<ZcgYj>
{
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjFfjlService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.GyzjFfjl;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 给药制剂-发放记录Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IGyzjFfjlService extends IService<GyzjFfjl>
{
/**
* 查询给药制剂-发放记录列表
*
* @param gyzjFfjl 给药制剂-发放记录
* @return 给药制剂-发放记录集合
*/
public List<GyzjFfjl> queryList(GyzjFfjl gyzjFfjl);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjJcgjService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.GyzjJcgj;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 给药制剂-稽查轨迹Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IGyzjJcgjService extends IService<GyzjJcgj>
{
/**
* 查询给药制剂-稽查轨迹列表
*
* @param gyzjJcgj 给药制剂-稽查轨迹
* @return 给药制剂-稽查轨迹集合
*/
public List<GyzjJcgj> queryList(GyzjJcgj gyzjJcgj);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.Gyzj;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 给药制剂Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IGyzjService extends IService<Gyzj>
{
/**
* 查询给药制剂列表
*
* @param gyzj 给药制剂
* @return 给药制剂集合
*/
public List<Gyzj> queryList(Gyzj gyzj);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjTzService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.GyzjTz;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 给药制剂-台账Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IGyzjTzService extends IService<GyzjTz>
{
/**
* 查询给药制剂-台账列表
*
* @param gyzjTz 给药制剂-台账
* @return 给药制剂-台账集合
*/
public List<GyzjTz> queryList(GyzjTz gyzjTz);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyFfjlService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.MjyFfjl;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 麻精药-发放记录Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IMjyFfjlService extends IService<MjyFfjl>
{
/**
* 查询麻精药-发放记录列表
*
* @param mjyFfjl 麻精药-发放记录
* @return 麻精药-发放记录集合
*/
public List<MjyFfjl> queryList(MjyFfjl mjyFfjl);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyJcgjService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.MjyJcgj;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 麻精药-稽查轨迹Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IMjyJcgjService extends IService<MjyJcgj>
{
/**
* 查询麻精药-稽查轨迹列表
*
* @param mjyJcgj 麻精药-稽查轨迹
* @return 麻精药-稽查轨迹集合
*/
public List<MjyJcgj> queryList(MjyJcgj mjyJcgj);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.Mjy;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 麻精药Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IMjyService extends IService<Mjy>
{
/**
* 查询麻精药列表
*
* @param mjy 麻精药
* @return 麻精药集合
*/
public List<Mjy> queryList(Mjy mjy);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyTzService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.MjyTz;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 麻精药-台账Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IMjyTzService extends IService<MjyTz>
{
/**
* 查询麻精药-台账列表
*
* @param mjyTz 麻精药-台账
* @return 麻精药-台账集合
*/
public List<MjyTz> queryList(MjyTz mjyTz);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.Zcg;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 暂存柜Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IZcgService extends IService<Zcg>
{
/**
* 查询暂存柜列表
*
* @param zcg 暂存柜
* @return 暂存柜集合
*/
public List<Zcg> queryList(Zcg zcg);
}

+ 23
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgYjService.java View File

@ -0,0 +1,23 @@
package com.hxhq.business.service;
import java.util.List;
import com.hxhq.business.domain.ZcgYj;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 暂存柜-关联药剂Service接口
*
* @author hxhq
* @date 2025-12-18
*/
public interface IZcgYjService extends IService<ZcgYj>
{
/**
* 查询暂存柜-关联药剂列表
*
* @param zcgYj 暂存柜-关联药剂
* @return 暂存柜-关联药剂集合
*/
public List<ZcgYj> queryList(ZcgYj zcgYj);
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjFfjlServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.GyzjFfjlMapper;
import com.hxhq.business.domain.GyzjFfjl;
import com.hxhq.business.service.IGyzjFfjlService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 给药制剂-发放记录Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class GyzjFfjlServiceImpl extends ServiceImpl<GyzjFfjlMapper, GyzjFfjl> implements IGyzjFfjlService
{
/**
* 查询给药制剂-发放记录列表
*
* @param gyzjFfjl 给药制剂-发放记录
* @return 给药制剂-发放记录
*/
@Override
public List<GyzjFfjl> queryList(GyzjFfjl gyzjFfjl)
{
QueryWrapper<GyzjFfjl> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjJcgjServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.GyzjJcgjMapper;
import com.hxhq.business.domain.GyzjJcgj;
import com.hxhq.business.service.IGyzjJcgjService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 给药制剂-稽查轨迹Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class GyzjJcgjServiceImpl extends ServiceImpl<GyzjJcgjMapper, GyzjJcgj> implements IGyzjJcgjService
{
/**
* 查询给药制剂-稽查轨迹列表
*
* @param gyzjJcgj 给药制剂-稽查轨迹
* @return 给药制剂-稽查轨迹
*/
@Override
public List<GyzjJcgj> queryList(GyzjJcgj gyzjJcgj)
{
QueryWrapper<GyzjJcgj> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.GyzjMapper;
import com.hxhq.business.domain.Gyzj;
import com.hxhq.business.service.IGyzjService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 给药制剂Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class GyzjServiceImpl extends ServiceImpl<GyzjMapper, Gyzj> implements IGyzjService
{
/**
* 查询给药制剂列表
*
* @param gyzj 给药制剂
* @return 给药制剂
*/
@Override
public List<Gyzj> queryList(Gyzj gyzj)
{
QueryWrapper<Gyzj> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjTzServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.GyzjTzMapper;
import com.hxhq.business.domain.GyzjTz;
import com.hxhq.business.service.IGyzjTzService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 给药制剂-台账Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class GyzjTzServiceImpl extends ServiceImpl<GyzjTzMapper, GyzjTz> implements IGyzjTzService
{
/**
* 查询给药制剂-台账列表
*
* @param gyzjTz 给药制剂-台账
* @return 给药制剂-台账
*/
@Override
public List<GyzjTz> queryList(GyzjTz gyzjTz)
{
QueryWrapper<GyzjTz> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyFfjlServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.MjyFfjlMapper;
import com.hxhq.business.domain.MjyFfjl;
import com.hxhq.business.service.IMjyFfjlService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 麻精药-发放记录Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class MjyFfjlServiceImpl extends ServiceImpl<MjyFfjlMapper, MjyFfjl> implements IMjyFfjlService
{
/**
* 查询麻精药-发放记录列表
*
* @param mjyFfjl 麻精药-发放记录
* @return 麻精药-发放记录
*/
@Override
public List<MjyFfjl> queryList(MjyFfjl mjyFfjl)
{
QueryWrapper<MjyFfjl> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyJcgjServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.MjyJcgjMapper;
import com.hxhq.business.domain.MjyJcgj;
import com.hxhq.business.service.IMjyJcgjService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 麻精药-稽查轨迹Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class MjyJcgjServiceImpl extends ServiceImpl<MjyJcgjMapper, MjyJcgj> implements IMjyJcgjService
{
/**
* 查询麻精药-稽查轨迹列表
*
* @param mjyJcgj 麻精药-稽查轨迹
* @return 麻精药-稽查轨迹
*/
@Override
public List<MjyJcgj> queryList(MjyJcgj mjyJcgj)
{
QueryWrapper<MjyJcgj> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.MjyMapper;
import com.hxhq.business.domain.Mjy;
import com.hxhq.business.service.IMjyService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 麻精药Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class MjyServiceImpl extends ServiceImpl<MjyMapper, Mjy> implements IMjyService
{
/**
* 查询麻精药列表
*
* @param mjy 麻精药
* @return 麻精药
*/
@Override
public List<Mjy> queryList(Mjy mjy)
{
QueryWrapper<Mjy> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyTzServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.MjyTzMapper;
import com.hxhq.business.domain.MjyTz;
import com.hxhq.business.service.IMjyTzService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 麻精药-台账Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class MjyTzServiceImpl extends ServiceImpl<MjyTzMapper, MjyTz> implements IMjyTzService
{
/**
* 查询麻精药-台账列表
*
* @param mjyTz 麻精药-台账
* @return 麻精药-台账
*/
@Override
public List<MjyTz> queryList(MjyTz mjyTz)
{
QueryWrapper<MjyTz> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.ZcgMapper;
import com.hxhq.business.domain.Zcg;
import com.hxhq.business.service.IZcgService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 暂存柜Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class ZcgServiceImpl extends ServiceImpl<ZcgMapper, Zcg> implements IZcgService
{
/**
* 查询暂存柜列表
*
* @param zcg 暂存柜
* @return 暂存柜
*/
@Override
public List<Zcg> queryList(Zcg zcg)
{
QueryWrapper<Zcg> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 34
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgYjServiceImpl.java View File

@ -0,0 +1,34 @@
package com.hxhq.business.service.impl;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import com.hxhq.business.mapper.ZcgYjMapper;
import com.hxhq.business.domain.ZcgYj;
import com.hxhq.business.service.IZcgYjService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* 暂存柜-关联药剂Service业务层处理
*
* @author hxhq
* @date 2025-12-18
*/
@Service
public class ZcgYjServiceImpl extends ServiceImpl<ZcgYjMapper, ZcgYj> implements IZcgYjService
{
/**
* 查询暂存柜-关联药剂列表
*
* @param zcgYj 暂存柜-关联药剂
* @return 暂存柜-关联药剂
*/
@Override
public List<ZcgYj> queryList(ZcgYj zcgYj)
{
QueryWrapper<ZcgYj> queryWrapper = Wrappers.query();
return this.list(queryWrapper);
}
}

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjFfjlMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.GyzjFfjlMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjJcgjMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.GyzjJcgjMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.GyzjMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjTzMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.GyzjTzMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.MjyFfjlMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyJcgjMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.MjyJcgjMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.MjyMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyTzMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.MjyTzMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.ZcgMapper">
</mapper>

+ 6
- 0
hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgYjMapper.xml View File

@ -0,0 +1,6 @@
<?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.hxhq.business.mapper.ZcgYjMapper">
</mapper>

Loading…
Cancel
Save