Merge remote-tracking branch 'origin/master'
commit
309f2c2999
@ -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<BaseArea> 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<BaseArea> list = baseAreaService.selectBaseAreaList(baseArea);
|
||||
ExcelUtil<BaseArea> util = new ExcelUtil<BaseArea>(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));
|
||||
}
|
||||
}
|
@ -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<BaseLocation> 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<BaseLocation> list = baseLocationService.selectBaseLocationList(baseLocation);
|
||||
ExcelUtil<BaseLocation> util = new ExcelUtil<BaseLocation>(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));
|
||||
}
|
||||
}
|
@ -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<BaseShiftsT> 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<BaseShiftsT> list = baseShiftsTService.selectBaseShiftsTList(baseShiftsT);
|
||||
ExcelUtil<BaseShiftsT> util = new ExcelUtil<BaseShiftsT>(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));
|
||||
}
|
||||
}
|
@ -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<BaseTeamT> 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<BaseTeamT> list = baseTeamTService.selectBaseTeamTList(baseTeamT);
|
||||
ExcelUtil<BaseTeamT> util = new ExcelUtil<BaseTeamT>(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));
|
||||
}
|
||||
}
|
@ -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<BaseWarehouse> 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<BaseWarehouse> list = baseWarehouseService.selectBaseWarehouseList(baseWarehouse);
|
||||
ExcelUtil<BaseWarehouse> util = new ExcelUtil<BaseWarehouse>(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));
|
||||
}
|
||||
}
|
@ -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<SysFactory> 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<SysFactory> list = sysFactoryService.selectSysFactoryList(sysFactory);
|
||||
ExcelUtil<SysFactory> util = new ExcelUtil<SysFactory>(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));
|
||||
}
|
||||
}
|
@ -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();
|
||||
}
|
||||
}
|
@ -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();
|
||||
}
|
||||
}
|
@ -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<BaseArea> 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);
|
||||
}
|
@ -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<BaseLocation> 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);
|
||||
}
|
@ -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<BaseShiftsT> 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);
|
||||
}
|
@ -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<BaseTeamT> 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);
|
||||
}
|
@ -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<BaseWarehouse> 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);
|
||||
}
|
@ -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<SysFactory> 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);
|
||||
}
|
@ -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<BaseArea> 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);
|
||||
}
|
@ -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<BaseLocation> 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);
|
||||
}
|
@ -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<BaseShiftsT> 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);
|
||||
}
|
@ -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<BaseTeamT> 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);
|
||||
}
|
@ -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<BaseWarehouse> 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);
|
||||
}
|
@ -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<SysFactory> 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);
|
||||
}
|
@ -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<BaseArea> 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);
|
||||
}
|
||||
}
|
@ -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<BaseLocation> 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);
|
||||
}
|
||||
}
|
@ -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<BaseShiftsT> 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);
|
||||
}
|
||||
}
|
@ -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<BaseTeamT> 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);
|
||||
}
|
||||
}
|
@ -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<BaseWarehouse> 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);
|
||||
}
|
||||
}
|
@ -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<SysFactory> 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);
|
||||
}
|
||||
}
|
@ -0,0 +1,204 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.BaseAreaMapper">
|
||||
|
||||
<resultMap type="BaseArea" id="BaseAreaResult">
|
||||
<result property="areaId" column="area_id" />
|
||||
<result property="areaCode" column="area_code" />
|
||||
<result property="areaDesc" column="area_desc" />
|
||||
<result property="regionCode" column="region_code" />
|
||||
<result property="whCode" column="wh_code" />
|
||||
<result property="instockTranLoc" column="instock_tran_loc" />
|
||||
<result property="outstockTranLoc" column="outstock_tran_loc" />
|
||||
<result property="pickTranLoc" column="pick_tran_loc" />
|
||||
<result property="exSignLocNo" column="ex_sign_loc_no" />
|
||||
<result property="frozenLocNo" column="frozen_loc_no" />
|
||||
<result property="sapSendSpot" column="sap_send_spot" />
|
||||
<result property="areaPoint" column="area_point" />
|
||||
<result property="useTray" column="use_tray" />
|
||||
<result property="trayMix" column="tray_mix" />
|
||||
<result property="instorageStrategy" column="instorage_strategy" />
|
||||
<result property="outstorageStrategy" column="outstorage_strategy" />
|
||||
<result property="forceOutstorage" column="force_outstorage" />
|
||||
<result property="locPickFlag" column="loc_pick_flag" />
|
||||
<result property="allocationRule" column="allocation_rule" />
|
||||
<result property="gatherLocType" column="gather_loc_type" />
|
||||
<result property="priority" column="priority" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseAreaVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseAreaList" parameterType="BaseArea" resultMap="BaseAreaResult">
|
||||
<include refid="selectBaseAreaVo"/>
|
||||
<where>
|
||||
<if test="areaCode != null and areaCode != ''"> and area_code = #{areaCode}</if>
|
||||
<if test="areaDesc != null and areaDesc != ''"> and area_desc = #{areaDesc}</if>
|
||||
<if test="regionCode != null and regionCode != ''"> and region_code = #{regionCode}</if>
|
||||
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
||||
<if test="instockTranLoc != null and instockTranLoc != ''"> and instock_tran_loc = #{instockTranLoc}</if>
|
||||
<if test="outstockTranLoc != null and outstockTranLoc != ''"> and outstock_tran_loc = #{outstockTranLoc}</if>
|
||||
<if test="pickTranLoc != null and pickTranLoc != ''"> and pick_tran_loc = #{pickTranLoc}</if>
|
||||
<if test="exSignLocNo != null and exSignLocNo != ''"> and ex_sign_loc_no = #{exSignLocNo}</if>
|
||||
<if test="frozenLocNo != null and frozenLocNo != ''"> and frozen_loc_no = #{frozenLocNo}</if>
|
||||
<if test="sapSendSpot != null and sapSendSpot != ''"> and sap_send_spot = #{sapSendSpot}</if>
|
||||
<if test="areaPoint != null and areaPoint != ''"> and area_point = #{areaPoint}</if>
|
||||
<if test="useTray != null and useTray != ''"> and use_tray = #{useTray}</if>
|
||||
<if test="trayMix != null and trayMix != ''"> and tray_mix = #{trayMix}</if>
|
||||
<if test="instorageStrategy != null and instorageStrategy != ''"> and instorage_strategy = #{instorageStrategy}</if>
|
||||
<if test="outstorageStrategy != null and outstorageStrategy != ''"> and outstorage_strategy = #{outstorageStrategy}</if>
|
||||
<if test="forceOutstorage != null and forceOutstorage != ''"> and force_outstorage = #{forceOutstorage}</if>
|
||||
<if test="locPickFlag != null and locPickFlag != ''"> and loc_pick_flag = #{locPickFlag}</if>
|
||||
<if test="allocationRule != null and allocationRule != ''"> and allocation_rule = #{allocationRule}</if>
|
||||
<if test="gatherLocType != null and gatherLocType != ''"> and gather_loc_type = #{gatherLocType}</if>
|
||||
<if test="priority != null and priority != ''"> and priority = #{priority}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseAreaByAreaId" parameterType="String" resultMap="BaseAreaResult">
|
||||
<include refid="selectBaseAreaVo"/>
|
||||
where area_id = #{areaId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseArea" parameterType="BaseArea">
|
||||
insert into base_area
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<!-- <if test="areaId != null">area_id,</if>-->
|
||||
<if test="areaCode != null and areaCode != ''">area_code,</if>
|
||||
<if test="areaDesc != null">area_desc,</if>
|
||||
<if test="regionCode != null">region_code,</if>
|
||||
<if test="whCode != null">wh_code,</if>
|
||||
<if test="instockTranLoc != null">instock_tran_loc,</if>
|
||||
<if test="outstockTranLoc != null">outstock_tran_loc,</if>
|
||||
<if test="pickTranLoc != null">pick_tran_loc,</if>
|
||||
<if test="exSignLocNo != null">ex_sign_loc_no,</if>
|
||||
<if test="frozenLocNo != null">frozen_loc_no,</if>
|
||||
<if test="sapSendSpot != null">sap_send_spot,</if>
|
||||
<if test="areaPoint != null">area_point,</if>
|
||||
<if test="useTray != null">use_tray,</if>
|
||||
<if test="trayMix != null">tray_mix,</if>
|
||||
<if test="instorageStrategy != null">instorage_strategy,</if>
|
||||
<if test="outstorageStrategy != null">outstorage_strategy,</if>
|
||||
<if test="forceOutstorage != null">force_outstorage,</if>
|
||||
<if test="locPickFlag != null">loc_pick_flag,</if>
|
||||
<if test="allocationRule != null">allocation_rule,</if>
|
||||
<if test="gatherLocType != null">gather_loc_type,</if>
|
||||
<if test="priority != null">priority,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="activeFlag != null">active_flag,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<!-- <if test="areaId != null">#{areaId},</if>-->
|
||||
<if test="areaCode != null and areaCode != ''">#{areaCode},</if>
|
||||
<if test="areaDesc != null">#{areaDesc},</if>
|
||||
<if test="regionCode != null">#{regionCode},</if>
|
||||
<if test="whCode != null">#{whCode},</if>
|
||||
<if test="instockTranLoc != null">#{instockTranLoc},</if>
|
||||
<if test="outstockTranLoc != null">#{outstockTranLoc},</if>
|
||||
<if test="pickTranLoc != null">#{pickTranLoc},</if>
|
||||
<if test="exSignLocNo != null">#{exSignLocNo},</if>
|
||||
<if test="frozenLocNo != null">#{frozenLocNo},</if>
|
||||
<if test="sapSendSpot != null">#{sapSendSpot},</if>
|
||||
<if test="areaPoint != null">#{areaPoint},</if>
|
||||
<if test="useTray != null">#{useTray},</if>
|
||||
<if test="trayMix != null">#{trayMix},</if>
|
||||
<if test="instorageStrategy != null">#{instorageStrategy},</if>
|
||||
<if test="outstorageStrategy != null">#{outstorageStrategy},</if>
|
||||
<if test="forceOutstorage != null">#{forceOutstorage},</if>
|
||||
<if test="locPickFlag != null">#{locPickFlag},</if>
|
||||
<if test="allocationRule != null">#{allocationRule},</if>
|
||||
<if test="gatherLocType != null">#{gatherLocType},</if>
|
||||
<if test="priority != null">#{priority},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="activeFlag != null">#{activeFlag},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseArea" parameterType="BaseArea">
|
||||
update base_area
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="areaCode != null and areaCode != ''">area_code = #{areaCode},</if>
|
||||
<if test="areaDesc != null">area_desc = #{areaDesc},</if>
|
||||
<if test="regionCode != null">region_code = #{regionCode},</if>
|
||||
<if test="whCode != null">wh_code = #{whCode},</if>
|
||||
<if test="instockTranLoc != null">instock_tran_loc = #{instockTranLoc},</if>
|
||||
<if test="outstockTranLoc != null">outstock_tran_loc = #{outstockTranLoc},</if>
|
||||
<if test="pickTranLoc != null">pick_tran_loc = #{pickTranLoc},</if>
|
||||
<if test="exSignLocNo != null">ex_sign_loc_no = #{exSignLocNo},</if>
|
||||
<if test="frozenLocNo != null">frozen_loc_no = #{frozenLocNo},</if>
|
||||
<if test="sapSendSpot != null">sap_send_spot = #{sapSendSpot},</if>
|
||||
<if test="areaPoint != null">area_point = #{areaPoint},</if>
|
||||
<if test="useTray != null">use_tray = #{useTray},</if>
|
||||
<if test="trayMix != null">tray_mix = #{trayMix},</if>
|
||||
<if test="instorageStrategy != null">instorage_strategy = #{instorageStrategy},</if>
|
||||
<if test="outstorageStrategy != null">outstorage_strategy = #{outstorageStrategy},</if>
|
||||
<if test="forceOutstorage != null">force_outstorage = #{forceOutstorage},</if>
|
||||
<if test="locPickFlag != null">loc_pick_flag = #{locPickFlag},</if>
|
||||
<if test="allocationRule != null">allocation_rule = #{allocationRule},</if>
|
||||
<if test="gatherLocType != null">gather_loc_type = #{gatherLocType},</if>
|
||||
<if test="priority != null">priority = #{priority},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="activeFlag != null">active_flag = #{activeFlag},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
</trim>
|
||||
where area_id = #{areaId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseAreaByAreaId" parameterType="String">
|
||||
delete from base_area where area_id = #{areaId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseAreaByAreaIds" parameterType="String">
|
||||
delete from base_area where area_id in
|
||||
<foreach item="areaId" collection="array" open="(" separator="," close=")">
|
||||
#{areaId}
|
||||
</foreach>
|
||||
</delete>
|
||||
<!--查询总数-->
|
||||
<select id="queryCount" parameterType="BaseArea" resultType="java.lang.Integer">
|
||||
select count(*)
|
||||
from base_area
|
||||
</select>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,308 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.BaseLocationMapper">
|
||||
|
||||
<resultMap type="BaseLocation" id="BaseLocationResult">
|
||||
<result property="locationId" column="location_id" />
|
||||
<result property="locationCode" column="location_code" />
|
||||
<result property="shelfOrder" column="shelf_order" />
|
||||
<result property="checkOrder" column="check_order" />
|
||||
<result property="pickOrder" column="pick_order" />
|
||||
<result property="locationUse" column="location_use" />
|
||||
<result property="pickFlag" column="pick_flag" />
|
||||
<result property="isOpenKnFlag" column="is_open_kn_flag" />
|
||||
<result property="locationType" column="location_type" />
|
||||
<result property="locationScrapType" column="location_scrap_type" />
|
||||
<result property="locationAttr" column="location_attr" />
|
||||
<result property="turnDemand" column="turn_demand" />
|
||||
<result property="stockEnv" column="stock_env" />
|
||||
<result property="warehouseCode" column="warehouse_code" />
|
||||
<result property="regionCode" column="region_code" />
|
||||
<result property="areaCode" column="area_code" />
|
||||
<result property="checkCode" column="check_code" />
|
||||
<result property="workArea" column="work_area" />
|
||||
<result property="port1" column="port1" />
|
||||
<result property="port2" column="port2" />
|
||||
<result property="port3" column="port3" />
|
||||
<result property="volumeLimit" column="volume_limit" />
|
||||
<result property="weightLimit" column="weight_limit" />
|
||||
<result property="boxLimit" column="box_limit" />
|
||||
<result property="qtyLimit" column="qty_limit" />
|
||||
<result property="palletLimit" column="pallet_limit" />
|
||||
<result property="length" column="length" />
|
||||
<result property="width" column="width" />
|
||||
<result property="height" column="height" />
|
||||
<result property="xCoordinate" column="x_coordinate" />
|
||||
<result property="yCoordinate" column="y_coordinate" />
|
||||
<result property="zCoordinate" column="z_coordinate" />
|
||||
<result property="xPixels" column="x_pixels" />
|
||||
<result property="yPixels" column="y_pixels" />
|
||||
<result property="zPixels" column="z_pixels" />
|
||||
<result property="locRow" column="loc_row" />
|
||||
<result property="layerNum" column="layer_num" />
|
||||
<result property="locColumn" column="loc_column" />
|
||||
<result property="bord" column="bord" />
|
||||
<result property="productMix" column="product_mix" />
|
||||
<result property="batchMix" column="batch_mix" />
|
||||
<result property="ignoreId" column="ignore_id" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
<result property="syntozk" column="syntozk" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseLocationVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseLocationList" parameterType="BaseLocation" resultMap="BaseLocationResult">
|
||||
<include refid="selectBaseLocationVo"/>
|
||||
<where>
|
||||
<if test="locationCode != null and locationCode != ''"> and location_code = #{locationCode}</if>
|
||||
<if test="shelfOrder != null and shelfOrder != ''"> and shelf_order = #{shelfOrder}</if>
|
||||
<if test="checkOrder != null and checkOrder != ''"> and check_order = #{checkOrder}</if>
|
||||
<if test="pickOrder != null and pickOrder != ''"> and pick_order = #{pickOrder}</if>
|
||||
<if test="locationUse != null and locationUse != ''"> and location_use = #{locationUse}</if>
|
||||
<if test="pickFlag != null and pickFlag != ''"> and pick_flag = #{pickFlag}</if>
|
||||
<if test="isOpenKnFlag != null and isOpenKnFlag != ''"> and is_open_kn_flag = #{isOpenKnFlag}</if>
|
||||
<if test="locationType != null and locationType != ''"> and location_type = #{locationType}</if>
|
||||
<if test="locationScrapType != null and locationScrapType != ''"> and location_scrap_type = #{locationScrapType}</if>
|
||||
<if test="locationAttr != null and locationAttr != ''"> and location_attr = #{locationAttr}</if>
|
||||
<if test="turnDemand != null and turnDemand != ''"> and turn_demand = #{turnDemand}</if>
|
||||
<if test="stockEnv != null and stockEnv != ''"> and stock_env = #{stockEnv}</if>
|
||||
<if test="warehouseCode != null and warehouseCode != ''"> and warehouse_code = #{warehouseCode}</if>
|
||||
<if test="regionCode != null and regionCode != ''"> and region_code = #{regionCode}</if>
|
||||
<if test="areaCode != null and areaCode != ''"> and area_code = #{areaCode}</if>
|
||||
<if test="checkCode != null and checkCode != ''"> and check_code = #{checkCode}</if>
|
||||
<if test="workArea != null and workArea != ''"> and work_area = #{workArea}</if>
|
||||
<if test="port1 != null and port1 != ''"> and port1 = #{port1}</if>
|
||||
<if test="port2 != null and port2 != ''"> and port2 = #{port2}</if>
|
||||
<if test="port3 != null and port3 != ''"> and port3 = #{port3}</if>
|
||||
<if test="volumeLimit != null "> and volume_limit = #{volumeLimit}</if>
|
||||
<if test="weightLimit != null "> and weight_limit = #{weightLimit}</if>
|
||||
<if test="boxLimit != null "> and box_limit = #{boxLimit}</if>
|
||||
<if test="qtyLimit != null "> and qty_limit = #{qtyLimit}</if>
|
||||
<if test="palletLimit != null "> and pallet_limit = #{palletLimit}</if>
|
||||
<if test="length != null "> and length = #{length}</if>
|
||||
<if test="width != null "> and width = #{width}</if>
|
||||
<if test="height != null "> and height = #{height}</if>
|
||||
<if test="xCoordinate != null "> and x_coordinate = #{xCoordinate}</if>
|
||||
<if test="yCoordinate != null "> and y_coordinate = #{yCoordinate}</if>
|
||||
<if test="zCoordinate != null "> and z_coordinate = #{zCoordinate}</if>
|
||||
<if test="xPixels != null "> and x_pixels = #{xPixels}</if>
|
||||
<if test="yPixels != null "> and y_pixels = #{yPixels}</if>
|
||||
<if test="zPixels != null "> and z_pixels = #{zPixels}</if>
|
||||
<if test="locRow != null and locRow != ''"> and loc_row = #{locRow}</if>
|
||||
<if test="layerNum != null "> and layer_num = #{layerNum}</if>
|
||||
<if test="locColumn != null and locColumn != ''"> and loc_column = #{locColumn}</if>
|
||||
<if test="bord != null and bord != ''"> and bord = #{bord}</if>
|
||||
<if test="productMix != null and productMix != ''"> and product_mix = #{productMix}</if>
|
||||
<if test="batchMix != null and batchMix != ''"> and batch_mix = #{batchMix}</if>
|
||||
<if test="ignoreId != null and ignoreId != ''"> and ignore_id = #{ignoreId}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
<if test="syntozk != null and syntozk != ''"> and syntozk = #{syntozk}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseLocationByLocationId" parameterType="String" resultMap="BaseLocationResult">
|
||||
<include refid="selectBaseLocationVo"/>
|
||||
where location_id = #{locationId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseLocation" parameterType="BaseLocation">
|
||||
insert into base_location
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="locationId != null">location_id,</if>
|
||||
<if test="locationCode != null and locationCode != ''">location_code,</if>
|
||||
<if test="shelfOrder != null">shelf_order,</if>
|
||||
<if test="checkOrder != null">check_order,</if>
|
||||
<if test="pickOrder != null">pick_order,</if>
|
||||
<if test="locationUse != null">location_use,</if>
|
||||
<if test="pickFlag != null">pick_flag,</if>
|
||||
<if test="isOpenKnFlag != null">is_open_kn_flag,</if>
|
||||
<if test="locationType != null">location_type,</if>
|
||||
<if test="locationScrapType != null">location_scrap_type,</if>
|
||||
<if test="locationAttr != null">location_attr,</if>
|
||||
<if test="turnDemand != null">turn_demand,</if>
|
||||
<if test="stockEnv != null">stock_env,</if>
|
||||
<if test="warehouseCode != null">warehouse_code,</if>
|
||||
<if test="regionCode != null">region_code,</if>
|
||||
<if test="areaCode != null">area_code,</if>
|
||||
<if test="checkCode != null">check_code,</if>
|
||||
<if test="workArea != null">work_area,</if>
|
||||
<if test="port1 != null">port1,</if>
|
||||
<if test="port2 != null">port2,</if>
|
||||
<if test="port3 != null">port3,</if>
|
||||
<if test="volumeLimit != null">volume_limit,</if>
|
||||
<if test="weightLimit != null">weight_limit,</if>
|
||||
<if test="boxLimit != null">box_limit,</if>
|
||||
<if test="qtyLimit != null">qty_limit,</if>
|
||||
<if test="palletLimit != null">pallet_limit,</if>
|
||||
<if test="length != null">length,</if>
|
||||
<if test="width != null">width,</if>
|
||||
<if test="height != null">height,</if>
|
||||
<if test="xCoordinate != null">x_coordinate,</if>
|
||||
<if test="yCoordinate != null">y_coordinate,</if>
|
||||
<if test="zCoordinate != null">z_coordinate,</if>
|
||||
<if test="xPixels != null">x_pixels,</if>
|
||||
<if test="yPixels != null">y_pixels,</if>
|
||||
<if test="zPixels != null">z_pixels,</if>
|
||||
<if test="locRow != null">loc_row,</if>
|
||||
<if test="layerNum != null">layer_num,</if>
|
||||
<if test="locColumn != null">loc_column,</if>
|
||||
<if test="bord != null">bord,</if>
|
||||
<if test="productMix != null">product_mix,</if>
|
||||
<if test="batchMix != null">batch_mix,</if>
|
||||
<if test="ignoreId != null">ignore_id,</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">active_flag,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
<if test="syntozk != null">syntozk,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="locationId != null">#{locationId},</if>
|
||||
<if test="locationCode != null and locationCode != ''">#{locationCode},</if>
|
||||
<if test="shelfOrder != null">#{shelfOrder},</if>
|
||||
<if test="checkOrder != null">#{checkOrder},</if>
|
||||
<if test="pickOrder != null">#{pickOrder},</if>
|
||||
<if test="locationUse != null">#{locationUse},</if>
|
||||
<if test="pickFlag != null">#{pickFlag},</if>
|
||||
<if test="isOpenKnFlag != null">#{isOpenKnFlag},</if>
|
||||
<if test="locationType != null">#{locationType},</if>
|
||||
<if test="locationScrapType != null">#{locationScrapType},</if>
|
||||
<if test="locationAttr != null">#{locationAttr},</if>
|
||||
<if test="turnDemand != null">#{turnDemand},</if>
|
||||
<if test="stockEnv != null">#{stockEnv},</if>
|
||||
<if test="warehouseCode != null">#{warehouseCode},</if>
|
||||
<if test="regionCode != null">#{regionCode},</if>
|
||||
<if test="areaCode != null">#{areaCode},</if>
|
||||
<if test="checkCode != null">#{checkCode},</if>
|
||||
<if test="workArea != null">#{workArea},</if>
|
||||
<if test="port1 != null">#{port1},</if>
|
||||
<if test="port2 != null">#{port2},</if>
|
||||
<if test="port3 != null">#{port3},</if>
|
||||
<if test="volumeLimit != null">#{volumeLimit},</if>
|
||||
<if test="weightLimit != null">#{weightLimit},</if>
|
||||
<if test="boxLimit != null">#{boxLimit},</if>
|
||||
<if test="qtyLimit != null">#{qtyLimit},</if>
|
||||
<if test="palletLimit != null">#{palletLimit},</if>
|
||||
<if test="length != null">#{length},</if>
|
||||
<if test="width != null">#{width},</if>
|
||||
<if test="height != null">#{height},</if>
|
||||
<if test="xCoordinate != null">#{xCoordinate},</if>
|
||||
<if test="yCoordinate != null">#{yCoordinate},</if>
|
||||
<if test="zCoordinate != null">#{zCoordinate},</if>
|
||||
<if test="xPixels != null">#{xPixels},</if>
|
||||
<if test="yPixels != null">#{yPixels},</if>
|
||||
<if test="zPixels != null">#{zPixels},</if>
|
||||
<if test="locRow != null">#{locRow},</if>
|
||||
<if test="layerNum != null">#{layerNum},</if>
|
||||
<if test="locColumn != null">#{locColumn},</if>
|
||||
<if test="bord != null">#{bord},</if>
|
||||
<if test="productMix != null">#{productMix},</if>
|
||||
<if test="batchMix != null">#{batchMix},</if>
|
||||
<if test="ignoreId != null">#{ignoreId},</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">#{activeFlag},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
<if test="syntozk != null">#{syntozk},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseLocation" parameterType="BaseLocation">
|
||||
update base_location
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="locationCode != null and locationCode != ''">location_code = #{locationCode},</if>
|
||||
<if test="shelfOrder != null">shelf_order = #{shelfOrder},</if>
|
||||
<if test="checkOrder != null">check_order = #{checkOrder},</if>
|
||||
<if test="pickOrder != null">pick_order = #{pickOrder},</if>
|
||||
<if test="locationUse != null">location_use = #{locationUse},</if>
|
||||
<if test="pickFlag != null">pick_flag = #{pickFlag},</if>
|
||||
<if test="isOpenKnFlag != null">is_open_kn_flag = #{isOpenKnFlag},</if>
|
||||
<if test="locationType != null">location_type = #{locationType},</if>
|
||||
<if test="locationScrapType != null">location_scrap_type = #{locationScrapType},</if>
|
||||
<if test="locationAttr != null">location_attr = #{locationAttr},</if>
|
||||
<if test="turnDemand != null">turn_demand = #{turnDemand},</if>
|
||||
<if test="stockEnv != null">stock_env = #{stockEnv},</if>
|
||||
<if test="warehouseCode != null">warehouse_code = #{warehouseCode},</if>
|
||||
<if test="regionCode != null">region_code = #{regionCode},</if>
|
||||
<if test="areaCode != null">area_code = #{areaCode},</if>
|
||||
<if test="checkCode != null">check_code = #{checkCode},</if>
|
||||
<if test="workArea != null">work_area = #{workArea},</if>
|
||||
<if test="port1 != null">port1 = #{port1},</if>
|
||||
<if test="port2 != null">port2 = #{port2},</if>
|
||||
<if test="port3 != null">port3 = #{port3},</if>
|
||||
<if test="volumeLimit != null">volume_limit = #{volumeLimit},</if>
|
||||
<if test="weightLimit != null">weight_limit = #{weightLimit},</if>
|
||||
<if test="boxLimit != null">box_limit = #{boxLimit},</if>
|
||||
<if test="qtyLimit != null">qty_limit = #{qtyLimit},</if>
|
||||
<if test="palletLimit != null">pallet_limit = #{palletLimit},</if>
|
||||
<if test="length != null">length = #{length},</if>
|
||||
<if test="width != null">width = #{width},</if>
|
||||
<if test="height != null">height = #{height},</if>
|
||||
<if test="xCoordinate != null">x_coordinate = #{xCoordinate},</if>
|
||||
<if test="yCoordinate != null">y_coordinate = #{yCoordinate},</if>
|
||||
<if test="zCoordinate != null">z_coordinate = #{zCoordinate},</if>
|
||||
<if test="xPixels != null">x_pixels = #{xPixels},</if>
|
||||
<if test="yPixels != null">y_pixels = #{yPixels},</if>
|
||||
<if test="zPixels != null">z_pixels = #{zPixels},</if>
|
||||
<if test="locRow != null">loc_row = #{locRow},</if>
|
||||
<if test="layerNum != null">layer_num = #{layerNum},</if>
|
||||
<if test="locColumn != null">loc_column = #{locColumn},</if>
|
||||
<if test="bord != null">bord = #{bord},</if>
|
||||
<if test="productMix != null">product_mix = #{productMix},</if>
|
||||
<if test="batchMix != null">batch_mix = #{batchMix},</if>
|
||||
<if test="ignoreId != null">ignore_id = #{ignoreId},</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">active_flag = #{activeFlag},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
<if test="syntozk != null">syntozk = #{syntozk},</if>
|
||||
</trim>
|
||||
where location_id = #{locationId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseLocationByLocationId" parameterType="String">
|
||||
delete from base_location where location_id = #{locationId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseLocationByLocationIds" parameterType="String">
|
||||
delete from base_location where location_id in
|
||||
<foreach item="locationId" collection="array" open="(" separator="," close=")">
|
||||
#{locationId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.BaseShiftsTMapper">
|
||||
|
||||
<resultMap type="BaseShiftsT" id="BaseShiftsTResult">
|
||||
<result property="shiftId" column="Shift_Id" />
|
||||
<result property="shiftCode" column="Shift_Code" />
|
||||
<result property="shiftDesc" column="Shift_Desc" />
|
||||
<result property="shiftDescGlobal" column="Shift_Desc_Global" />
|
||||
<result property="shiftDescExtended" column="Shift_Desc_Extended" />
|
||||
<result property="shiftStartTime" column="Shift_Start_Time" />
|
||||
<result property="shiftEndTime" column="Shift_End_Time" />
|
||||
<result property="createBy" column="Create_By" />
|
||||
<result property="createDate" column="Create_Date" />
|
||||
<result property="lastUpdateBy" column="Last_Update_By" />
|
||||
<result property="lastUpdateDate" column="Last_Update_Date" />
|
||||
<result property="Active" column="Active" />
|
||||
<result property="enterpriseId" column="Enterprise_Id" />
|
||||
<result property="enterpriseCode" column="Enterprise_Code" />
|
||||
<result property="siteId" column="Site_Id" />
|
||||
<result property="siteCode" column="Site_Code" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseShiftsTVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseShiftsTList" parameterType="BaseShiftsT" resultMap="BaseShiftsTResult">
|
||||
<include refid="selectBaseShiftsTVo"/>
|
||||
<where>
|
||||
<if test="shiftCode != null and shiftCode != ''"> and Shift_Code = #{shiftCode}</if>
|
||||
<if test="shiftDesc != null and shiftDesc != ''"> and Shift_Desc = #{shiftDesc}</if>
|
||||
<if test="shiftDescGlobal != null and shiftDescGlobal != ''"> and Shift_Desc_Global = #{shiftDescGlobal}</if>
|
||||
<if test="shiftDescExtended != null and shiftDescExtended != ''"> and Shift_Desc_Extended = #{shiftDescExtended}</if>
|
||||
<if test="shiftStartTime != null and shiftStartTime != ''"> and Shift_Start_Time = #{shiftStartTime}</if>
|
||||
<if test="shiftEndTime != null and shiftEndTime != ''"> and Shift_End_Time = #{shiftEndTime}</if>
|
||||
<if test="createBy != null and createBy != ''"> and Create_By = #{createBy}</if>
|
||||
<if test="createDate != null "> and Create_Date = #{createDate}</if>
|
||||
<if test="lastUpdateBy != null and lastUpdateBy != ''"> and Last_Update_By = #{lastUpdateBy}</if>
|
||||
<if test="lastUpdateDate != null "> and Last_Update_Date = #{lastUpdateDate}</if>
|
||||
<if test="Active != null and Active != ''"> and Active = #{Active}</if>
|
||||
<if test="enterpriseId != null and enterpriseId != ''"> and Enterprise_Id = #{enterpriseId}</if>
|
||||
<if test="enterpriseCode != null and enterpriseCode != ''"> and Enterprise_Code = #{enterpriseCode}</if>
|
||||
<if test="siteId != null and siteId != ''"> and Site_Id = #{siteId}</if>
|
||||
<if test="siteCode != null and siteCode != ''"> and Site_Code = #{siteCode}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseShiftsTByShiftId" parameterType="String" resultMap="BaseShiftsTResult">
|
||||
<include refid="selectBaseShiftsTVo"/>
|
||||
where Shift_Id = #{shiftId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseShiftsT" parameterType="BaseShiftsT">
|
||||
insert into base_shifts_t
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="shiftId != null">Shift_Id,</if>
|
||||
<if test="shiftCode != null">Shift_Code,</if>
|
||||
<if test="shiftDesc != null">Shift_Desc,</if>
|
||||
<if test="shiftDescGlobal != null">Shift_Desc_Global,</if>
|
||||
<if test="shiftDescExtended != null">Shift_Desc_Extended,</if>
|
||||
<if test="shiftStartTime != null">Shift_Start_Time,</if>
|
||||
<if test="shiftEndTime != null">Shift_End_Time,</if>
|
||||
<if test="createBy != null">Create_By,</if>
|
||||
<if test="createDate != null">Create_Date,</if>
|
||||
<if test="lastUpdateBy != null">Last_Update_By,</if>
|
||||
<if test="lastUpdateDate != null">Last_Update_Date,</if>
|
||||
<if test="Active != null">Active,</if>
|
||||
<if test="enterpriseId != null">Enterprise_Id,</if>
|
||||
<if test="enterpriseCode != null">Enterprise_Code,</if>
|
||||
<if test="siteId != null">Site_Id,</if>
|
||||
<if test="siteCode != null">Site_Code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="shiftId != null">#{shiftId},</if>
|
||||
<if test="shiftCode != null">#{shiftCode},</if>
|
||||
<if test="shiftDesc != null">#{shiftDesc},</if>
|
||||
<if test="shiftDescGlobal != null">#{shiftDescGlobal},</if>
|
||||
<if test="shiftDescExtended != null">#{shiftDescExtended},</if>
|
||||
<if test="shiftStartTime != null">#{shiftStartTime},</if>
|
||||
<if test="shiftEndTime != null">#{shiftEndTime},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createDate != null">#{createDate},</if>
|
||||
<if test="lastUpdateBy != null">#{lastUpdateBy},</if>
|
||||
<if test="lastUpdateDate != null">#{lastUpdateDate},</if>
|
||||
<if test="Active != null">#{Active},</if>
|
||||
<if test="enterpriseId != null">#{enterpriseId},</if>
|
||||
<if test="enterpriseCode != null">#{enterpriseCode},</if>
|
||||
<if test="siteId != null">#{siteId},</if>
|
||||
<if test="siteCode != null">#{siteCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseShiftsT" parameterType="BaseShiftsT">
|
||||
update base_shifts_t
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="shiftCode != null">Shift_Code = #{shiftCode},</if>
|
||||
<if test="shiftDesc != null">Shift_Desc = #{shiftDesc},</if>
|
||||
<if test="shiftDescGlobal != null">Shift_Desc_Global = #{shiftDescGlobal},</if>
|
||||
<if test="shiftDescExtended != null">Shift_Desc_Extended = #{shiftDescExtended},</if>
|
||||
<if test="shiftStartTime != null">Shift_Start_Time = #{shiftStartTime},</if>
|
||||
<if test="shiftEndTime != null">Shift_End_Time = #{shiftEndTime},</if>
|
||||
<if test="createBy != null">Create_By = #{createBy},</if>
|
||||
<if test="createDate != null">Create_Date = #{createDate},</if>
|
||||
<if test="lastUpdateBy != null">Last_Update_By = #{lastUpdateBy},</if>
|
||||
<if test="lastUpdateDate != null">Last_Update_Date = #{lastUpdateDate},</if>
|
||||
<if test="Active != null">Active = #{Active},</if>
|
||||
<if test="enterpriseId != null">Enterprise_Id = #{enterpriseId},</if>
|
||||
<if test="enterpriseCode != null">Enterprise_Code = #{enterpriseCode},</if>
|
||||
<if test="siteId != null">Site_Id = #{siteId},</if>
|
||||
<if test="siteCode != null">Site_Code = #{siteCode},</if>
|
||||
</trim>
|
||||
where Shift_Id = #{shiftId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseShiftsTByShiftId" parameterType="String">
|
||||
delete from base_shifts_t where Shift_Id = #{shiftId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseShiftsTByShiftIds" parameterType="String">
|
||||
delete from base_shifts_t where Shift_Id in
|
||||
<foreach item="shiftId" collection="array" open="(" separator="," close=")">
|
||||
#{shiftId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.BaseTeamTMapper">
|
||||
|
||||
<resultMap type="BaseTeamT" id="BaseTeamTResult">
|
||||
<result property="teamId" column="Team_Id" />
|
||||
<result property="orgId" column="ORG_Id" />
|
||||
<result property="teamCode" column="Team_Code" />
|
||||
<result property="teamDesc" column="Team_Desc" />
|
||||
<result property="teamDescGlobal" column="Team_Desc_Global" />
|
||||
<result property="teamDescExtended" column="Team_Desc_Extended" />
|
||||
<result property="createBy" column="Create_By" />
|
||||
<result property="createDate" column="Create_Date" />
|
||||
<result property="lastUpdateBy" column="Last_Update_By" />
|
||||
<result property="lastUpdateDate" column="Last_Update_Date" />
|
||||
<result property="Active" column="Active" />
|
||||
<result property="enterpriseId" column="Enterprise_Id" />
|
||||
<result property="enterpriseCode" column="Enterprise_Code" />
|
||||
<result property="siteId" column="Site_Id" />
|
||||
<result property="siteCode" column="Site_Code" />
|
||||
<result property="productionLineCode" column="production_line_code" />
|
||||
<result property="teamLeaderCode" column="team_leader_code" />
|
||||
<result property="planPostQuantity" column="plan_post_quantity" />
|
||||
<result property="actualPostQuantity" column="actual_post_quantity" />
|
||||
<result property="salaryType" column="salary_type" />
|
||||
<result property="teamProperties" column="team_properties" />
|
||||
<result property="attendanceQuantity" column="attendance_quantity" />
|
||||
<result property="assignedQuantity" column="assigned_quantity" />
|
||||
<result property="teamType" column="team_type" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseTeamTVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseTeamTList" parameterType="BaseTeamT" resultMap="BaseTeamTResult">
|
||||
<include refid="selectBaseTeamTVo"/>
|
||||
<where>
|
||||
<if test="orgId != null and orgId != ''"> and ORG_Id = #{orgId}</if>
|
||||
<if test="teamCode != null and teamCode != ''"> and Team_Code = #{teamCode}</if>
|
||||
<if test="teamDesc != null and teamDesc != ''"> and Team_Desc = #{teamDesc}</if>
|
||||
<if test="teamDescGlobal != null and teamDescGlobal != ''"> and Team_Desc_Global = #{teamDescGlobal}</if>
|
||||
<if test="teamDescExtended != null and teamDescExtended != ''"> and Team_Desc_Extended = #{teamDescExtended}</if>
|
||||
<if test="createBy != null and createBy != ''"> and Create_By = #{createBy}</if>
|
||||
<if test="createDate != null "> and Create_Date = #{createDate}</if>
|
||||
<if test="lastUpdateBy != null and lastUpdateBy != ''"> and Last_Update_By = #{lastUpdateBy}</if>
|
||||
<if test="lastUpdateDate != null "> and Last_Update_Date = #{lastUpdateDate}</if>
|
||||
<if test="Active != null and Active != ''"> and Active = #{Active}</if>
|
||||
<if test="enterpriseId != null and enterpriseId != ''"> and Enterprise_Id = #{enterpriseId}</if>
|
||||
<if test="enterpriseCode != null and enterpriseCode != ''"> and Enterprise_Code = #{enterpriseCode}</if>
|
||||
<if test="siteId != null and siteId != ''"> and Site_Id = #{siteId}</if>
|
||||
<if test="siteCode != null and siteCode != ''"> and Site_Code = #{siteCode}</if>
|
||||
<if test="productionLineCode != null and productionLineCode != ''"> and production_line_code = #{productionLineCode}</if>
|
||||
<if test="teamLeaderCode != null and teamLeaderCode != ''"> and team_leader_code = #{teamLeaderCode}</if>
|
||||
<if test="planPostQuantity != null "> and plan_post_quantity = #{planPostQuantity}</if>
|
||||
<if test="actualPostQuantity != null "> and actual_post_quantity = #{actualPostQuantity}</if>
|
||||
<if test="salaryType != null and salaryType != ''"> and salary_type = #{salaryType}</if>
|
||||
<if test="teamProperties != null and teamProperties != ''"> and team_properties = #{teamProperties}</if>
|
||||
<if test="attendanceQuantity != null "> and attendance_quantity = #{attendanceQuantity}</if>
|
||||
<if test="assignedQuantity != null "> and assigned_quantity = #{assignedQuantity}</if>
|
||||
<if test="teamType != null "> and team_type = #{teamType}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseTeamTByTeamId" parameterType="String" resultMap="BaseTeamTResult">
|
||||
<include refid="selectBaseTeamTVo"/>
|
||||
where Team_Id = #{teamId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseTeamT" parameterType="BaseTeamT">
|
||||
insert into base_team_t
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="teamId != null">Team_Id,</if>
|
||||
<if test="orgId != null">ORG_Id,</if>
|
||||
<if test="teamCode != null">Team_Code,</if>
|
||||
<if test="teamDesc != null">Team_Desc,</if>
|
||||
<if test="teamDescGlobal != null">Team_Desc_Global,</if>
|
||||
<if test="teamDescExtended != null">Team_Desc_Extended,</if>
|
||||
<if test="createBy != null">Create_By,</if>
|
||||
<if test="createDate != null">Create_Date,</if>
|
||||
<if test="lastUpdateBy != null">Last_Update_By,</if>
|
||||
<if test="lastUpdateDate != null">Last_Update_Date,</if>
|
||||
<if test="Active != null">Active,</if>
|
||||
<if test="enterpriseId != null">Enterprise_Id,</if>
|
||||
<if test="enterpriseCode != null">Enterprise_Code,</if>
|
||||
<if test="siteId != null">Site_Id,</if>
|
||||
<if test="siteCode != null">Site_Code,</if>
|
||||
<if test="productionLineCode != null">production_line_code,</if>
|
||||
<if test="teamLeaderCode != null">team_leader_code,</if>
|
||||
<if test="planPostQuantity != null">plan_post_quantity,</if>
|
||||
<if test="actualPostQuantity != null">actual_post_quantity,</if>
|
||||
<if test="salaryType != null">salary_type,</if>
|
||||
<if test="teamProperties != null">team_properties,</if>
|
||||
<if test="attendanceQuantity != null">attendance_quantity,</if>
|
||||
<if test="assignedQuantity != null">assigned_quantity,</if>
|
||||
<if test="teamType != null">team_type,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="teamId != null">#{teamId},</if>
|
||||
<if test="orgId != null">#{orgId},</if>
|
||||
<if test="teamCode != null">#{teamCode},</if>
|
||||
<if test="teamDesc != null">#{teamDesc},</if>
|
||||
<if test="teamDescGlobal != null">#{teamDescGlobal},</if>
|
||||
<if test="teamDescExtended != null">#{teamDescExtended},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createDate != null">#{createDate},</if>
|
||||
<if test="lastUpdateBy != null">#{lastUpdateBy},</if>
|
||||
<if test="lastUpdateDate != null">#{lastUpdateDate},</if>
|
||||
<if test="Active != null">#{Active},</if>
|
||||
<if test="enterpriseId != null">#{enterpriseId},</if>
|
||||
<if test="enterpriseCode != null">#{enterpriseCode},</if>
|
||||
<if test="siteId != null">#{siteId},</if>
|
||||
<if test="siteCode != null">#{siteCode},</if>
|
||||
<if test="productionLineCode != null">#{productionLineCode},</if>
|
||||
<if test="teamLeaderCode != null">#{teamLeaderCode},</if>
|
||||
<if test="planPostQuantity != null">#{planPostQuantity},</if>
|
||||
<if test="actualPostQuantity != null">#{actualPostQuantity},</if>
|
||||
<if test="salaryType != null">#{salaryType},</if>
|
||||
<if test="teamProperties != null">#{teamProperties},</if>
|
||||
<if test="attendanceQuantity != null">#{attendanceQuantity},</if>
|
||||
<if test="assignedQuantity != null">#{assignedQuantity},</if>
|
||||
<if test="teamType != null">#{teamType},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseTeamT" parameterType="BaseTeamT">
|
||||
update base_team_t
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="orgId != null">ORG_Id = #{orgId},</if>
|
||||
<if test="teamCode != null">Team_Code = #{teamCode},</if>
|
||||
<if test="teamDesc != null">Team_Desc = #{teamDesc},</if>
|
||||
<if test="teamDescGlobal != null">Team_Desc_Global = #{teamDescGlobal},</if>
|
||||
<if test="teamDescExtended != null">Team_Desc_Extended = #{teamDescExtended},</if>
|
||||
<if test="createBy != null">Create_By = #{createBy},</if>
|
||||
<if test="createDate != null">Create_Date = #{createDate},</if>
|
||||
<if test="lastUpdateBy != null">Last_Update_By = #{lastUpdateBy},</if>
|
||||
<if test="lastUpdateDate != null">Last_Update_Date = #{lastUpdateDate},</if>
|
||||
<if test="Active != null">Active = #{Active},</if>
|
||||
<if test="enterpriseId != null">Enterprise_Id = #{enterpriseId},</if>
|
||||
<if test="enterpriseCode != null">Enterprise_Code = #{enterpriseCode},</if>
|
||||
<if test="siteId != null">Site_Id = #{siteId},</if>
|
||||
<if test="siteCode != null">Site_Code = #{siteCode},</if>
|
||||
<if test="productionLineCode != null">production_line_code = #{productionLineCode},</if>
|
||||
<if test="teamLeaderCode != null">team_leader_code = #{teamLeaderCode},</if>
|
||||
<if test="planPostQuantity != null">plan_post_quantity = #{planPostQuantity},</if>
|
||||
<if test="actualPostQuantity != null">actual_post_quantity = #{actualPostQuantity},</if>
|
||||
<if test="salaryType != null">salary_type = #{salaryType},</if>
|
||||
<if test="teamProperties != null">team_properties = #{teamProperties},</if>
|
||||
<if test="attendanceQuantity != null">attendance_quantity = #{attendanceQuantity},</if>
|
||||
<if test="assignedQuantity != null">assigned_quantity = #{assignedQuantity},</if>
|
||||
<if test="teamType != null ">team_type = #{teamType},</if>
|
||||
</trim>
|
||||
where Team_Id = #{teamId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseTeamTByTeamId" parameterType="String">
|
||||
delete from base_team_t where Team_Id = #{teamId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseTeamTByTeamIds" parameterType="String">
|
||||
delete from base_team_t where Team_Id in
|
||||
<foreach item="teamId" collection="array" open="(" separator="," close=")">
|
||||
#{teamId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.BaseWarehouseMapper">
|
||||
|
||||
<resultMap type="BaseWarehouse" id="BaseWarehouseResult">
|
||||
<result property="warehouseId" column="warehouse_id" />
|
||||
<result property="warehouseType" column="warehouse_type" />
|
||||
<result property="warehouseCode" column="warehouse_code" />
|
||||
<result property="warehouseName" column="warehouse_name" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
<result property="factoryName" column="factory_name" />
|
||||
<result property="dataSource" column="data_source" />
|
||||
<result property="schame" column="schame" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="lineFlag" column="line_flag" />
|
||||
<result property="warehouseType2" column="warehouse_type2" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBaseWarehouseVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectBaseWarehouseList" parameterType="BaseWarehouse" resultMap="BaseWarehouseResult">
|
||||
<include refid="selectBaseWarehouseVo"/>
|
||||
<where>
|
||||
<if test="warehouseType != null and warehouseType != ''"> and warehouse_type = #{warehouseType}</if>
|
||||
<if test="warehouseCode != null and warehouseCode != ''"> and warehouse_code = #{warehouseCode}</if>
|
||||
<if test="warehouseName != null and warehouseName != ''"> and warehouse_name like concat('%', #{warehouseName}, '%')</if>
|
||||
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
<if test="factoryName != null and factoryName != ''"> and factory_name like concat('%', #{factoryName}, '%')</if>
|
||||
<if test="dataSource != null and dataSource != ''"> and data_source = #{dataSource}</if>
|
||||
<if test="schame != null and schame != ''"> and schame = #{schame}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="lineFlag != null and lineFlag != ''"> and line_flag = #{lineFlag}</if>
|
||||
<if test="warehouseType2 != null and warehouseType2 != ''"> and warehouse_type2 = #{warehouseType2}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBaseWarehouseByWarehouseId" parameterType="String" resultMap="BaseWarehouseResult">
|
||||
<include refid="selectBaseWarehouseVo"/>
|
||||
where warehouse_id = #{warehouseId}
|
||||
</select>
|
||||
|
||||
<insert id="insertBaseWarehouse" parameterType="BaseWarehouse">
|
||||
insert into base_warehouse
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<!-- <if test="warehouseId != null">warehouse_id,</if>-->
|
||||
<if test="warehouseType != null">warehouse_type,</if>
|
||||
<if test="warehouseCode != null and warehouseCode != ''">warehouse_code,</if>
|
||||
<if test="warehouseName != null and warehouseName != ''">warehouse_name,</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
|
||||
<if test="factoryName != null and factoryName != ''">factory_name,</if>
|
||||
<if test="dataSource != null and dataSource != ''">data_source,</if>
|
||||
<if test="schame != null and schame != ''">schame,</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">active_flag,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="lineFlag != null">line_flag,</if>
|
||||
<if test="warehouseType2 != null">warehouse_type2,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<!-- <if test="warehouseId != null">#{warehouseId},</if>-->
|
||||
<if test="warehouseType != null">#{warehouseType},</if>
|
||||
<if test="warehouseCode != null and warehouseCode != ''">#{warehouseCode},</if>
|
||||
<if test="warehouseName != null and warehouseName != ''">#{warehouseName},</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
|
||||
<if test="factoryName != null and factoryName != ''">#{factoryName},</if>
|
||||
<if test="dataSource != null and dataSource != ''">#{dataSource},</if>
|
||||
<if test="schame != null and schame != ''">#{schame},</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">#{activeFlag},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="lineFlag != null">#{lineFlag},</if>
|
||||
<if test="warehouseType2 != null">#{warehouseType2},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBaseWarehouse" parameterType="BaseWarehouse">
|
||||
update base_warehouse
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="warehouseType != null">warehouse_type = #{warehouseType},</if>
|
||||
<if test="warehouseCode != null and warehouseCode != ''">warehouse_code = #{warehouseCode},</if>
|
||||
<if test="warehouseName != null and warehouseName != ''">warehouse_name = #{warehouseName},</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">factory_code = #{factoryCode},</if>
|
||||
<if test="factoryName != null and factoryName != ''">factory_name = #{factoryName},</if>
|
||||
<if test="dataSource != null and dataSource != ''">data_source = #{dataSource},</if>
|
||||
<if test="schame != null and schame != ''">schame = #{schame},</if>
|
||||
<if test="activeFlag != null and activeFlag != ''">active_flag = #{activeFlag},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="lineFlag != null">line_flag = #{lineFlag},</if>
|
||||
<if test="warehouseType2 != null">warehouse_type2 = #{warehouseType2},</if>
|
||||
</trim>
|
||||
where warehouse_id = #{warehouseId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBaseWarehouseByWarehouseId" parameterType="String">
|
||||
delete from base_warehouse where warehouse_id = #{warehouseId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBaseWarehouseByWarehouseIds" parameterType="String">
|
||||
delete from base_warehouse where warehouse_id in
|
||||
<foreach item="warehouseId" collection="array" open="(" separator="," close=")">
|
||||
#{warehouseId}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<select id="queryCount" parameterType="BaseWarehouse" resultType="java.lang.Integer">
|
||||
select count(*)
|
||||
from base_warehouse
|
||||
</select>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.SysFactoryMapper">
|
||||
|
||||
<resultMap type="SysFactory" id="SysFactoryResult">
|
||||
<result property="factoryId" column="factory_id" />
|
||||
<result property="parentId" column="parent_id" />
|
||||
<result property="ancestors" column="ancestors" />
|
||||
<result property="factoryName" column="factory_name" />
|
||||
<result property="orderNum" column="order_num" />
|
||||
<result property="leader" column="leader" />
|
||||
<result property="phone" column="phone" />
|
||||
<result property="email" column="email" />
|
||||
<result property="status" column="status" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectSysFactoryVo">
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectSysFactoryList" parameterType="SysFactory" resultMap="SysFactoryResult">
|
||||
<include refid="selectSysFactoryVo"/>
|
||||
<where>
|
||||
<if test="parentId != null "> and parent_id = #{parentId}</if>
|
||||
<if test="ancestors != null and ancestors != ''"> and ancestors = #{ancestors}</if>
|
||||
<if test="factoryName != null and factoryName != ''"> and factory_name like concat('%', #{factoryName}, '%')</if>
|
||||
<if test="orderNum != null "> and order_num = #{orderNum}</if>
|
||||
<if test="leader != null and leader != ''"> and leader = #{leader}</if>
|
||||
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
||||
<if test="email != null and email != ''"> and email = #{email}</if>
|
||||
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectSysFactoryByFactoryId" parameterType="Long" resultMap="SysFactoryResult">
|
||||
<include refid="selectSysFactoryVo"/>
|
||||
where factory_id = #{factoryId}
|
||||
</select>
|
||||
|
||||
<insert id="insertSysFactory" parameterType="SysFactory" useGeneratedKeys="true" keyProperty="factoryId">
|
||||
insert into sys_factory
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">parent_id,</if>
|
||||
<if test="ancestors != null">ancestors,</if>
|
||||
<if test="factoryName != null">factory_name,</if>
|
||||
<if test="orderNum != null">order_num,</if>
|
||||
<if test="leader != null">leader,</if>
|
||||
<if test="phone != null">phone,</if>
|
||||
<if test="email != null">email,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">#{parentId},</if>
|
||||
<if test="ancestors != null">#{ancestors},</if>
|
||||
<if test="factoryName != null">#{factoryName},</if>
|
||||
<if test="orderNum != null">#{orderNum},</if>
|
||||
<if test="leader != null">#{leader},</if>
|
||||
<if test="phone != null">#{phone},</if>
|
||||
<if test="email != null">#{email},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateSysFactory" parameterType="SysFactory">
|
||||
update sys_factory
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="parentId != null">parent_id = #{parentId},</if>
|
||||
<if test="ancestors != null">ancestors = #{ancestors},</if>
|
||||
<if test="factoryName != null">factory_name = #{factoryName},</if>
|
||||
<if test="orderNum != null">order_num = #{orderNum},</if>
|
||||
<if test="leader != null">leader = #{leader},</if>
|
||||
<if test="phone != null">phone = #{phone},</if>
|
||||
<if test="email != null">email = #{email},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
</trim>
|
||||
where factory_id = #{factoryId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteSysFactoryByFactoryId" parameterType="Long">
|
||||
delete from sys_factory where factory_id = #{factoryId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteSysFactoryByFactoryIds" parameterType="String">
|
||||
delete from sys_factory where factory_id in
|
||||
<foreach item="factoryId" collection="array" open="(" separator="," close=")">
|
||||
#{factoryId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue