From c90da338aa5157b6aa9b5c082a0bb365f0ec9e46 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Mon, 10 Jul 2023 14:49:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=90=8E=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../op/wms/controller/BaseAreaController.java | 97 +++ .../controller/BaseLocationController.java | 97 +++ .../wms/controller/BaseShiftsTController.java | 97 +++ .../wms/controller/BaseTeamTController.java | 97 +++ .../controller/BaseWarehouseController.java | 97 +++ .../wms/controller/SysFactoryController.java | 95 +++ .../main/java/com/op/wms/domain/BaseArea.java | 339 ++++++++++ .../java/com/op/wms/domain/BaseLocation.java | 604 ++++++++++++++++++ .../java/com/op/wms/domain/BaseShiftsT.java | 207 ++++++ .../java/com/op/wms/domain/BaseTeamT.java | 304 +++++++++ .../java/com/op/wms/domain/BaseWarehouse.java | 195 ++++++ .../java/com/op/wms/domain/SysFactory.java | 126 ++++ .../com/op/wms/mapper/BaseAreaMapper.java | 63 ++ .../com/op/wms/mapper/BaseLocationMapper.java | 61 ++ .../com/op/wms/mapper/BaseShiftsTMapper.java | 61 ++ .../com/op/wms/mapper/BaseTeamTMapper.java | 61 ++ .../op/wms/mapper/BaseWarehouseMapper.java | 63 ++ .../com/op/wms/mapper/SysFactoryMapper.java | 61 ++ .../com/op/wms/service/IBaseAreaService.java | 60 ++ .../op/wms/service/IBaseLocationService.java | 60 ++ .../op/wms/service/IBaseShiftsTService.java | 60 ++ .../com/op/wms/service/IBaseTeamTService.java | 60 ++ .../op/wms/service/IBaseWarehouseService.java | 60 ++ .../op/wms/service/ISysFactoryService.java | 60 ++ .../wms/service/impl/BaseAreaServiceImpl.java | 94 +++ .../service/impl/BaseLocationServiceImpl.java | 92 +++ .../service/impl/BaseShiftsTServiceImpl.java | 93 +++ .../service/impl/BaseTeamTServiceImpl.java | 93 +++ .../impl/BaseWarehouseServiceImpl.java | 95 +++ .../service/impl/SysFactoryServiceImpl.java | 92 +++ .../resources/mapper/wms/BaseAreaMapper.xml | 204 ++++++ .../mapper/wms/BaseLocationMapper.xml | 308 +++++++++ .../mapper/wms/BaseShiftsTMapper.xml | 128 ++++ .../resources/mapper/wms/BaseTeamTMapper.xml | 168 +++++ .../mapper/wms/BaseWarehouseMapper.xml | 144 +++++ .../resources/mapper/wms/SysFactoryMapper.xml | 115 ++++ 36 files changed, 4711 insertions(+) create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/BaseAreaController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/BaseLocationController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/BaseShiftsTController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/BaseTeamTController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/BaseWarehouseController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/controller/SysFactoryController.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/BaseArea.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/BaseLocation.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/BaseShiftsT.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/BaseTeamT.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/BaseWarehouse.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/domain/SysFactory.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseAreaMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseLocationMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseShiftsTMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseTeamTMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseWarehouseMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/mapper/SysFactoryMapper.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/IBaseAreaService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/IBaseLocationService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/IBaseShiftsTService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/IBaseTeamTService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/IBaseWarehouseService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/ISysFactoryService.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseAreaServiceImpl.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseLocationServiceImpl.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseShiftsTServiceImpl.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseTeamTServiceImpl.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseWarehouseServiceImpl.java create mode 100644 op-modules/op-wms/src/main/java/com/op/wms/service/impl/SysFactoryServiceImpl.java create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/BaseAreaMapper.xml create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/BaseLocationMapper.xml create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/BaseShiftsTMapper.xml create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/BaseTeamTMapper.xml create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/BaseWarehouseMapper.xml create mode 100644 op-modules/op-wms/src/main/resources/mapper/wms/SysFactoryMapper.xml diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseAreaController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseAreaController.java new file mode 100644 index 00000000..cdddea1c --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseAreaController.java @@ -0,0 +1,97 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.BaseArea; +import com.op.wms.service.IBaseAreaService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; +import com.op.common.core.web.page.TableDataInfo; + +/** + * 库区Controller + * + * @author Open Platform + * @date 2023-07-04 + */ +@RestController +@RequestMapping("/area") +public class BaseAreaController extends BaseController { + @Autowired + private IBaseAreaService baseAreaService; + + /** + * 查询库区列表 + */ + @RequiresPermissions("wms:area:list") + @GetMapping("/list") + public TableDataInfo list(BaseArea baseArea) { + startPage(); + List list = baseAreaService.selectBaseAreaList(baseArea); + return getDataTable(list); + } + + /** + * 导出库区列表 + */ + @RequiresPermissions("wms:area:export") + @Log(title = "库区", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BaseArea baseArea) { + List list = baseAreaService.selectBaseAreaList(baseArea); + ExcelUtil util = new ExcelUtil(BaseArea.class); + util.exportExcel(response, list, "库区数据"); + } + + /** + * 获取库区详细信息 + */ + @RequiresPermissions("wms:area:query") + @GetMapping(value = "/{areaId}") + public AjaxResult getInfo(@PathVariable("areaId") String areaId) { + return success(baseAreaService.selectBaseAreaByAreaId(areaId)); + } + + /** + * 新增库区 + */ + @RequiresPermissions("wms:area:add") + @Log(title = "库区", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BaseArea baseArea) { + return toAjax(baseAreaService.insertBaseArea(baseArea)); + } + + /** + * 修改库区 + */ + @RequiresPermissions("wms:area:edit") + @Log(title = "库区", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BaseArea baseArea) { + return toAjax(baseAreaService.updateBaseArea(baseArea)); + } + + /** + * 删除库区 + */ + @RequiresPermissions("wms:area:remove") + @Log(title = "库区", businessType = BusinessType.DELETE) + @DeleteMapping("/{areaIds}") + public AjaxResult remove(@PathVariable String[] areaIds) { + return toAjax(baseAreaService.deleteBaseAreaByAreaIds(areaIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseLocationController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseLocationController.java new file mode 100644 index 00000000..f89ae496 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseLocationController.java @@ -0,0 +1,97 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.BaseLocation; +import com.op.wms.service.IBaseLocationService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; +import com.op.common.core.web.page.TableDataInfo; + +/** + * 货位管理Controller + * + * @author Open Platform + * @date 2023-07-06 + */ +@RestController +@RequestMapping("/location") +public class BaseLocationController extends BaseController { + @Autowired + private IBaseLocationService baseLocationService; + + /** + * 查询货位管理列表 + */ + @RequiresPermissions("wms:location:list") + @GetMapping("/list") + public TableDataInfo list(BaseLocation baseLocation) { + startPage(); + List list = baseLocationService.selectBaseLocationList(baseLocation); + return getDataTable(list); + } + + /** + * 导出货位管理列表 + */ + @RequiresPermissions("wms:location:export") + @Log(title = "货位管理", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BaseLocation baseLocation) { + List list = baseLocationService.selectBaseLocationList(baseLocation); + ExcelUtil util = new ExcelUtil(BaseLocation.class); + util.exportExcel(response, list, "货位管理数据"); + } + + /** + * 获取货位管理详细信息 + */ + @RequiresPermissions("wms:location:query") + @GetMapping(value = "/{locationId}") + public AjaxResult getInfo(@PathVariable("locationId") String locationId) { + return success(baseLocationService.selectBaseLocationByLocationId(locationId)); + } + + /** + * 新增货位管理 + */ + @RequiresPermissions("wms:location:add") + @Log(title = "货位管理", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BaseLocation baseLocation) { + return toAjax(baseLocationService.insertBaseLocation(baseLocation)); + } + + /** + * 修改货位管理 + */ + @RequiresPermissions("wms:location:edit") + @Log(title = "货位管理", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BaseLocation baseLocation) { + return toAjax(baseLocationService.updateBaseLocation(baseLocation)); + } + + /** + * 删除货位管理 + */ + @RequiresPermissions("wms:location:remove") + @Log(title = "货位管理", businessType = BusinessType.DELETE) + @DeleteMapping("/{locationIds}") + public AjaxResult remove(@PathVariable String[] locationIds) { + return toAjax(baseLocationService.deleteBaseLocationByLocationIds(locationIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseShiftsTController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseShiftsTController.java new file mode 100644 index 00000000..b152bf1d --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseShiftsTController.java @@ -0,0 +1,97 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.BaseShiftsT; +import com.op.wms.service.IBaseShiftsTService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; +import com.op.common.core.web.page.TableDataInfo; + +/** + * 班次管理Controller + * + * @author Open Platform + * @date 2023-07-06 + */ +@RestController +@RequestMapping("/shifts") +public class BaseShiftsTController extends BaseController { + @Autowired + private IBaseShiftsTService baseShiftsTService; + + /** + * 查询班次管理列表 + */ + @RequiresPermissions("wms:shifts:list") + @GetMapping("/list") + public TableDataInfo list(BaseShiftsT baseShiftsT) { + startPage(); + List list = baseShiftsTService.selectBaseShiftsTList(baseShiftsT); + return getDataTable(list); + } + + /** + * 导出班次管理列表 + */ + @RequiresPermissions("wms:shifts:export") + @Log(title = "班次管理", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BaseShiftsT baseShiftsT) { + List list = baseShiftsTService.selectBaseShiftsTList(baseShiftsT); + ExcelUtil util = new ExcelUtil(BaseShiftsT.class); + util.exportExcel(response, list, "班次管理数据"); + } + + /** + * 获取班次管理详细信息 + */ + @RequiresPermissions("wms:shifts:query") + @GetMapping(value = "/{shiftId}") + public AjaxResult getInfo(@PathVariable("shiftId") String shiftId) { + return success(baseShiftsTService.selectBaseShiftsTByShiftId(shiftId)); + } + + /** + * 新增班次管理 + */ + @RequiresPermissions("wms:shifts:add") + @Log(title = "班次管理", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BaseShiftsT baseShiftsT) { + return toAjax(baseShiftsTService.insertBaseShiftsT(baseShiftsT)); + } + + /** + * 修改班次管理 + */ + @RequiresPermissions("wms:shifts:edit") + @Log(title = "班次管理", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BaseShiftsT baseShiftsT) { + return toAjax(baseShiftsTService.updateBaseShiftsT(baseShiftsT)); + } + + /** + * 删除班次管理 + */ + @RequiresPermissions("wms:shifts:remove") + @Log(title = "班次管理", businessType = BusinessType.DELETE) + @DeleteMapping("/{shiftIds}") + public AjaxResult remove(@PathVariable String[] shiftIds) { + return toAjax(baseShiftsTService.deleteBaseShiftsTByShiftIds(shiftIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseTeamTController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseTeamTController.java new file mode 100644 index 00000000..6a023701 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseTeamTController.java @@ -0,0 +1,97 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.BaseTeamT; +import com.op.wms.service.IBaseTeamTService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; +import com.op.common.core.web.page.TableDataInfo; + +/** + * 班组Controller + * + * @author Open Platform + * @date 2023-07-05 + */ +@RestController +@RequestMapping("/team") +public class BaseTeamTController extends BaseController { + @Autowired + private IBaseTeamTService baseTeamTService; + + /** + * 查询班组列表 + */ + @RequiresPermissions("wms:team:list") + @GetMapping("/list") + public TableDataInfo list(BaseTeamT baseTeamT) { + startPage(); + List list = baseTeamTService.selectBaseTeamTList(baseTeamT); + return getDataTable(list); + } + + /** + * 导出班组列表 + */ + @RequiresPermissions("wms:team:export") + @Log(title = "班组", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BaseTeamT baseTeamT) { + List list = baseTeamTService.selectBaseTeamTList(baseTeamT); + ExcelUtil util = new ExcelUtil(BaseTeamT.class); + util.exportExcel(response, list, "班组数据"); + } + + /** + * 获取班组详细信息 + */ + @RequiresPermissions("wms:team:query") + @GetMapping(value = "/{teamId}") + public AjaxResult getInfo(@PathVariable("teamId") String teamId) { + return success(baseTeamTService.selectBaseTeamTByTeamId(teamId)); + } + + /** + * 新增班组 + */ + @RequiresPermissions("wms:team:add") + @Log(title = "班组", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BaseTeamT baseTeamT) { + return toAjax(baseTeamTService.insertBaseTeamT(baseTeamT)); + } + + /** + * 修改班组 + */ + @RequiresPermissions("wms:team:edit") + @Log(title = "班组", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BaseTeamT baseTeamT) { + return toAjax(baseTeamTService.updateBaseTeamT(baseTeamT)); + } + + /** + * 删除班组 + */ + @RequiresPermissions("wms:team:remove") + @Log(title = "班组", businessType = BusinessType.DELETE) + @DeleteMapping("/{teamIds}") + public AjaxResult remove(@PathVariable String[] teamIds) { + return toAjax(baseTeamTService.deleteBaseTeamTByTeamIds(teamIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseWarehouseController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseWarehouseController.java new file mode 100644 index 00000000..306b72c0 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/BaseWarehouseController.java @@ -0,0 +1,97 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.BaseWarehouse; +import com.op.wms.service.IBaseWarehouseService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; +import com.op.common.core.web.page.TableDataInfo; + +/** + * 仓库管理Controller + * + * @author Open Platform + * @date 2023-07-04 + */ +@RestController +@RequestMapping("/warehouse") +public class BaseWarehouseController extends BaseController { + @Autowired + private IBaseWarehouseService baseWarehouseService; + + /** + * 查询仓库管理列表 + */ + @RequiresPermissions("wms:warehouse:list") + @GetMapping("/list") + public TableDataInfo list(BaseWarehouse baseWarehouse) { + startPage(); + List list = baseWarehouseService.selectBaseWarehouseList(baseWarehouse); + return getDataTable(list); + } + + /** + * 导出仓库管理列表 + */ + @RequiresPermissions("wms:warehouse:export") + @Log(title = "仓库管理", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BaseWarehouse baseWarehouse) { + List list = baseWarehouseService.selectBaseWarehouseList(baseWarehouse); + ExcelUtil util = new ExcelUtil(BaseWarehouse.class); + util.exportExcel(response, list, "仓库管理数据"); + } + + /** + * 获取仓库管理详细信息 + */ + @RequiresPermissions("wms:warehouse:query") + @GetMapping(value = "/{warehouseId}") + public AjaxResult getInfo(@PathVariable("warehouseId") String warehouseId) { + return success(baseWarehouseService.selectBaseWarehouseByWarehouseId(warehouseId)); + } + + /** + * 新增仓库管理 + */ + @RequiresPermissions("wms:warehouse:add") + @Log(title = "仓库管理", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BaseWarehouse baseWarehouse) { + return toAjax(baseWarehouseService.insertBaseWarehouse(baseWarehouse)); + } + + /** + * 修改仓库管理 + */ + @RequiresPermissions("wms:warehouse:edit") + @Log(title = "仓库管理", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BaseWarehouse baseWarehouse) { + return toAjax(baseWarehouseService.updateBaseWarehouse(baseWarehouse)); + } + + /** + * 删除仓库管理 + */ + @RequiresPermissions("wms:warehouse:remove") + @Log(title = "仓库管理", businessType = BusinessType.DELETE) + @DeleteMapping("/{warehouseIds}") + public AjaxResult remove(@PathVariable String[] warehouseIds) { + return toAjax(baseWarehouseService.deleteBaseWarehouseByWarehouseIds(warehouseIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/controller/SysFactoryController.java b/op-modules/op-wms/src/main/java/com/op/wms/controller/SysFactoryController.java new file mode 100644 index 00000000..745f03f4 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/controller/SysFactoryController.java @@ -0,0 +1,95 @@ +package com.op.wms.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.op.common.log.annotation.Log; +import com.op.common.log.enums.BusinessType; +import com.op.common.security.annotation.RequiresPermissions; +import com.op.wms.domain.SysFactory; +import com.op.wms.service.ISysFactoryService; +import com.op.common.core.web.controller.BaseController; +import com.op.common.core.web.domain.AjaxResult; +import com.op.common.core.utils.poi.ExcelUtil; + +/** + * 工厂模型Controller + * + * @author Open Platform + * @date 2023-07-03 + */ +@RestController +@RequestMapping("/factory") +public class SysFactoryController extends BaseController { + @Autowired + private ISysFactoryService sysFactoryService; + + /** + * 查询工厂模型列表 + */ + @RequiresPermissions("wms:factory:list") + @GetMapping("/list") + public AjaxResult list(SysFactory sysFactory) { + List list = sysFactoryService.selectSysFactoryList(sysFactory); + return success(list); + } + + /** + * 导出工厂模型列表 + */ + @RequiresPermissions("wms:factory:export") + @Log(title = "工厂模型", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, SysFactory sysFactory) { + List list = sysFactoryService.selectSysFactoryList(sysFactory); + ExcelUtil util = new ExcelUtil(SysFactory.class); + util.exportExcel(response, list, "工厂模型数据"); + } + + /** + * 获取工厂模型详细信息 + */ + @RequiresPermissions("wms:factory:query") + @GetMapping(value = "/{factoryId}") + public AjaxResult getInfo(@PathVariable("factoryId") Long deptId) { + return success(sysFactoryService.selectSysFactoryByFactoryId(deptId)); + } + + /** + * 新增工厂模型 + */ + @RequiresPermissions("wms:factory:add") + @Log(title = "工厂模型", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody SysFactory sysFactory) { + return toAjax(sysFactoryService.insertSysFactory(sysFactory)); + } + + /** + * 修改工厂模型 + */ + @RequiresPermissions("wms:factory:edit") + @Log(title = "工厂模型", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody SysFactory sysFactory) { + return toAjax(sysFactoryService.updateSysFactory(sysFactory)); + } + + /** + * 删除工厂模型 + */ + @RequiresPermissions("wms:factory:remove") + @Log(title = "工厂模型", businessType = BusinessType.DELETE) + @DeleteMapping("/{factoryIds}") + public AjaxResult remove(@PathVariable Long[] factoryIds) { + return toAjax(sysFactoryService.deleteSysFactoryByFactoryIds(factoryIds)); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseArea.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseArea.java new file mode 100644 index 00000000..dd3537de --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseArea.java @@ -0,0 +1,339 @@ +package com.op.wms.domain; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.BaseEntity; + +/** + * 库区对象 base_area + * + * @author Open Platform + * @date 2023-07-04 + */ +public class BaseArea extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** id */ + private String areaId; + + /** 库区编码 */ + @Excel(name = "库区编码") + private String areaCode; + + /** 库区描述 */ + @Excel(name = "库区描述") + private String areaDesc; + + /** 区域编码 */ + @Excel(name = "区域编码") + private String regionCode; + + /** 仓库编码 */ + @Excel(name = "仓库编码") + private String whCode; + + /** 入库过渡库位 */ + @Excel(name = "入库过渡库位") + private String instockTranLoc; + + /** 出库过渡库位 */ + @Excel(name = "出库过渡库位") + private String outstockTranLoc; + + /** 拣货过渡库位 */ + @Excel(name = "拣货过渡库位") + private String pickTranLoc; + + /** 默认异常储位 */ + @Excel(name = "默认异常储位") + private String exSignLocNo; + + /** 默认隔离储位 */ + @Excel(name = "默认隔离储位") + private String frozenLocNo; + + /** 需要问 */ + @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") + private String sapSendSpot; + + /** 库区基点 */ + @Excel(name = "库区基点") + private String areaPoint; + + /** 不可用#是否使用托盘1是0否 */ + @Excel(name = "不可用#是否使用托盘1是0否") + private String useTray; + + /** 不可用#是否托盘混载1是0否 */ + @Excel(name = "不可用#是否托盘混载1是0否") + private String trayMix; + + /** 入库策略(收货上架一步/两步) */ + @Excel(name = "入库策略", readConverterExp = "收=货上架一步/两步") + private String instorageStrategy; + + /** 出库策略(拣货复核一步/两步) */ + @Excel(name = "出库策略", readConverterExp = "拣=货复核一步/两步") + private String outstorageStrategy; + + /** 是否强制出库(1是,0否) */ + @Excel(name = "是否强制出库", readConverterExp = "1=是,0否") + private String forceOutstorage; + + /** 不可用#是否判断库位允许拣货(1是,0否) */ + @Excel(name = "不可用#是否判断库位允许拣货", readConverterExp = "1=是,0否") + private String locPickFlag; + + /** 手持提单时的默认分配规则 */ + @Excel(name = "手持提单时的默认分配规则") + private String allocationRule; + + /** 默认集货位推荐类型 */ + @Excel(name = "默认集货位推荐类型") + private String gatherLocType; + + /** 优先级 */ + @Excel(name = "优先级") + private String priority; + + /** 库区标志:0-普通库区 */ + @Excel(name = "库区标志:0-普通库区 1-立体库内机库区 2-立体库外机库区") + private String userDefined1; + + /** $column.columnComment */ + @Excel(name = "未定义2") + private String userDefined2; + + /** $column.columnComment */ + @Excel(name = "未定义3") + private String userDefined3; + + /** 有效标志 */ + @Excel(name = "有效标志") + private String activeFlag; + + /** $column.columnComment */ + @Excel(name = "工厂编码") + private String factoryCode; + + public void setAreaId(String areaId) { + this.areaId = areaId; + } + + public String getAreaId() { + return areaId; + } + public void setAreaCode(String areaCode) { + this.areaCode = areaCode; + } + + public String getAreaCode() { + return areaCode; + } + public void setAreaDesc(String areaDesc) { + this.areaDesc = areaDesc; + } + + public String getAreaDesc() { + return areaDesc; + } + public void setRegionCode(String regionCode) { + this.regionCode = regionCode; + } + + public String getRegionCode() { + return regionCode; + } + public void setWhCode(String whCode) { + this.whCode = whCode; + } + + public String getWhCode() { + return whCode; + } + public void setInstockTranLoc(String instockTranLoc) { + this.instockTranLoc = instockTranLoc; + } + + public String getInstockTranLoc() { + return instockTranLoc; + } + public void setOutstockTranLoc(String outstockTranLoc) { + this.outstockTranLoc = outstockTranLoc; + } + + public String getOutstockTranLoc() { + return outstockTranLoc; + } + public void setPickTranLoc(String pickTranLoc) { + this.pickTranLoc = pickTranLoc; + } + + public String getPickTranLoc() { + return pickTranLoc; + } + public void setExSignLocNo(String exSignLocNo) { + this.exSignLocNo = exSignLocNo; + } + + public String getExSignLocNo() { + return exSignLocNo; + } + public void setFrozenLocNo(String frozenLocNo) { + this.frozenLocNo = frozenLocNo; + } + + public String getFrozenLocNo() { + return frozenLocNo; + } + public void setSapSendSpot(String sapSendSpot) { + this.sapSendSpot = sapSendSpot; + } + + public String getSapSendSpot() { + return sapSendSpot; + } + public void setAreaPoint(String areaPoint) { + this.areaPoint = areaPoint; + } + + public String getAreaPoint() { + return areaPoint; + } + public void setUseTray(String useTray) { + this.useTray = useTray; + } + + public String getUseTray() { + return useTray; + } + public void setTrayMix(String trayMix) { + this.trayMix = trayMix; + } + + public String getTrayMix() { + return trayMix; + } + public void setInstorageStrategy(String instorageStrategy) { + this.instorageStrategy = instorageStrategy; + } + + public String getInstorageStrategy() { + return instorageStrategy; + } + public void setOutstorageStrategy(String outstorageStrategy) { + this.outstorageStrategy = outstorageStrategy; + } + + public String getOutstorageStrategy() { + return outstorageStrategy; + } + public void setForceOutstorage(String forceOutstorage) { + this.forceOutstorage = forceOutstorage; + } + + public String getForceOutstorage() { + return forceOutstorage; + } + public void setLocPickFlag(String locPickFlag) { + this.locPickFlag = locPickFlag; + } + + public String getLocPickFlag() { + return locPickFlag; + } + public void setAllocationRule(String allocationRule) { + this.allocationRule = allocationRule; + } + + public String getAllocationRule() { + return allocationRule; + } + public void setGatherLocType(String gatherLocType) { + this.gatherLocType = gatherLocType; + } + + public String getGatherLocType() { + return gatherLocType; + } + public void setPriority(String priority) { + this.priority = priority; + } + + public String getPriority() { + return priority; + } + public void setUserDefined1(String userDefined1) { + this.userDefined1 = userDefined1; + } + + public String getUserDefined1() { + return userDefined1; + } + public void setUserDefined2(String userDefined2) { + this.userDefined2 = userDefined2; + } + + public String getUserDefined2() { + return userDefined2; + } + public void setUserDefined3(String userDefined3) { + this.userDefined3 = userDefined3; + } + + public String getUserDefined3() { + return userDefined3; + } + public void setActiveFlag(String activeFlag) { + this.activeFlag = activeFlag; + } + + public String getActiveFlag() { + return activeFlag; + } + public void setFactoryCode(String factoryCode) { + this.factoryCode = factoryCode; + } + + public String getFactoryCode() { + return factoryCode; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("areaId", getAreaId()) + .append("areaCode", getAreaCode()) + .append("areaDesc", getAreaDesc()) + .append("regionCode", getRegionCode()) + .append("whCode", getWhCode()) + .append("instockTranLoc", getInstockTranLoc()) + .append("outstockTranLoc", getOutstockTranLoc()) + .append("pickTranLoc", getPickTranLoc()) + .append("exSignLocNo", getExSignLocNo()) + .append("frozenLocNo", getFrozenLocNo()) + .append("sapSendSpot", getSapSendSpot()) + .append("areaPoint", getAreaPoint()) + .append("useTray", getUseTray()) + .append("trayMix", getTrayMix()) + .append("instorageStrategy", getInstorageStrategy()) + .append("outstorageStrategy", getOutstorageStrategy()) + .append("forceOutstorage", getForceOutstorage()) + .append("locPickFlag", getLocPickFlag()) + .append("allocationRule", getAllocationRule()) + .append("gatherLocType", getGatherLocType()) + .append("priority", getPriority()) + .append("userDefined1", getUserDefined1()) + .append("userDefined2", getUserDefined2()) + .append("userDefined3", getUserDefined3()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("activeFlag", getActiveFlag()) + .append("remark", getRemark()) + .append("factoryCode", getFactoryCode()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseLocation.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseLocation.java new file mode 100644 index 00000000..6ee569fe --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseLocation.java @@ -0,0 +1,604 @@ +package com.op.wms.domain; + +import java.math.BigDecimal; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.BaseEntity; + +/** + * 货位管理对象 base_location + * + * @author Open Platform + * @date 2023-07-06 + */ +public class BaseLocation extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** 主键uuid */ + private String locationId; + + /** 货位编码 */ + @Excel(name = "货位编码") + private String locationCode; + + /** 上架顺序 */ + @Excel(name = "上架顺序") + private String shelfOrder; + + /** 盘点顺序 */ + @Excel(name = "盘点顺序") + private String checkOrder; + + /** 拣货顺序 */ + @Excel(name = "拣货顺序") + private String pickOrder; + + /** 货位使用 */ + @Excel(name = "货位使用") + private String locationUse; + + /** 是否允许拣货 */ + @Excel(name = "是否允许拣货") + private String pickFlag; + + /** 是否开启库内交接 */ + @Excel(name = "是否开启库内交接") + private String isOpenKnFlag; + + /** 货位类型:0-平面库货位 */ + @Excel(name = "货位类型:0-平面库货位") + private String locationType; + + /** 是否报废货位 */ + @Excel(name = "是否报废货位") + private String locationScrapType; + + /** 货位属性 */ + @Excel(name = "货位属性") + private String locationAttr; + + /** 周转需求 */ + @Excel(name = "周转需求") + private String turnDemand; + + /** 库存环境 */ + @Excel(name = "库存环境") + private String stockEnv; + + /** 仓库编码 */ + @Excel(name = "仓库编码") + private String warehouseCode; + + /** 区域编码 */ + @Excel(name = "区域编码") + private String regionCode; + + /** 库区编码 */ + @Excel(name = "库区编码") + private String areaCode; + + /** 校验码 */ + @Excel(name = "校验码") + private String checkCode; + + /** 工作区 */ + @Excel(name = "工作区") + private String workArea; + + /** 端口1 */ + @Excel(name = "端口1") + private String port1; + + /** 端口2 */ + @Excel(name = "端口2") + private String port2; + + /** 端口3 */ + @Excel(name = "端口3") + private String port3; + + /** 体积限制 */ + @Excel(name = "体积限制") + private BigDecimal volumeLimit; + + /** 重量限制 */ + @Excel(name = "重量限制") + private BigDecimal weightLimit; + + /** 箱数限制* */ + @Excel(name = "箱数限制*") + private Long boxLimit; + + /** 数量限制 */ + @Excel(name = "数量限制") + private Long qtyLimit; + + /** 托盘限制* */ + @Excel(name = "托盘限制*") + private Long palletLimit; + + /** 长度 */ + @Excel(name = "长度") + private BigDecimal length; + + /** 宽度 */ + @Excel(name = "宽度") + private BigDecimal width; + + /** 高度 */ + @Excel(name = "高度") + private BigDecimal height; + + /** X坐标 */ + @Excel(name = "X坐标") + private Long xCoordinate; + + /** Y坐标 */ + @Excel(name = "Y坐标") + private Long yCoordinate; + + /** Z坐标 */ + @Excel(name = "Z坐标") + private Long zCoordinate; + + /** X像素 */ + @Excel(name = "X像素") + private Long xPixels; + + /** Y像素 */ + @Excel(name = "Y像素") + private Long yPixels; + + /** Z像素 */ + @Excel(name = "Z像素") + private Long zPixels; + + /** 排 */ + @Excel(name = "排") + private String locRow; + + /** 层数 */ + @Excel(name = "层数") + private Long layerNum; + + /** 列 */ + @Excel(name = "列") + private String locColumn; + + /** 巷道 */ + @Excel(name = "巷道") + private String bord; + + /** 允许混放产品 */ + @Excel(name = "允许混放产品") + private String productMix; + + /** 允许混放批次 */ + @Excel(name = "允许混放批次") + private String batchMix; + + /** 忽略ID */ + @Excel(name = "忽略ID") + private String ignoreId; + + /** 激活标记 */ + @Excel(name = "激活标记") + private String activeFlag; + + /** 货位标志:0-普通货位 */ + @Excel(name = "货位标志:0-普通货位") + private String userDefined1; + + /** 用户自定义2 */ + @Excel(name = "用户自定义2") + private String userDefined2; + + /** 用户自定义3 */ + @Excel(name = "用户自定义3") + private String userDefined3; + + /** 工厂 */ + @Excel(name = "工厂") + private String factoryCode; + + /** $column.columnComment */ + @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") + private String syntozk; + + public void setLocationId(String locationId) { + this.locationId = locationId; + } + + public String getLocationId() { + return locationId; + } + public void setLocationCode(String locationCode) { + this.locationCode = locationCode; + } + + public String getLocationCode() { + return locationCode; + } + public void setShelfOrder(String shelfOrder) { + this.shelfOrder = shelfOrder; + } + + public String getShelfOrder() { + return shelfOrder; + } + public void setCheckOrder(String checkOrder) { + this.checkOrder = checkOrder; + } + + public String getCheckOrder() { + return checkOrder; + } + public void setPickOrder(String pickOrder) { + this.pickOrder = pickOrder; + } + + public String getPickOrder() { + return pickOrder; + } + public void setLocationUse(String locationUse) { + this.locationUse = locationUse; + } + + public String getLocationUse() { + return locationUse; + } + public void setPickFlag(String pickFlag) { + this.pickFlag = pickFlag; + } + + public String getPickFlag() { + return pickFlag; + } + public void setIsOpenKnFlag(String isOpenKnFlag) { + this.isOpenKnFlag = isOpenKnFlag; + } + + public String getIsOpenKnFlag() { + return isOpenKnFlag; + } + public void setLocationType(String locationType) { + this.locationType = locationType; + } + + public String getLocationType() { + return locationType; + } + public void setLocationScrapType(String locationScrapType) { + this.locationScrapType = locationScrapType; + } + + public String getLocationScrapType() { + return locationScrapType; + } + public void setLocationAttr(String locationAttr) { + this.locationAttr = locationAttr; + } + + public String getLocationAttr() { + return locationAttr; + } + public void setTurnDemand(String turnDemand) { + this.turnDemand = turnDemand; + } + + public String getTurnDemand() { + return turnDemand; + } + public void setStockEnv(String stockEnv) { + this.stockEnv = stockEnv; + } + + public String getStockEnv() { + return stockEnv; + } + public void setWarehouseCode(String warehouseCode) { + this.warehouseCode = warehouseCode; + } + + public String getWarehouseCode() { + return warehouseCode; + } + public void setRegionCode(String regionCode) { + this.regionCode = regionCode; + } + + public String getRegionCode() { + return regionCode; + } + public void setAreaCode(String areaCode) { + this.areaCode = areaCode; + } + + public String getAreaCode() { + return areaCode; + } + public void setCheckCode(String checkCode) { + this.checkCode = checkCode; + } + + public String getCheckCode() { + return checkCode; + } + public void setWorkArea(String workArea) { + this.workArea = workArea; + } + + public String getWorkArea() { + return workArea; + } + public void setPort1(String port1) { + this.port1 = port1; + } + + public String getPort1() { + return port1; + } + public void setPort2(String port2) { + this.port2 = port2; + } + + public String getPort2() { + return port2; + } + public void setPort3(String port3) { + this.port3 = port3; + } + + public String getPort3() { + return port3; + } + public void setVolumeLimit(BigDecimal volumeLimit) { + this.volumeLimit = volumeLimit; + } + + public BigDecimal getVolumeLimit() { + return volumeLimit; + } + public void setWeightLimit(BigDecimal weightLimit) { + this.weightLimit = weightLimit; + } + + public BigDecimal getWeightLimit() { + return weightLimit; + } + public void setBoxLimit(Long boxLimit) { + this.boxLimit = boxLimit; + } + + public Long getBoxLimit() { + return boxLimit; + } + public void setQtyLimit(Long qtyLimit) { + this.qtyLimit = qtyLimit; + } + + public Long getQtyLimit() { + return qtyLimit; + } + public void setPalletLimit(Long palletLimit) { + this.palletLimit = palletLimit; + } + + public Long getPalletLimit() { + return palletLimit; + } + public void setLength(BigDecimal length) { + this.length = length; + } + + public BigDecimal getLength() { + return length; + } + public void setWidth(BigDecimal width) { + this.width = width; + } + + public BigDecimal getWidth() { + return width; + } + public void setHeight(BigDecimal height) { + this.height = height; + } + + public BigDecimal getHeight() { + return height; + } + public void setxCoordinate(Long xCoordinate) { + this.xCoordinate = xCoordinate; + } + + public Long getxCoordinate() { + return xCoordinate; + } + public void setyCoordinate(Long yCoordinate) { + this.yCoordinate = yCoordinate; + } + + public Long getyCoordinate() { + return yCoordinate; + } + public void setzCoordinate(Long zCoordinate) { + this.zCoordinate = zCoordinate; + } + + public Long getzCoordinate() { + return zCoordinate; + } + public void setxPixels(Long xPixels) { + this.xPixels = xPixels; + } + + public Long getxPixels() { + return xPixels; + } + public void setyPixels(Long yPixels) { + this.yPixels = yPixels; + } + + public Long getyPixels() { + return yPixels; + } + public void setzPixels(Long zPixels) { + this.zPixels = zPixels; + } + + public Long getzPixels() { + return zPixels; + } + public void setLocRow(String locRow) { + this.locRow = locRow; + } + + public String getLocRow() { + return locRow; + } + public void setLayerNum(Long layerNum) { + this.layerNum = layerNum; + } + + public Long getLayerNum() { + return layerNum; + } + public void setLocColumn(String locColumn) { + this.locColumn = locColumn; + } + + public String getLocColumn() { + return locColumn; + } + public void setBord(String bord) { + this.bord = bord; + } + + public String getBord() { + return bord; + } + public void setProductMix(String productMix) { + this.productMix = productMix; + } + + public String getProductMix() { + return productMix; + } + public void setBatchMix(String batchMix) { + this.batchMix = batchMix; + } + + public String getBatchMix() { + return batchMix; + } + public void setIgnoreId(String ignoreId) { + this.ignoreId = ignoreId; + } + + public String getIgnoreId() { + return ignoreId; + } + public void setActiveFlag(String activeFlag) { + this.activeFlag = activeFlag; + } + + public String getActiveFlag() { + return activeFlag; + } + public void setUserDefined1(String userDefined1) { + this.userDefined1 = userDefined1; + } + + public String getUserDefined1() { + return userDefined1; + } + public void setUserDefined2(String userDefined2) { + this.userDefined2 = userDefined2; + } + + public String getUserDefined2() { + return userDefined2; + } + public void setUserDefined3(String userDefined3) { + this.userDefined3 = userDefined3; + } + + public String getUserDefined3() { + return userDefined3; + } + public void setFactoryCode(String factoryCode) { + this.factoryCode = factoryCode; + } + + public String getFactoryCode() { + return factoryCode; + } + public void setSyntozk(String syntozk) { + this.syntozk = syntozk; + } + + public String getSyntozk() { + return syntozk; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("locationId", getLocationId()) + .append("locationCode", getLocationCode()) + .append("shelfOrder", getShelfOrder()) + .append("checkOrder", getCheckOrder()) + .append("pickOrder", getPickOrder()) + .append("locationUse", getLocationUse()) + .append("pickFlag", getPickFlag()) + .append("isOpenKnFlag", getIsOpenKnFlag()) + .append("locationType", getLocationType()) + .append("locationScrapType", getLocationScrapType()) + .append("locationAttr", getLocationAttr()) + .append("turnDemand", getTurnDemand()) + .append("stockEnv", getStockEnv()) + .append("warehouseCode", getWarehouseCode()) + .append("regionCode", getRegionCode()) + .append("areaCode", getAreaCode()) + .append("checkCode", getCheckCode()) + .append("workArea", getWorkArea()) + .append("port1", getPort1()) + .append("port2", getPort2()) + .append("port3", getPort3()) + .append("volumeLimit", getVolumeLimit()) + .append("weightLimit", getWeightLimit()) + .append("boxLimit", getBoxLimit()) + .append("qtyLimit", getQtyLimit()) + .append("palletLimit", getPalletLimit()) + .append("length", getLength()) + .append("width", getWidth()) + .append("height", getHeight()) + .append("xCoordinate", getxCoordinate()) + .append("yCoordinate", getyCoordinate()) + .append("zCoordinate", getzCoordinate()) + .append("xPixels", getxPixels()) + .append("yPixels", getyPixels()) + .append("zPixels", getzPixels()) + .append("locRow", getLocRow()) + .append("layerNum", getLayerNum()) + .append("locColumn", getLocColumn()) + .append("bord", getBord()) + .append("productMix", getProductMix()) + .append("batchMix", getBatchMix()) + .append("ignoreId", getIgnoreId()) + .append("activeFlag", getActiveFlag()) + .append("userDefined1", getUserDefined1()) + .append("userDefined2", getUserDefined2()) + .append("userDefined3", getUserDefined3()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("remark", getRemark()) + .append("factoryCode", getFactoryCode()) + .append("syntozk", getSyntozk()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseShiftsT.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseShiftsT.java new file mode 100644 index 00000000..cbf8ff26 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseShiftsT.java @@ -0,0 +1,207 @@ +package com.op.wms.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.BaseEntity; + +/** + * 班次管理对象 base_shifts_t + * + * @author Open Platform + * @date 2023-07-06 + */ +public class BaseShiftsT extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** 班次主键 */ + private String shiftId; + + /** 班次编码 */ + @Excel(name = "班次编码") + private String shiftCode; + + /** 班次简称 */ + @Excel(name = "班次简称") + private String shiftDesc; + + /** 班次通用名称 */ + @Excel(name = "班次通用名称") + private String shiftDescGlobal; + + /** 班次扩展名称 */ + @Excel(name = "班次扩展名称") + private String shiftDescExtended; + + /** 开始时间 */ + @Excel(name = "开始时间") + private String shiftStartTime; + + /** 结束时间 */ + @Excel(name = "结束时间") + private String shiftEndTime; + + /** 创建时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date createDate; + + /** 最后更新人 */ + @Excel(name = "最后更新人") + private String lastUpdateBy; + + /** 最后更新时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "最后更新时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date lastUpdateDate; + + /** 可用标识 */ + @Excel(name = "可用标识") + private String Active; + + /** 企业主键 */ + @Excel(name = "企业主键") + private String enterpriseId; + + /** 企业编码 */ + @Excel(name = "企业编码") + private String enterpriseCode; + + /** 工厂主键 */ + @Excel(name = "工厂主键") + private String siteId; + + /** 工厂编码 */ + @Excel(name = "工厂编码") + private String siteCode; + + public void setShiftId(String shiftId) { + this.shiftId = shiftId; + } + + public String getShiftId() { + return shiftId; + } + public void setShiftCode(String shiftCode) { + this.shiftCode = shiftCode; + } + + public String getShiftCode() { + return shiftCode; + } + public void setShiftDesc(String shiftDesc) { + this.shiftDesc = shiftDesc; + } + + public String getShiftDesc() { + return shiftDesc; + } + public void setShiftDescGlobal(String shiftDescGlobal) { + this.shiftDescGlobal = shiftDescGlobal; + } + + public String getShiftDescGlobal() { + return shiftDescGlobal; + } + public void setShiftDescExtended(String shiftDescExtended) { + this.shiftDescExtended = shiftDescExtended; + } + + public String getShiftDescExtended() { + return shiftDescExtended; + } + public void setShiftStartTime(String shiftStartTime) { + this.shiftStartTime = shiftStartTime; + } + + public String getShiftStartTime() { + return shiftStartTime; + } + public void setShiftEndTime(String shiftEndTime) { + this.shiftEndTime = shiftEndTime; + } + + public String getShiftEndTime() { + return shiftEndTime; + } + public void setCreateDate(Date createDate) { + this.createDate = createDate; + } + + public Date getCreateDate() { + return createDate; + } + public void setLastUpdateBy(String lastUpdateBy) { + this.lastUpdateBy = lastUpdateBy; + } + + public String getLastUpdateBy() { + return lastUpdateBy; + } + public void setLastUpdateDate(Date lastUpdateDate) { + this.lastUpdateDate = lastUpdateDate; + } + + public Date getLastUpdateDate() { + return lastUpdateDate; + } + public void setActive(String Active) { + this.Active = Active; + } + + public String getActive() { + return Active; + } + public void setEnterpriseId(String enterpriseId) { + this.enterpriseId = enterpriseId; + } + + public String getEnterpriseId() { + return enterpriseId; + } + public void setEnterpriseCode(String enterpriseCode) { + this.enterpriseCode = enterpriseCode; + } + + public String getEnterpriseCode() { + return enterpriseCode; + } + public void setSiteId(String siteId) { + this.siteId = siteId; + } + + public String getSiteId() { + return siteId; + } + public void setSiteCode(String siteCode) { + this.siteCode = siteCode; + } + + public String getSiteCode() { + return siteCode; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("shiftId", getShiftId()) + .append("shiftCode", getShiftCode()) + .append("shiftDesc", getShiftDesc()) + .append("shiftDescGlobal", getShiftDescGlobal()) + .append("shiftDescExtended", getShiftDescExtended()) + .append("shiftStartTime", getShiftStartTime()) + .append("shiftEndTime", getShiftEndTime()) + .append("createBy", getCreateBy()) + .append("createDate", getCreateDate()) + .append("lastUpdateBy", getLastUpdateBy()) + .append("lastUpdateDate", getLastUpdateDate()) + .append("Active", getActive()) + .append("enterpriseId", getEnterpriseId()) + .append("enterpriseCode", getEnterpriseCode()) + .append("siteId", getSiteId()) + .append("siteCode", getSiteCode()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseTeamT.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseTeamT.java new file mode 100644 index 00000000..fa6a582b --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseTeamT.java @@ -0,0 +1,304 @@ +package com.op.wms.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.BaseEntity; + +/** + * 班组对象 base_team_t + * + * @author Open Platform + * @date 2023-07-05 + */ +public class BaseTeamT extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** 班组主键 */ + private String teamId; + + /** 组织机构主键 */ + @Excel(name = "组织机构主键") + private String orgId; + + /** 班组编码 */ + @Excel(name = "班组编码") + private String teamCode; + + /** 班组简称 */ + @Excel(name = "班组简称") + private String teamDesc; + + /** 班组通用名称 */ + @Excel(name = "班组通用名称") + private String teamDescGlobal; + + /** 班组扩展名称 */ + @Excel(name = "班组扩展名称") + private String teamDescExtended; + + /** 创建时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date createDate; + + /** 最后更新人 */ + @Excel(name = "最后更新人") + private String lastUpdateBy; + + /** 最后更新时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "最后更新时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date lastUpdateDate; + + /** 可用标识 */ + @Excel(name = "可用标识") + private String Active; + + /** 企业主键 */ + @Excel(name = "企业主键") + private String enterpriseId; + + /** 企业编码 */ + @Excel(name = "企业编码") + private String enterpriseCode; + + /** 工厂主键 */ + @Excel(name = "工厂主键") + private String siteId; + + /** 工厂编码 */ + @Excel(name = "工厂编码") + private String siteCode; + + /** 线体编码 */ + @Excel(name = "线体编码") + private String productionLineCode; + + /** 班组长编码 */ + @Excel(name = "班组长编码") + private String teamLeaderCode; + + /** 定编岗位数量 */ + @Excel(name = "定编岗位数量") + private Integer planPostQuantity; + + /** 已分配岗位数量 */ + @Excel(name = "已分配岗位数量") + private Integer actualPostQuantity; + + /** 薪酬类型(0:总装;1:小时节点筹; */ + @Excel(name = "薪酬类型(0:总装;1:小时节点筹;") + private String salaryType; + + /** 班组属性 */ + @Excel(name = "班组属性") + private String teamProperties; + + /** 应出勤人数 */ + @Excel(name = "应出勤人数") + private Integer attendanceQuantity; + + /** 已分配人数 */ + @Excel(name = "已分配人数") + private Integer assignedQuantity; + + /** 班组类型 */ + @Excel(name = "班组类型") + private String teamType; + + public void setTeamType(String teamType) { + this.teamType = teamType; + } + + public String getTeamType() { + return teamType; + } + + public void setTeamId(String teamId) { + this.teamId = teamId; + } + + public String getTeamId() { + return teamId; + } + public void setOrgId(String orgId) { + this.orgId = orgId; + } + + public String getOrgId() { + return orgId; + } + public void setTeamCode(String teamCode) { + this.teamCode = teamCode; + } + + public String getTeamCode() { + return teamCode; + } + public void setTeamDesc(String teamDesc) { + this.teamDesc = teamDesc; + } + + public String getTeamDesc() { + return teamDesc; + } + public void setTeamDescGlobal(String teamDescGlobal) { + this.teamDescGlobal = teamDescGlobal; + } + + public String getTeamDescGlobal() { + return teamDescGlobal; + } + public void setTeamDescExtended(String teamDescExtended) { + this.teamDescExtended = teamDescExtended; + } + + public String getTeamDescExtended() { + return teamDescExtended; + } + public void setCreateDate(Date createDate) { + this.createDate = createDate; + } + + public Date getCreateDate() { + return createDate; + } + public void setLastUpdateBy(String lastUpdateBy) { + this.lastUpdateBy = lastUpdateBy; + } + + public String getLastUpdateBy() { + return lastUpdateBy; + } + public void setLastUpdateDate(Date lastUpdateDate) { + this.lastUpdateDate = lastUpdateDate; + } + + public Date getLastUpdateDate() { + return lastUpdateDate; + } + public void setActive(String Active) { + this.Active = Active; + } + + public String getActive() { + return Active; + } + public void setEnterpriseId(String enterpriseId) { + this.enterpriseId = enterpriseId; + } + + public String getEnterpriseId() { + return enterpriseId; + } + public void setEnterpriseCode(String enterpriseCode) { + this.enterpriseCode = enterpriseCode; + } + + public String getEnterpriseCode() { + return enterpriseCode; + } + public void setSiteId(String siteId) { + this.siteId = siteId; + } + + public String getSiteId() { + return siteId; + } + public void setSiteCode(String siteCode) { + this.siteCode = siteCode; + } + + public String getSiteCode() { + return siteCode; + } + public void setProductionLineCode(String productionLineCode) { + this.productionLineCode = productionLineCode; + } + + public String getProductionLineCode() { + return productionLineCode; + } + public void setTeamLeaderCode(String teamLeaderCode) { + this.teamLeaderCode = teamLeaderCode; + } + + public String getTeamLeaderCode() { + return teamLeaderCode; + } + public void setPlanPostQuantity(Integer planPostQuantity) { + this.planPostQuantity = planPostQuantity; + } + + public Integer getPlanPostQuantity() { + return planPostQuantity; + } + public void setActualPostQuantity(Integer actualPostQuantity) { + this.actualPostQuantity = actualPostQuantity; + } + + public Integer getActualPostQuantity() { + return actualPostQuantity; + } + public void setSalaryType(String salaryType) { + this.salaryType = salaryType; + } + + public String getSalaryType() { + return salaryType; + } + public void setTeamProperties(String teamProperties) { + this.teamProperties = teamProperties; + } + + public String getTeamProperties() { + return teamProperties; + } + public void setAttendanceQuantity(Integer attendanceQuantity) { + this.attendanceQuantity = attendanceQuantity; + } + + public Integer getAttendanceQuantity() { + return attendanceQuantity; + } + public void setAssignedQuantity(Integer assignedQuantity) { + this.assignedQuantity = assignedQuantity; + } + + public Integer getAssignedQuantity() { + return assignedQuantity; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("teamId", getTeamId()) + .append("orgId", getOrgId()) + .append("teamCode", getTeamCode()) + .append("teamDesc", getTeamDesc()) + .append("teamDescGlobal", getTeamDescGlobal()) + .append("teamDescExtended", getTeamDescExtended()) + .append("createBy", getCreateBy()) + .append("createDate", getCreateDate()) + .append("lastUpdateBy", getLastUpdateBy()) + .append("lastUpdateDate", getLastUpdateDate()) + .append("Active", getActive()) + .append("enterpriseId", getEnterpriseId()) + .append("enterpriseCode", getEnterpriseCode()) + .append("siteId", getSiteId()) + .append("siteCode", getSiteCode()) + .append("productionLineCode", getProductionLineCode()) + .append("teamLeaderCode", getTeamLeaderCode()) + .append("planPostQuantity", getPlanPostQuantity()) + .append("actualPostQuantity", getActualPostQuantity()) + .append("salaryType", getSalaryType()) + .append("teamProperties", getTeamProperties()) + .append("attendanceQuantity", getAttendanceQuantity()) + .append("assignedQuantity", getAssignedQuantity()) + .append("teamType", getTeamType()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseWarehouse.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseWarehouse.java new file mode 100644 index 00000000..28eb22d2 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseWarehouse.java @@ -0,0 +1,195 @@ +package com.op.wms.domain; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.BaseEntity; + +/** + * 仓库管理对象 base_warehouse + * + * @author Open Platform + * @date 2023-07-04 + */ +public class BaseWarehouse extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** $column.columnComment */ + private String warehouseId; + + /** 1WMS原材料, */ + @Excel(name = "1WMS原材料,") + private String warehouseType; + + /** 仓库编码 */ + @Excel(name = "仓库编码") + private String warehouseCode; + + /** 仓库名称 */ + @Excel(name = "仓库名称") + private String warehouseName; + + /** 工厂编码 */ + @Excel(name = "工厂编码") + private String factoryCode; + + /** 工厂名称 */ + @Excel(name = "工厂名称") + private String factoryName; + + /** 数据源 */ + @Excel(name = "数据源") + private String dataSource; + + /** DB用户 */ + @Excel(name = "DB用户") + private String schame; + + /** 激活标记 */ + @Excel(name = "激活标记") + private String activeFlag; + + /** 用户自定义1 */ + @Excel(name = "用户自定义1") + private String userDefined1; + + /** 用户自定义2 */ + @Excel(name = "用户自定义2") + private String userDefined2; + + /** 用户自定义3 */ + @Excel(name = "用户自定义3") + private String userDefined3; + + /** 是否按照线体入库 */ + @Excel(name = "是否按照线体入库") + private String lineFlag; + + /** 仓库类型 */ + @Excel(name = "仓库类型") + private String warehouseType2; + + public void setWarehouseId(String warehouseId) { + this.warehouseId = warehouseId; + } + + public String getWarehouseId() { + return warehouseId; + } + public void setWarehouseType(String warehouseType) { + this.warehouseType = warehouseType; + } + + public String getWarehouseType() { + return warehouseType; + } + public void setWarehouseCode(String warehouseCode) { + this.warehouseCode = warehouseCode; + } + + public String getWarehouseCode() { + return warehouseCode; + } + public void setWarehouseName(String warehouseName) { + this.warehouseName = warehouseName; + } + + public String getWarehouseName() { + return warehouseName; + } + public void setFactoryCode(String factoryCode) { + this.factoryCode = factoryCode; + } + + public String getFactoryCode() { + return factoryCode; + } + public void setFactoryName(String factoryName) { + this.factoryName = factoryName; + } + + public String getFactoryName() { + return factoryName; + } + public void setDataSource(String dataSource) { + this.dataSource = dataSource; + } + + public String getDataSource() { + return dataSource; + } + public void setSchame(String schame) { + this.schame = schame; + } + + public String getSchame() { + return schame; + } + public void setActiveFlag(String activeFlag) { + this.activeFlag = activeFlag; + } + + public String getActiveFlag() { + return activeFlag; + } + public void setUserDefined1(String userDefined1) { + this.userDefined1 = userDefined1; + } + + public String getUserDefined1() { + return userDefined1; + } + public void setUserDefined2(String userDefined2) { + this.userDefined2 = userDefined2; + } + + public String getUserDefined2() { + return userDefined2; + } + public void setUserDefined3(String userDefined3) { + this.userDefined3 = userDefined3; + } + + public String getUserDefined3() { + return userDefined3; + } + public void setLineFlag(String lineFlag) { + this.lineFlag = lineFlag; + } + + public String getLineFlag() { + return lineFlag; + } + public void setWarehouseType2(String warehouseType2) { + this.warehouseType2 = warehouseType2; + } + + public String getWarehouseType2() { + return warehouseType2; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("warehouseId", getWarehouseId()) + .append("warehouseType", getWarehouseType()) + .append("warehouseCode", getWarehouseCode()) + .append("warehouseName", getWarehouseName()) + .append("factoryCode", getFactoryCode()) + .append("factoryName", getFactoryName()) + .append("dataSource", getDataSource()) + .append("schame", getSchame()) + .append("activeFlag", getActiveFlag()) + .append("userDefined1", getUserDefined1()) + .append("userDefined2", getUserDefined2()) + .append("userDefined3", getUserDefined3()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("remark", getRemark()) + .append("lineFlag", getLineFlag()) + .append("warehouseType2", getWarehouseType2()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/SysFactory.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/SysFactory.java new file mode 100644 index 00000000..3d491ed5 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/SysFactory.java @@ -0,0 +1,126 @@ +package com.op.wms.domain; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.op.common.core.annotation.Excel; +import com.op.common.core.web.domain.TreeEntity; + +/** + * 工厂模型对象 sys_factory + * + * @author Open Platform + * @date 2023-07-03 + */ +public class SysFactory extends TreeEntity { + private static final long serialVersionUID = 1L; + + /** 工厂id */ + private Long factoryId; + + /** 部门名称 */ + @Excel(name = "工厂名称") + private String factoryName; + + /** 负责人 */ + @Excel(name = "负责人") + private String leader; + + /** 联系电话 */ + @Excel(name = "联系电话") + private String phone; + + /** 邮箱 */ + @Excel(name = "邮箱") + private String email; + + /** 部门状态(0正常 */ + @Excel(name = "工厂状态") + private String status; + + /** 删除标志(0代表存在 */ + private String delFlag; + + /** 工厂编码 */ + @Excel(name = "工厂编码") + private String factoryCode; + + public void setFactoryId(Long factoryId) { + this.factoryId = factoryId; + } + + public Long getFactoryId() { + return factoryId; + } + + public void setFactoryName(String factoryName) { + this.factoryName = factoryName; + } + + public String getFactoryName() { + return factoryName; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getLeader() { + return leader; + } + public void setPhone(String phone) { + this.phone = phone; + } + + public String getPhone() { + return phone; + } + public void setEmail(String email) { + this.email = email; + } + + public String getEmail() { + return email; + } + public void setStatus(String status) { + this.status = status; + } + + public String getStatus() { + return status; + } + public void setDelFlag(String delFlag) { + this.delFlag = delFlag; + } + + public String getDelFlag() { + return delFlag; + } + + public String getFactoryCode() { + return factoryCode; + } + public void setFactoryCode(String factoryCode) { + this.factoryCode = factoryCode; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("factoryId", getFactoryId()) + .append("parentId", getParentId()) + .append("ancestors", getAncestors()) + .append("factoryName", getFactoryName()) + .append("orderNum", getOrderNum()) + .append("leader", getLeader()) + .append("phone", getPhone()) + .append("email", getEmail()) + .append("status", getStatus()) + .append("delFlag", getDelFlag()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("factoryCode", getFactoryCode()) + .toString(); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseAreaMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseAreaMapper.java new file mode 100644 index 00000000..080c9a07 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseAreaMapper.java @@ -0,0 +1,63 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.BaseArea; + +/** + * 库区Mapper接口 + * + * @author Open Platform + * @date 2023-07-04 + */ +public interface BaseAreaMapper { + /** + * 查询库区 + * + * @param areaId 库区主键 + * @return 库区 + */ + public BaseArea selectBaseAreaByAreaId(String areaId); + + /** + * 查询库区列表 + * + * @param baseArea 库区 + * @return 库区集合 + */ + public List selectBaseAreaList(BaseArea baseArea); + + /** + * 新增库区 + * + * @param baseArea 库区 + * @return 结果 + */ + public int insertBaseArea(BaseArea baseArea); + + /** + * 修改库区 + * + * @param baseArea 库区 + * @return 结果 + */ + public int updateBaseArea(BaseArea baseArea); + + /** + * 删除库区 + * + * @param areaId 库区主键 + * @return 结果 + */ + public int deleteBaseAreaByAreaId(String areaId); + + /** + * 批量删除库区 + * + * @param areaIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseAreaByAreaIds(String[] areaIds); + + public Integer queryCount(BaseArea baseArea); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseLocationMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseLocationMapper.java new file mode 100644 index 00000000..6d47f668 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseLocationMapper.java @@ -0,0 +1,61 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.BaseLocation; + +/** + * 货位管理Mapper接口 + * + * @author Open Platform + * @date 2023-07-06 + */ +public interface BaseLocationMapper { + /** + * 查询货位管理 + * + * @param locationId 货位管理主键 + * @return 货位管理 + */ + public BaseLocation selectBaseLocationByLocationId(String locationId); + + /** + * 查询货位管理列表 + * + * @param baseLocation 货位管理 + * @return 货位管理集合 + */ + public List selectBaseLocationList(BaseLocation baseLocation); + + /** + * 新增货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + public int insertBaseLocation(BaseLocation baseLocation); + + /** + * 修改货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + public int updateBaseLocation(BaseLocation baseLocation); + + /** + * 删除货位管理 + * + * @param locationId 货位管理主键 + * @return 结果 + */ + public int deleteBaseLocationByLocationId(String locationId); + + /** + * 批量删除货位管理 + * + * @param locationIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseLocationByLocationIds(String[] locationIds); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseShiftsTMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseShiftsTMapper.java new file mode 100644 index 00000000..a184b224 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseShiftsTMapper.java @@ -0,0 +1,61 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.BaseShiftsT; + +/** + * 班次管理Mapper接口 + * + * @author Open Platform + * @date 2023-07-06 + */ +public interface BaseShiftsTMapper { + /** + * 查询班次管理 + * + * @param shiftId 班次管理主键 + * @return 班次管理 + */ + public BaseShiftsT selectBaseShiftsTByShiftId(String shiftId); + + /** + * 查询班次管理列表 + * + * @param baseShiftsT 班次管理 + * @return 班次管理集合 + */ + public List selectBaseShiftsTList(BaseShiftsT baseShiftsT); + + /** + * 新增班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + public int insertBaseShiftsT(BaseShiftsT baseShiftsT); + + /** + * 修改班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + public int updateBaseShiftsT(BaseShiftsT baseShiftsT); + + /** + * 删除班次管理 + * + * @param shiftId 班次管理主键 + * @return 结果 + */ + public int deleteBaseShiftsTByShiftId(String shiftId); + + /** + * 批量删除班次管理 + * + * @param shiftIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseShiftsTByShiftIds(String[] shiftIds); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseTeamTMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseTeamTMapper.java new file mode 100644 index 00000000..bb719c01 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseTeamTMapper.java @@ -0,0 +1,61 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.BaseTeamT; + +/** + * 班组Mapper接口 + * + * @author Open Platform + * @date 2023-07-05 + */ +public interface BaseTeamTMapper { + /** + * 查询班组 + * + * @param teamId 班组主键 + * @return 班组 + */ + public BaseTeamT selectBaseTeamTByTeamId(String teamId); + + /** + * 查询班组列表 + * + * @param baseTeamT 班组 + * @return 班组集合 + */ + public List selectBaseTeamTList(BaseTeamT baseTeamT); + + /** + * 新增班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + public int insertBaseTeamT(BaseTeamT baseTeamT); + + /** + * 修改班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + public int updateBaseTeamT(BaseTeamT baseTeamT); + + /** + * 删除班组 + * + * @param teamId 班组主键 + * @return 结果 + */ + public int deleteBaseTeamTByTeamId(String teamId); + + /** + * 批量删除班组 + * + * @param teamIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseTeamTByTeamIds(String[] teamIds); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseWarehouseMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseWarehouseMapper.java new file mode 100644 index 00000000..58435a8a --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/BaseWarehouseMapper.java @@ -0,0 +1,63 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.BaseWarehouse; + +/** + * 仓库管理Mapper接口 + * + * @author Open Platform + * @date 2023-07-04 + */ +public interface BaseWarehouseMapper { + /** + * 查询仓库管理 + * + * @param warehouseId 仓库管理主键 + * @return 仓库管理 + */ + public BaseWarehouse selectBaseWarehouseByWarehouseId(String warehouseId); + + /** + * 查询仓库管理列表 + * + * @param baseWarehouse 仓库管理 + * @return 仓库管理集合 + */ + public List selectBaseWarehouseList(BaseWarehouse baseWarehouse); + + /** + * 新增仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + public int insertBaseWarehouse(BaseWarehouse baseWarehouse); + + /** + * 修改仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + public int updateBaseWarehouse(BaseWarehouse baseWarehouse); + + /** + * 删除仓库管理 + * + * @param warehouseId 仓库管理主键 + * @return 结果 + */ + public int deleteBaseWarehouseByWarehouseId(String warehouseId); + + /** + * 批量删除仓库管理 + * + * @param warehouseIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseWarehouseByWarehouseIds(String[] warehouseIds); + //查询总数 + Integer queryCount(BaseWarehouse baseWarehouse); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/mapper/SysFactoryMapper.java b/op-modules/op-wms/src/main/java/com/op/wms/mapper/SysFactoryMapper.java new file mode 100644 index 00000000..39f64ae5 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/mapper/SysFactoryMapper.java @@ -0,0 +1,61 @@ +package com.op.wms.mapper; + +import java.util.List; + +import com.op.wms.domain.SysFactory; + +/** + * 工厂模型Mapper接口 + * + * @author Open Platform + * @date 2023-07-03 + */ +public interface SysFactoryMapper { + /** + * 查询工厂模型 + * + * @param factoryId 工厂模型主键 + * @return 工厂模型 + */ + public SysFactory selectSysFactoryByFactoryId(Long factoryId); + + /** + * 查询工厂模型列表 + * + * @param sysFactory 工厂模型 + * @return 工厂模型集合 + */ + public List selectSysFactoryList(SysFactory sysFactory); + + /** + * 新增工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + public int insertSysFactory(SysFactory sysFactory); + + /** + * 修改工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + public int updateSysFactory(SysFactory sysFactory); + + /** + * 删除工厂模型 + * + * @param factoryId 工厂模型主键 + * @return 结果 + */ + public int deleteSysFactoryByFactoryId(Long factoryId); + + /** + * 批量删除工厂模型 + * + * @param factoryIds 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteSysFactoryByFactoryIds(Long[] factoryIds); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseAreaService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseAreaService.java new file mode 100644 index 00000000..eb2ff666 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseAreaService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.BaseArea; + +/** + * 库区Service接口 + * + * @author Open Platform + * @date 2023-07-04 + */ +public interface IBaseAreaService { + /** + * 查询库区 + * + * @param areaId 库区主键 + * @return 库区 + */ + public BaseArea selectBaseAreaByAreaId(String areaId); + + /** + * 查询库区列表 + * + * @param baseArea 库区 + * @return 库区集合 + */ + public List selectBaseAreaList(BaseArea baseArea); + + /** + * 新增库区 + * + * @param baseArea 库区 + * @return 结果 + */ + public int insertBaseArea(BaseArea baseArea); + + /** + * 修改库区 + * + * @param baseArea 库区 + * @return 结果 + */ + public int updateBaseArea(BaseArea baseArea); + + /** + * 批量删除库区 + * + * @param areaIds 需要删除的库区主键集合 + * @return 结果 + */ + public int deleteBaseAreaByAreaIds(String[] areaIds); + + /** + * 删除库区信息 + * + * @param areaId 库区主键 + * @return 结果 + */ + public int deleteBaseAreaByAreaId(String areaId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseLocationService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseLocationService.java new file mode 100644 index 00000000..9153409c --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseLocationService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.BaseLocation; + +/** + * 货位管理Service接口 + * + * @author Open Platform + * @date 2023-07-06 + */ +public interface IBaseLocationService { + /** + * 查询货位管理 + * + * @param locationId 货位管理主键 + * @return 货位管理 + */ + public BaseLocation selectBaseLocationByLocationId(String locationId); + + /** + * 查询货位管理列表 + * + * @param baseLocation 货位管理 + * @return 货位管理集合 + */ + public List selectBaseLocationList(BaseLocation baseLocation); + + /** + * 新增货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + public int insertBaseLocation(BaseLocation baseLocation); + + /** + * 修改货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + public int updateBaseLocation(BaseLocation baseLocation); + + /** + * 批量删除货位管理 + * + * @param locationIds 需要删除的货位管理主键集合 + * @return 结果 + */ + public int deleteBaseLocationByLocationIds(String[] locationIds); + + /** + * 删除货位管理信息 + * + * @param locationId 货位管理主键 + * @return 结果 + */ + public int deleteBaseLocationByLocationId(String locationId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseShiftsTService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseShiftsTService.java new file mode 100644 index 00000000..8ee77d95 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseShiftsTService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.BaseShiftsT; + +/** + * 班次管理Service接口 + * + * @author Open Platform + * @date 2023-07-06 + */ +public interface IBaseShiftsTService { + /** + * 查询班次管理 + * + * @param shiftId 班次管理主键 + * @return 班次管理 + */ + public BaseShiftsT selectBaseShiftsTByShiftId(String shiftId); + + /** + * 查询班次管理列表 + * + * @param baseShiftsT 班次管理 + * @return 班次管理集合 + */ + public List selectBaseShiftsTList(BaseShiftsT baseShiftsT); + + /** + * 新增班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + public int insertBaseShiftsT(BaseShiftsT baseShiftsT); + + /** + * 修改班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + public int updateBaseShiftsT(BaseShiftsT baseShiftsT); + + /** + * 批量删除班次管理 + * + * @param shiftIds 需要删除的班次管理主键集合 + * @return 结果 + */ + public int deleteBaseShiftsTByShiftIds(String[] shiftIds); + + /** + * 删除班次管理信息 + * + * @param shiftId 班次管理主键 + * @return 结果 + */ + public int deleteBaseShiftsTByShiftId(String shiftId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseTeamTService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseTeamTService.java new file mode 100644 index 00000000..96fb0973 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseTeamTService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.BaseTeamT; + +/** + * 班组Service接口 + * + * @author Open Platform + * @date 2023-07-05 + */ +public interface IBaseTeamTService { + /** + * 查询班组 + * + * @param teamId 班组主键 + * @return 班组 + */ + public BaseTeamT selectBaseTeamTByTeamId(String teamId); + + /** + * 查询班组列表 + * + * @param baseTeamT 班组 + * @return 班组集合 + */ + public List selectBaseTeamTList(BaseTeamT baseTeamT); + + /** + * 新增班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + public int insertBaseTeamT(BaseTeamT baseTeamT); + + /** + * 修改班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + public int updateBaseTeamT(BaseTeamT baseTeamT); + + /** + * 批量删除班组 + * + * @param teamIds 需要删除的班组主键集合 + * @return 结果 + */ + public int deleteBaseTeamTByTeamIds(String[] teamIds); + + /** + * 删除班组信息 + * + * @param teamId 班组主键 + * @return 结果 + */ + public int deleteBaseTeamTByTeamId(String teamId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseWarehouseService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseWarehouseService.java new file mode 100644 index 00000000..a2213d10 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/IBaseWarehouseService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.BaseWarehouse; + +/** + * 仓库管理Service接口 + * + * @author Open Platform + * @date 2023-07-04 + */ +public interface IBaseWarehouseService { + /** + * 查询仓库管理 + * + * @param warehouseId 仓库管理主键 + * @return 仓库管理 + */ + public BaseWarehouse selectBaseWarehouseByWarehouseId(String warehouseId); + + /** + * 查询仓库管理列表 + * + * @param baseWarehouse 仓库管理 + * @return 仓库管理集合 + */ + public List selectBaseWarehouseList(BaseWarehouse baseWarehouse); + + /** + * 新增仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + public int insertBaseWarehouse(BaseWarehouse baseWarehouse); + + /** + * 修改仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + public int updateBaseWarehouse(BaseWarehouse baseWarehouse); + + /** + * 批量删除仓库管理 + * + * @param warehouseIds 需要删除的仓库管理主键集合 + * @return 结果 + */ + public int deleteBaseWarehouseByWarehouseIds(String[] warehouseIds); + + /** + * 删除仓库管理信息 + * + * @param warehouseId 仓库管理主键 + * @return 结果 + */ + public int deleteBaseWarehouseByWarehouseId(String warehouseId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/ISysFactoryService.java b/op-modules/op-wms/src/main/java/com/op/wms/service/ISysFactoryService.java new file mode 100644 index 00000000..ef3c43ef --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/ISysFactoryService.java @@ -0,0 +1,60 @@ +package com.op.wms.service; + +import java.util.List; +import com.op.wms.domain.SysFactory; + +/** + * 工厂模型Service接口 + * + * @author Open Platform + * @date 2023-07-03 + */ +public interface ISysFactoryService { + /** + * 查询工厂模型 + * + * @param factoryId 工厂模型主键 + * @return 工厂模型 + */ + public SysFactory selectSysFactoryByFactoryId(Long factoryId); + + /** + * 查询工厂模型列表 + * + * @param sysFactory 工厂模型 + * @return 工厂模型集合 + */ + public List selectSysFactoryList(SysFactory sysFactory); + + /** + * 新增工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + public int insertSysFactory(SysFactory sysFactory); + + /** + * 修改工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + public int updateSysFactory(SysFactory sysFactory); + + /** + * 批量删除工厂模型 + * + * @param factoryIds 需要删除的工厂模型主键集合 + * @return 结果 + */ + public int deleteSysFactoryByFactoryIds(Long[] factoryIds); + + /** + * 删除工厂模型信息 + * + * @param factoryId 工厂模型主键 + * @return 结果 + */ + public int deleteSysFactoryByFactoryId(Long factoryId); +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseAreaServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseAreaServiceImpl.java new file mode 100644 index 00000000..81f7311d --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseAreaServiceImpl.java @@ -0,0 +1,94 @@ +package com.op.wms.service.impl; + +import java.util.List; +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.BaseAreaMapper; +import com.op.wms.domain.BaseArea; +import com.op.wms.service.IBaseAreaService; + +/** + * 库区Service业务层处理 + * + * @author Open Platform + * @date 2023-07-04 + */ +@Service +public class BaseAreaServiceImpl implements IBaseAreaService { + @Autowired + private BaseAreaMapper baseAreaMapper; + + /** + * 查询库区 + * + * @param areaId 库区主键 + * @return 库区 + */ + @Override + public BaseArea selectBaseAreaByAreaId(String areaId) { + return baseAreaMapper.selectBaseAreaByAreaId(areaId); + } + + /** + * 查询库区列表 + * + * @param baseArea 库区 + * @return 库区 + */ + @Override + public List selectBaseAreaList(BaseArea baseArea) { + return baseAreaMapper.selectBaseAreaList(baseArea); + } + + /** + * 新增库区 + * + * @param baseArea 库区 + * @return 结果 + */ + @Override + public int insertBaseArea(BaseArea baseArea) { + baseArea.setCreateTime(DateUtils.getNowDate()); + baseArea.setCreateBy(SecurityUtils.getUsername()); +// Integer count = baseAreaMapper.queryCount(baseArea); +// count = count +1; +// baseArea.setAreaId(count + ""); + return baseAreaMapper.insertBaseArea(baseArea); + } + + /** + * 修改库区 + * + * @param baseArea 库区 + * @return 结果 + */ + @Override + public int updateBaseArea(BaseArea baseArea) { + baseArea.setUpdateTime(DateUtils.getNowDate()); + return baseAreaMapper.updateBaseArea(baseArea); + } + + /** + * 批量删除库区 + * + * @param areaIds 需要删除的库区主键 + * @return 结果 + */ + @Override + public int deleteBaseAreaByAreaIds(String[] areaIds) { + return baseAreaMapper.deleteBaseAreaByAreaIds(areaIds); + } + + /** + * 删除库区信息 + * + * @param areaId 库区主键 + * @return 结果 + */ + @Override + public int deleteBaseAreaByAreaId(String areaId) { + return baseAreaMapper.deleteBaseAreaByAreaId(areaId); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseLocationServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseLocationServiceImpl.java new file mode 100644 index 00000000..d0c054d1 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseLocationServiceImpl.java @@ -0,0 +1,92 @@ +package com.op.wms.service.impl; + +import java.util.List; +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.BaseLocationMapper; +import com.op.wms.domain.BaseLocation; +import com.op.wms.service.IBaseLocationService; + +/** + * 货位管理Service业务层处理 + * + * @author Open Platform + * @date 2023-07-06 + */ +@Service +public class BaseLocationServiceImpl implements IBaseLocationService { + @Autowired + private BaseLocationMapper baseLocationMapper; + + /** + * 查询货位管理 + * + * @param locationId 货位管理主键 + * @return 货位管理 + */ + @Override + public BaseLocation selectBaseLocationByLocationId(String locationId) { + return baseLocationMapper.selectBaseLocationByLocationId(locationId); + } + + /** + * 查询货位管理列表 + * + * @param baseLocation 货位管理 + * @return 货位管理 + */ + @Override + public List selectBaseLocationList(BaseLocation baseLocation) { + return baseLocationMapper.selectBaseLocationList(baseLocation); + } + + /** + * 新增货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + @Override + public int insertBaseLocation(BaseLocation baseLocation) { + baseLocation.setCreateTime(DateUtils.getNowDate()); + baseLocation.setCreateBy(SecurityUtils.getUsername()); + return baseLocationMapper.insertBaseLocation(baseLocation); + } + + /** + * 修改货位管理 + * + * @param baseLocation 货位管理 + * @return 结果 + */ + @Override + public int updateBaseLocation(BaseLocation baseLocation) { + baseLocation.setUpdateTime(DateUtils.getNowDate()); + baseLocation.setUpdateBy(SecurityUtils.getUsername()); + return baseLocationMapper.updateBaseLocation(baseLocation); + } + + /** + * 批量删除货位管理 + * + * @param locationIds 需要删除的货位管理主键 + * @return 结果 + */ + @Override + public int deleteBaseLocationByLocationIds(String[] locationIds) { + return baseLocationMapper.deleteBaseLocationByLocationIds(locationIds); + } + + /** + * 删除货位管理信息 + * + * @param locationId 货位管理主键 + * @return 结果 + */ + @Override + public int deleteBaseLocationByLocationId(String locationId) { + return baseLocationMapper.deleteBaseLocationByLocationId(locationId); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseShiftsTServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseShiftsTServiceImpl.java new file mode 100644 index 00000000..d989291f --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseShiftsTServiceImpl.java @@ -0,0 +1,93 @@ +package com.op.wms.service.impl; + +import java.util.List; + +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.BaseShiftsTMapper; +import com.op.wms.domain.BaseShiftsT; +import com.op.wms.service.IBaseShiftsTService; + +/** + * 班次管理Service业务层处理 + * + * @author Open Platform + * @date 2023-07-06 + */ +@Service +public class BaseShiftsTServiceImpl implements IBaseShiftsTService { + @Autowired + private BaseShiftsTMapper baseShiftsTMapper; + + /** + * 查询班次管理 + * + * @param shiftId 班次管理主键 + * @return 班次管理 + */ + @Override + public BaseShiftsT selectBaseShiftsTByShiftId(String shiftId) { + return baseShiftsTMapper.selectBaseShiftsTByShiftId(shiftId); + } + + /** + * 查询班次管理列表 + * + * @param baseShiftsT 班次管理 + * @return 班次管理 + */ + @Override + public List selectBaseShiftsTList(BaseShiftsT baseShiftsT) { + return baseShiftsTMapper.selectBaseShiftsTList(baseShiftsT); + } + + /** + * 新增班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + @Override + public int insertBaseShiftsT(BaseShiftsT baseShiftsT) { + baseShiftsT.setCreateDate(DateUtils.getNowDate()); + baseShiftsT.setUpdateBy(SecurityUtils.getUsername()); + return baseShiftsTMapper.insertBaseShiftsT(baseShiftsT); + } + + /** + * 修改班次管理 + * + * @param baseShiftsT 班次管理 + * @return 结果 + */ + @Override + public int updateBaseShiftsT(BaseShiftsT baseShiftsT) { + baseShiftsT.setLastUpdateDate(DateUtils.getNowDate()); + baseShiftsT.setLastUpdateBy(SecurityUtils.getUsername()); + return baseShiftsTMapper.updateBaseShiftsT(baseShiftsT); + } + + /** + * 批量删除班次管理 + * + * @param shiftIds 需要删除的班次管理主键 + * @return 结果 + */ + @Override + public int deleteBaseShiftsTByShiftIds(String[] shiftIds) { + return baseShiftsTMapper.deleteBaseShiftsTByShiftIds(shiftIds); + } + + /** + * 删除班次管理信息 + * + * @param shiftId 班次管理主键 + * @return 结果 + */ + @Override + public int deleteBaseShiftsTByShiftId(String shiftId) { + return baseShiftsTMapper.deleteBaseShiftsTByShiftId(shiftId); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseTeamTServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseTeamTServiceImpl.java new file mode 100644 index 00000000..d11fcb49 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseTeamTServiceImpl.java @@ -0,0 +1,93 @@ +package com.op.wms.service.impl; + +import java.util.List; + +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.BaseTeamTMapper; +import com.op.wms.domain.BaseTeamT; +import com.op.wms.service.IBaseTeamTService; + +/** + * 班组Service业务层处理 + * + * @author Open Platform + * @date 2023-07-05 + */ +@Service +public class BaseTeamTServiceImpl implements IBaseTeamTService { + @Autowired + private BaseTeamTMapper baseTeamTMapper; + + /** + * 查询班组 + * + * @param teamId 班组主键 + * @return 班组 + */ + @Override + public BaseTeamT selectBaseTeamTByTeamId(String teamId) { + return baseTeamTMapper.selectBaseTeamTByTeamId(teamId); + } + + /** + * 查询班组列表 + * + * @param baseTeamT 班组 + * @return 班组 + */ + @Override + public List selectBaseTeamTList(BaseTeamT baseTeamT) { + return baseTeamTMapper.selectBaseTeamTList(baseTeamT); + } + + /** + * 新增班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + @Override + public int insertBaseTeamT(BaseTeamT baseTeamT) { + baseTeamT.setCreateDate(DateUtils.getNowDate()); + baseTeamT.setCreateBy(SecurityUtils.getUsername()); + return baseTeamTMapper.insertBaseTeamT(baseTeamT); + } + + /** + * 修改班组 + * + * @param baseTeamT 班组 + * @return 结果 + */ + @Override + public int updateBaseTeamT(BaseTeamT baseTeamT) { + baseTeamT.setLastUpdateDate(DateUtils.getNowDate()); + baseTeamT.setLastUpdateBy(SecurityUtils.getUsername()); + return baseTeamTMapper.updateBaseTeamT(baseTeamT); + } + + /** + * 批量删除班组 + * + * @param teamIds 需要删除的班组主键 + * @return 结果 + */ + @Override + public int deleteBaseTeamTByTeamIds(String[] teamIds) { + return baseTeamTMapper.deleteBaseTeamTByTeamIds(teamIds); + } + + /** + * 删除班组信息 + * + * @param teamId 班组主键 + * @return 结果 + */ + @Override + public int deleteBaseTeamTByTeamId(String teamId) { + return baseTeamTMapper.deleteBaseTeamTByTeamId(teamId); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseWarehouseServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseWarehouseServiceImpl.java new file mode 100644 index 00000000..98acda90 --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/BaseWarehouseServiceImpl.java @@ -0,0 +1,95 @@ +package com.op.wms.service.impl; + +import java.util.List; +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.BaseWarehouseMapper; +import com.op.wms.domain.BaseWarehouse; +import com.op.wms.service.IBaseWarehouseService; + +/** + * 仓库管理Service业务层处理 + * + * @author Open Platform + * @date 2023-07-04 + */ +@Service +public class BaseWarehouseServiceImpl implements IBaseWarehouseService { + @Autowired + private BaseWarehouseMapper baseWarehouseMapper; + + /** + * 查询仓库管理 + * + * @param warehouseId 仓库管理主键 + * @return 仓库管理 + */ + @Override + public BaseWarehouse selectBaseWarehouseByWarehouseId(String warehouseId) { + return baseWarehouseMapper.selectBaseWarehouseByWarehouseId(warehouseId); + } + + /** + * 查询仓库管理列表 + * + * @param baseWarehouse 仓库管理 + * @return 仓库管理 + */ + @Override + public List selectBaseWarehouseList(BaseWarehouse baseWarehouse) { + return baseWarehouseMapper.selectBaseWarehouseList(baseWarehouse); + } + + /** + * 新增仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + @Override + public int insertBaseWarehouse(BaseWarehouse baseWarehouse) { + baseWarehouse.setCreateTime(DateUtils.getNowDate()); + baseWarehouse.setCreateBy(SecurityUtils.getUsername()); +// Integer count = baseWarehouseMapper.queryCount(baseWarehouse); +// count = count +1; +// baseWarehouse.setWarehouseId(count + ""); + return baseWarehouseMapper.insertBaseWarehouse(baseWarehouse); + } + + /** + * 修改仓库管理 + * + * @param baseWarehouse 仓库管理 + * @return 结果 + */ + @Override + public int updateBaseWarehouse(BaseWarehouse baseWarehouse) { + baseWarehouse.setUpdateTime(DateUtils.getNowDate()); + baseWarehouse.setUpdateBy(SecurityUtils.getUsername()); + return baseWarehouseMapper.updateBaseWarehouse(baseWarehouse); + } + + /** + * 批量删除仓库管理 + * + * @param warehouseIds 需要删除的仓库管理主键 + * @return 结果 + */ + @Override + public int deleteBaseWarehouseByWarehouseIds(String[] warehouseIds) { + return baseWarehouseMapper.deleteBaseWarehouseByWarehouseIds(warehouseIds); + } + + /** + * 删除仓库管理信息 + * + * @param warehouseId 仓库管理主键 + * @return 结果 + */ + @Override + public int deleteBaseWarehouseByWarehouseId(String warehouseId) { + return baseWarehouseMapper.deleteBaseWarehouseByWarehouseId(warehouseId); + } +} diff --git a/op-modules/op-wms/src/main/java/com/op/wms/service/impl/SysFactoryServiceImpl.java b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/SysFactoryServiceImpl.java new file mode 100644 index 00000000..487d783c --- /dev/null +++ b/op-modules/op-wms/src/main/java/com/op/wms/service/impl/SysFactoryServiceImpl.java @@ -0,0 +1,92 @@ +package com.op.wms.service.impl; + +import java.util.List; +import com.op.common.core.utils.DateUtils; +import com.op.common.security.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.op.wms.mapper.SysFactoryMapper; +import com.op.wms.domain.SysFactory; +import com.op.wms.service.ISysFactoryService; + +/** + * 工厂模型Service业务层处理 + * + * @author Open Platform + * @date 2023-07-03 + */ +@Service +public class SysFactoryServiceImpl implements ISysFactoryService { + @Autowired + private SysFactoryMapper sysFactoryMapper; + + /** + * 查询工厂模型 + * + * @param factoryId 工厂模型主键 + * @return 工厂模型 + */ + @Override + public SysFactory selectSysFactoryByFactoryId(Long factoryId) { + return sysFactoryMapper.selectSysFactoryByFactoryId(factoryId); + } + + /** + * 查询工厂模型列表 + * + * @param sysFactory 工厂模型 + * @return 工厂模型 + */ + @Override + public List selectSysFactoryList(SysFactory sysFactory) { + return sysFactoryMapper.selectSysFactoryList(sysFactory); + } + + /** + * 新增工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + @Override + public int insertSysFactory(SysFactory sysFactory) { + sysFactory.setCreateTime(DateUtils.getNowDate()); + sysFactory.setCreateBy(SecurityUtils.getUsername()); + return sysFactoryMapper.insertSysFactory(sysFactory); + } + + /** + * 修改工厂模型 + * + * @param sysFactory 工厂模型 + * @return 结果 + */ + @Override + public int updateSysFactory(SysFactory sysFactory) { + sysFactory.setUpdateTime(DateUtils.getNowDate()); + sysFactory.setUpdateBy(SecurityUtils.getUsername()); + return sysFactoryMapper.updateSysFactory(sysFactory); + } + + /** + * 批量删除工厂模型 + * + * @param factoryIds 需要删除的工厂模型主键 + * @return 结果 + */ + @Override + public int deleteSysFactoryByFactoryIds(Long[] factoryIds) { + return sysFactoryMapper.deleteSysFactoryByFactoryIds(factoryIds); + } + + /** + * 删除工厂模型信息 + * + * @param factoryId 工厂模型主键 + * @return 结果 + */ + @Override + public int deleteSysFactoryByFactoryId(Long factoryId) { + return sysFactoryMapper.deleteSysFactoryByFactoryId(factoryId); + } +} diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/BaseAreaMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/BaseAreaMapper.xml new file mode 100644 index 00000000..6009dd7c --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/BaseAreaMapper.xml @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select area_id, area_code, area_desc, region_code, wh_code, instock_tran_loc, outstock_tran_loc, pick_tran_loc, ex_sign_loc_no, frozen_loc_no, sap_send_spot, area_point, use_tray, tray_mix, instorage_strategy, outstorage_strategy, force_outstorage, loc_pick_flag, allocation_rule, gather_loc_type, priority, user_defined1, user_defined2, user_defined3, create_by, create_time, update_by, update_time, active_flag, remark, factory_code from base_area + + + + + + + + insert into base_area + + + area_code, + area_desc, + region_code, + wh_code, + instock_tran_loc, + outstock_tran_loc, + pick_tran_loc, + ex_sign_loc_no, + frozen_loc_no, + sap_send_spot, + area_point, + use_tray, + tray_mix, + instorage_strategy, + outstorage_strategy, + force_outstorage, + loc_pick_flag, + allocation_rule, + gather_loc_type, + priority, + user_defined1, + user_defined2, + user_defined3, + create_by, + create_time, + update_by, + update_time, + active_flag, + remark, + factory_code, + + + + #{areaCode}, + #{areaDesc}, + #{regionCode}, + #{whCode}, + #{instockTranLoc}, + #{outstockTranLoc}, + #{pickTranLoc}, + #{exSignLocNo}, + #{frozenLocNo}, + #{sapSendSpot}, + #{areaPoint}, + #{useTray}, + #{trayMix}, + #{instorageStrategy}, + #{outstorageStrategy}, + #{forceOutstorage}, + #{locPickFlag}, + #{allocationRule}, + #{gatherLocType}, + #{priority}, + #{userDefined1}, + #{userDefined2}, + #{userDefined3}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + #{activeFlag}, + #{remark}, + #{factoryCode}, + + + + + update base_area + + area_code = #{areaCode}, + area_desc = #{areaDesc}, + region_code = #{regionCode}, + wh_code = #{whCode}, + instock_tran_loc = #{instockTranLoc}, + outstock_tran_loc = #{outstockTranLoc}, + pick_tran_loc = #{pickTranLoc}, + ex_sign_loc_no = #{exSignLocNo}, + frozen_loc_no = #{frozenLocNo}, + sap_send_spot = #{sapSendSpot}, + area_point = #{areaPoint}, + use_tray = #{useTray}, + tray_mix = #{trayMix}, + instorage_strategy = #{instorageStrategy}, + outstorage_strategy = #{outstorageStrategy}, + force_outstorage = #{forceOutstorage}, + loc_pick_flag = #{locPickFlag}, + allocation_rule = #{allocationRule}, + gather_loc_type = #{gatherLocType}, + priority = #{priority}, + user_defined1 = #{userDefined1}, + user_defined2 = #{userDefined2}, + user_defined3 = #{userDefined3}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + active_flag = #{activeFlag}, + remark = #{remark}, + factory_code = #{factoryCode}, + + where area_id = #{areaId} + + + + delete from base_area where area_id = #{areaId} + + + + delete from base_area where area_id in + + #{areaId} + + + + + + \ No newline at end of file diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/BaseLocationMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/BaseLocationMapper.xml new file mode 100644 index 00000000..61ebae81 --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/BaseLocationMapper.xml @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select location_id, location_code, shelf_order, check_order, pick_order, location_use, pick_flag, is_open_kn_flag, location_type, location_scrap_type, location_attr, turn_demand, stock_env, warehouse_code, region_code, area_code, check_code, work_area, port1, port2, port3, volume_limit, weight_limit, box_limit, qty_limit, pallet_limit, length, width, height, x_coordinate, y_coordinate, z_coordinate, x_pixels, y_pixels, z_pixels, loc_row, layer_num, loc_column, bord, product_mix, batch_mix, ignore_id, active_flag, user_defined1, user_defined2, user_defined3, create_by, create_time, update_by, update_time, remark, factory_code, syntozk from base_location + + + + + + + + insert into base_location + + location_id, + location_code, + shelf_order, + check_order, + pick_order, + location_use, + pick_flag, + is_open_kn_flag, + location_type, + location_scrap_type, + location_attr, + turn_demand, + stock_env, + warehouse_code, + region_code, + area_code, + check_code, + work_area, + port1, + port2, + port3, + volume_limit, + weight_limit, + box_limit, + qty_limit, + pallet_limit, + length, + width, + height, + x_coordinate, + y_coordinate, + z_coordinate, + x_pixels, + y_pixels, + z_pixels, + loc_row, + layer_num, + loc_column, + bord, + product_mix, + batch_mix, + ignore_id, + active_flag, + user_defined1, + user_defined2, + user_defined3, + create_by, + create_time, + update_by, + update_time, + remark, + factory_code, + syntozk, + + + #{locationId}, + #{locationCode}, + #{shelfOrder}, + #{checkOrder}, + #{pickOrder}, + #{locationUse}, + #{pickFlag}, + #{isOpenKnFlag}, + #{locationType}, + #{locationScrapType}, + #{locationAttr}, + #{turnDemand}, + #{stockEnv}, + #{warehouseCode}, + #{regionCode}, + #{areaCode}, + #{checkCode}, + #{workArea}, + #{port1}, + #{port2}, + #{port3}, + #{volumeLimit}, + #{weightLimit}, + #{boxLimit}, + #{qtyLimit}, + #{palletLimit}, + #{length}, + #{width}, + #{height}, + #{xCoordinate}, + #{yCoordinate}, + #{zCoordinate}, + #{xPixels}, + #{yPixels}, + #{zPixels}, + #{locRow}, + #{layerNum}, + #{locColumn}, + #{bord}, + #{productMix}, + #{batchMix}, + #{ignoreId}, + #{activeFlag}, + #{userDefined1}, + #{userDefined2}, + #{userDefined3}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + #{remark}, + #{factoryCode}, + #{syntozk}, + + + + + update base_location + + location_code = #{locationCode}, + shelf_order = #{shelfOrder}, + check_order = #{checkOrder}, + pick_order = #{pickOrder}, + location_use = #{locationUse}, + pick_flag = #{pickFlag}, + is_open_kn_flag = #{isOpenKnFlag}, + location_type = #{locationType}, + location_scrap_type = #{locationScrapType}, + location_attr = #{locationAttr}, + turn_demand = #{turnDemand}, + stock_env = #{stockEnv}, + warehouse_code = #{warehouseCode}, + region_code = #{regionCode}, + area_code = #{areaCode}, + check_code = #{checkCode}, + work_area = #{workArea}, + port1 = #{port1}, + port2 = #{port2}, + port3 = #{port3}, + volume_limit = #{volumeLimit}, + weight_limit = #{weightLimit}, + box_limit = #{boxLimit}, + qty_limit = #{qtyLimit}, + pallet_limit = #{palletLimit}, + length = #{length}, + width = #{width}, + height = #{height}, + x_coordinate = #{xCoordinate}, + y_coordinate = #{yCoordinate}, + z_coordinate = #{zCoordinate}, + x_pixels = #{xPixels}, + y_pixels = #{yPixels}, + z_pixels = #{zPixels}, + loc_row = #{locRow}, + layer_num = #{layerNum}, + loc_column = #{locColumn}, + bord = #{bord}, + product_mix = #{productMix}, + batch_mix = #{batchMix}, + ignore_id = #{ignoreId}, + active_flag = #{activeFlag}, + user_defined1 = #{userDefined1}, + user_defined2 = #{userDefined2}, + user_defined3 = #{userDefined3}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + remark = #{remark}, + factory_code = #{factoryCode}, + syntozk = #{syntozk}, + + where location_id = #{locationId} + + + + delete from base_location where location_id = #{locationId} + + + + delete from base_location where location_id in + + #{locationId} + + + \ No newline at end of file diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/BaseShiftsTMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/BaseShiftsTMapper.xml new file mode 100644 index 00000000..b56ffea5 --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/BaseShiftsTMapper.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + select Shift_Id, Shift_Code, Shift_Desc, Shift_Desc_Global, Shift_Desc_Extended, Shift_Start_Time, Shift_End_Time, Create_By, Create_Date, Last_Update_By, Last_Update_Date, Active, Enterprise_Id, Enterprise_Code, Site_Id, Site_Code from base_shifts_t + + + + + + + + insert into base_shifts_t + + Shift_Id, + Shift_Code, + Shift_Desc, + Shift_Desc_Global, + Shift_Desc_Extended, + Shift_Start_Time, + Shift_End_Time, + Create_By, + Create_Date, + Last_Update_By, + Last_Update_Date, + Active, + Enterprise_Id, + Enterprise_Code, + Site_Id, + Site_Code, + + + #{shiftId}, + #{shiftCode}, + #{shiftDesc}, + #{shiftDescGlobal}, + #{shiftDescExtended}, + #{shiftStartTime}, + #{shiftEndTime}, + #{createBy}, + #{createDate}, + #{lastUpdateBy}, + #{lastUpdateDate}, + #{Active}, + #{enterpriseId}, + #{enterpriseCode}, + #{siteId}, + #{siteCode}, + + + + + update base_shifts_t + + Shift_Code = #{shiftCode}, + Shift_Desc = #{shiftDesc}, + Shift_Desc_Global = #{shiftDescGlobal}, + Shift_Desc_Extended = #{shiftDescExtended}, + Shift_Start_Time = #{shiftStartTime}, + Shift_End_Time = #{shiftEndTime}, + Create_By = #{createBy}, + Create_Date = #{createDate}, + Last_Update_By = #{lastUpdateBy}, + Last_Update_Date = #{lastUpdateDate}, + Active = #{Active}, + Enterprise_Id = #{enterpriseId}, + Enterprise_Code = #{enterpriseCode}, + Site_Id = #{siteId}, + Site_Code = #{siteCode}, + + where Shift_Id = #{shiftId} + + + + delete from base_shifts_t where Shift_Id = #{shiftId} + + + + delete from base_shifts_t where Shift_Id in + + #{shiftId} + + + \ No newline at end of file diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/BaseTeamTMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/BaseTeamTMapper.xml new file mode 100644 index 00000000..6704983f --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/BaseTeamTMapper.xml @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select Team_Id, ORG_Id, Team_Code, Team_Desc, Team_Desc_Global, Team_Desc_Extended, Create_By, Create_Date, Last_Update_By, Last_Update_Date, Active, Enterprise_Id, Enterprise_Code, Site_Id, Site_Code, production_line_code, team_leader_code, plan_post_quantity, actual_post_quantity, salary_type, team_properties, attendance_quantity, assigned_quantity ,team_type from base_team_t + + + + + + + + insert into base_team_t + + Team_Id, + ORG_Id, + Team_Code, + Team_Desc, + Team_Desc_Global, + Team_Desc_Extended, + Create_By, + Create_Date, + Last_Update_By, + Last_Update_Date, + Active, + Enterprise_Id, + Enterprise_Code, + Site_Id, + Site_Code, + production_line_code, + team_leader_code, + plan_post_quantity, + actual_post_quantity, + salary_type, + team_properties, + attendance_quantity, + assigned_quantity, + team_type, + + + #{teamId}, + #{orgId}, + #{teamCode}, + #{teamDesc}, + #{teamDescGlobal}, + #{teamDescExtended}, + #{createBy}, + #{createDate}, + #{lastUpdateBy}, + #{lastUpdateDate}, + #{Active}, + #{enterpriseId}, + #{enterpriseCode}, + #{siteId}, + #{siteCode}, + #{productionLineCode}, + #{teamLeaderCode}, + #{planPostQuantity}, + #{actualPostQuantity}, + #{salaryType}, + #{teamProperties}, + #{attendanceQuantity}, + #{assignedQuantity}, + #{teamType}, + + + + + update base_team_t + + ORG_Id = #{orgId}, + Team_Code = #{teamCode}, + Team_Desc = #{teamDesc}, + Team_Desc_Global = #{teamDescGlobal}, + Team_Desc_Extended = #{teamDescExtended}, + Create_By = #{createBy}, + Create_Date = #{createDate}, + Last_Update_By = #{lastUpdateBy}, + Last_Update_Date = #{lastUpdateDate}, + Active = #{Active}, + Enterprise_Id = #{enterpriseId}, + Enterprise_Code = #{enterpriseCode}, + Site_Id = #{siteId}, + Site_Code = #{siteCode}, + production_line_code = #{productionLineCode}, + team_leader_code = #{teamLeaderCode}, + plan_post_quantity = #{planPostQuantity}, + actual_post_quantity = #{actualPostQuantity}, + salary_type = #{salaryType}, + team_properties = #{teamProperties}, + attendance_quantity = #{attendanceQuantity}, + assigned_quantity = #{assignedQuantity}, + team_type = #{teamType}, + + where Team_Id = #{teamId} + + + + delete from base_team_t where Team_Id = #{teamId} + + + + delete from base_team_t where Team_Id in + + #{teamId} + + + \ No newline at end of file diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/BaseWarehouseMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/BaseWarehouseMapper.xml new file mode 100644 index 00000000..e9f13085 --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/BaseWarehouseMapper.xml @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + select warehouse_id, warehouse_type, warehouse_code, warehouse_name, factory_code, factory_name, data_source, schame, active_flag, user_defined1, user_defined2, user_defined3, create_by, create_time, update_by, update_time, remark, line_flag, warehouse_type2 from base_warehouse + + + + + + + + insert into base_warehouse + + + warehouse_type, + warehouse_code, + warehouse_name, + factory_code, + factory_name, + data_source, + schame, + active_flag, + user_defined1, + user_defined2, + user_defined3, + create_by, + create_time, + update_by, + update_time, + remark, + line_flag, + warehouse_type2, + + + + #{warehouseType}, + #{warehouseCode}, + #{warehouseName}, + #{factoryCode}, + #{factoryName}, + #{dataSource}, + #{schame}, + #{activeFlag}, + #{userDefined1}, + #{userDefined2}, + #{userDefined3}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + #{remark}, + #{lineFlag}, + #{warehouseType2}, + + + + + update base_warehouse + + warehouse_type = #{warehouseType}, + warehouse_code = #{warehouseCode}, + warehouse_name = #{warehouseName}, + factory_code = #{factoryCode}, + factory_name = #{factoryName}, + data_source = #{dataSource}, + schame = #{schame}, + active_flag = #{activeFlag}, + user_defined1 = #{userDefined1}, + user_defined2 = #{userDefined2}, + user_defined3 = #{userDefined3}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + remark = #{remark}, + line_flag = #{lineFlag}, + warehouse_type2 = #{warehouseType2}, + + where warehouse_id = #{warehouseId} + + + + delete from base_warehouse where warehouse_id = #{warehouseId} + + + + delete from base_warehouse where warehouse_id in + + #{warehouseId} + + + + + + \ No newline at end of file diff --git a/op-modules/op-wms/src/main/resources/mapper/wms/SysFactoryMapper.xml b/op-modules/op-wms/src/main/resources/mapper/wms/SysFactoryMapper.xml new file mode 100644 index 00000000..e168a235 --- /dev/null +++ b/op-modules/op-wms/src/main/resources/mapper/wms/SysFactoryMapper.xml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + select factory_id, parent_id, ancestors, factory_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time, factory_code from sys_factory + + + + + + + + insert into sys_factory + + parent_id, + ancestors, + factory_name, + order_num, + leader, + phone, + email, + status, + del_flag, + create_by, + create_time, + update_by, + update_time, + factory_code, + + + #{parentId}, + #{ancestors}, + #{factoryName}, + #{orderNum}, + #{leader}, + #{phone}, + #{email}, + #{status}, + #{delFlag}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + #{factoryCode}, + + + + + update sys_factory + + parent_id = #{parentId}, + ancestors = #{ancestors}, + factory_name = #{factoryName}, + order_num = #{orderNum}, + leader = #{leader}, + phone = #{phone}, + email = #{email}, + status = #{status}, + del_flag = #{delFlag}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + factory_code = #{factoryCode}, + + where factory_id = #{factoryId} + + + + delete from sys_factory where factory_id = #{factoryId} + + + + delete from sys_factory where factory_id in + + #{factoryId} + + + \ No newline at end of file