Merge remote-tracking branch 'origin/master'

highway
mengjiao 2 years ago
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,339 @@
package com.op.wms.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
* base_area
*
* @author Open Platform
* @date 2023-07-04
*/
public class BaseArea extends BaseEntity {
private static final long serialVersionUID = 1L;
/** id */
private String areaId;
/** 库区编码 */
@Excel(name = "库区编码")
private String areaCode;
/** 库区描述 */
@Excel(name = "库区描述")
private String areaDesc;
/** 区域编码 */
@Excel(name = "区域编码")
private String regionCode;
/** 仓库编码 */
@Excel(name = "仓库编码")
private String whCode;
/** 入库过渡库位 */
@Excel(name = "入库过渡库位")
private String instockTranLoc;
/** 出库过渡库位 */
@Excel(name = "出库过渡库位")
private String outstockTranLoc;
/** 拣货过渡库位 */
@Excel(name = "拣货过渡库位")
private String pickTranLoc;
/** 默认异常储位 */
@Excel(name = "默认异常储位")
private String exSignLocNo;
/** 默认隔离储位 */
@Excel(name = "默认隔离储位")
private String frozenLocNo;
/** 需要问 */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String sapSendSpot;
/** 库区基点 */
@Excel(name = "库区基点")
private String areaPoint;
/** 不可用#是否使用托盘1是0否 */
@Excel(name = "不可用#是否使用托盘1是0否")
private String useTray;
/** 不可用#是否托盘混载1是0否 */
@Excel(name = "不可用#是否托盘混载1是0否")
private String trayMix;
/** 入库策略(收货上架一步/两步) */
@Excel(name = "入库策略", readConverterExp = "收=货上架一步/两步")
private String instorageStrategy;
/** 出库策略(拣货复核一步/两步) */
@Excel(name = "出库策略", readConverterExp = "拣=货复核一步/两步")
private String outstorageStrategy;
/** 是否强制出库1是0否 */
@Excel(name = "是否强制出库", readConverterExp = "1=是0否")
private String forceOutstorage;
/** 不可用#是否判断库位允许拣货1是0否 */
@Excel(name = "不可用#是否判断库位允许拣货", readConverterExp = "1=是0否")
private String locPickFlag;
/** 手持提单时的默认分配规则 */
@Excel(name = "手持提单时的默认分配规则")
private String allocationRule;
/** 默认集货位推荐类型 */
@Excel(name = "默认集货位推荐类型")
private String gatherLocType;
/** 优先级 */
@Excel(name = "优先级")
private String priority;
/** 库区标志0-普通库区 */
@Excel(name = "库区标志0-普通库区 1-立体库内机库区 2-立体库外机库区")
private String userDefined1;
/** $column.columnComment */
@Excel(name = "未定义2")
private String userDefined2;
/** $column.columnComment */
@Excel(name = "未定义3")
private String userDefined3;
/** 有效标志 */
@Excel(name = "有效标志")
private String activeFlag;
/** $column.columnComment */
@Excel(name = "工厂编码")
private String factoryCode;
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getAreaId() {
return areaId;
}
public void setAreaCode(String areaCode) {
this.areaCode = areaCode;
}
public String getAreaCode() {
return areaCode;
}
public void setAreaDesc(String areaDesc) {
this.areaDesc = areaDesc;
}
public String getAreaDesc() {
return areaDesc;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getRegionCode() {
return regionCode;
}
public void setWhCode(String whCode) {
this.whCode = whCode;
}
public String getWhCode() {
return whCode;
}
public void setInstockTranLoc(String instockTranLoc) {
this.instockTranLoc = instockTranLoc;
}
public String getInstockTranLoc() {
return instockTranLoc;
}
public void setOutstockTranLoc(String outstockTranLoc) {
this.outstockTranLoc = outstockTranLoc;
}
public String getOutstockTranLoc() {
return outstockTranLoc;
}
public void setPickTranLoc(String pickTranLoc) {
this.pickTranLoc = pickTranLoc;
}
public String getPickTranLoc() {
return pickTranLoc;
}
public void setExSignLocNo(String exSignLocNo) {
this.exSignLocNo = exSignLocNo;
}
public String getExSignLocNo() {
return exSignLocNo;
}
public void setFrozenLocNo(String frozenLocNo) {
this.frozenLocNo = frozenLocNo;
}
public String getFrozenLocNo() {
return frozenLocNo;
}
public void setSapSendSpot(String sapSendSpot) {
this.sapSendSpot = sapSendSpot;
}
public String getSapSendSpot() {
return sapSendSpot;
}
public void setAreaPoint(String areaPoint) {
this.areaPoint = areaPoint;
}
public String getAreaPoint() {
return areaPoint;
}
public void setUseTray(String useTray) {
this.useTray = useTray;
}
public String getUseTray() {
return useTray;
}
public void setTrayMix(String trayMix) {
this.trayMix = trayMix;
}
public String getTrayMix() {
return trayMix;
}
public void setInstorageStrategy(String instorageStrategy) {
this.instorageStrategy = instorageStrategy;
}
public String getInstorageStrategy() {
return instorageStrategy;
}
public void setOutstorageStrategy(String outstorageStrategy) {
this.outstorageStrategy = outstorageStrategy;
}
public String getOutstorageStrategy() {
return outstorageStrategy;
}
public void setForceOutstorage(String forceOutstorage) {
this.forceOutstorage = forceOutstorage;
}
public String getForceOutstorage() {
return forceOutstorage;
}
public void setLocPickFlag(String locPickFlag) {
this.locPickFlag = locPickFlag;
}
public String getLocPickFlag() {
return locPickFlag;
}
public void setAllocationRule(String allocationRule) {
this.allocationRule = allocationRule;
}
public String getAllocationRule() {
return allocationRule;
}
public void setGatherLocType(String gatherLocType) {
this.gatherLocType = gatherLocType;
}
public String getGatherLocType() {
return gatherLocType;
}
public void setPriority(String priority) {
this.priority = priority;
}
public String getPriority() {
return priority;
}
public void setUserDefined1(String userDefined1) {
this.userDefined1 = userDefined1;
}
public String getUserDefined1() {
return userDefined1;
}
public void setUserDefined2(String userDefined2) {
this.userDefined2 = userDefined2;
}
public String getUserDefined2() {
return userDefined2;
}
public void setUserDefined3(String userDefined3) {
this.userDefined3 = userDefined3;
}
public String getUserDefined3() {
return userDefined3;
}
public void setActiveFlag(String activeFlag) {
this.activeFlag = activeFlag;
}
public String getActiveFlag() {
return activeFlag;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("areaId", getAreaId())
.append("areaCode", getAreaCode())
.append("areaDesc", getAreaDesc())
.append("regionCode", getRegionCode())
.append("whCode", getWhCode())
.append("instockTranLoc", getInstockTranLoc())
.append("outstockTranLoc", getOutstockTranLoc())
.append("pickTranLoc", getPickTranLoc())
.append("exSignLocNo", getExSignLocNo())
.append("frozenLocNo", getFrozenLocNo())
.append("sapSendSpot", getSapSendSpot())
.append("areaPoint", getAreaPoint())
.append("useTray", getUseTray())
.append("trayMix", getTrayMix())
.append("instorageStrategy", getInstorageStrategy())
.append("outstorageStrategy", getOutstorageStrategy())
.append("forceOutstorage", getForceOutstorage())
.append("locPickFlag", getLocPickFlag())
.append("allocationRule", getAllocationRule())
.append("gatherLocType", getGatherLocType())
.append("priority", getPriority())
.append("userDefined1", getUserDefined1())
.append("userDefined2", getUserDefined2())
.append("userDefined3", getUserDefined3())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("activeFlag", getActiveFlag())
.append("remark", getRemark())
.append("factoryCode", getFactoryCode())
.toString();
}
}

@ -0,0 +1,604 @@
package com.op.wms.domain;
import java.math.BigDecimal;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
* base_location
*
* @author Open Platform
* @date 2023-07-06
*/
public class BaseLocation extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键uuid */
private String locationId;
/** 货位编码 */
@Excel(name = "货位编码")
private String locationCode;
/** 上架顺序 */
@Excel(name = "上架顺序")
private String shelfOrder;
/** 盘点顺序 */
@Excel(name = "盘点顺序")
private String checkOrder;
/** 拣货顺序 */
@Excel(name = "拣货顺序")
private String pickOrder;
/** 货位使用 */
@Excel(name = "货位使用")
private String locationUse;
/** 是否允许拣货 */
@Excel(name = "是否允许拣货")
private String pickFlag;
/** 是否开启库内交接 */
@Excel(name = "是否开启库内交接")
private String isOpenKnFlag;
/** 货位类型0-平面库货位 */
@Excel(name = "货位类型0-平面库货位")
private String locationType;
/** 是否报废货位 */
@Excel(name = "是否报废货位")
private String locationScrapType;
/** 货位属性 */
@Excel(name = "货位属性")
private String locationAttr;
/** 周转需求 */
@Excel(name = "周转需求")
private String turnDemand;
/** 库存环境 */
@Excel(name = "库存环境")
private String stockEnv;
/** 仓库编码 */
@Excel(name = "仓库编码")
private String warehouseCode;
/** 区域编码 */
@Excel(name = "区域编码")
private String regionCode;
/** 库区编码 */
@Excel(name = "库区编码")
private String areaCode;
/** 校验码 */
@Excel(name = "校验码")
private String checkCode;
/** 工作区 */
@Excel(name = "工作区")
private String workArea;
/** 端口1 */
@Excel(name = "端口1")
private String port1;
/** 端口2 */
@Excel(name = "端口2")
private String port2;
/** 端口3 */
@Excel(name = "端口3")
private String port3;
/** 体积限制 */
@Excel(name = "体积限制")
private BigDecimal volumeLimit;
/** 重量限制 */
@Excel(name = "重量限制")
private BigDecimal weightLimit;
/** 箱数限制* */
@Excel(name = "箱数限制*")
private Long boxLimit;
/** 数量限制 */
@Excel(name = "数量限制")
private Long qtyLimit;
/** 托盘限制* */
@Excel(name = "托盘限制*")
private Long palletLimit;
/** 长度 */
@Excel(name = "长度")
private BigDecimal length;
/** 宽度 */
@Excel(name = "宽度")
private BigDecimal width;
/** 高度 */
@Excel(name = "高度")
private BigDecimal height;
/** X坐标 */
@Excel(name = "X坐标")
private Long xCoordinate;
/** Y坐标 */
@Excel(name = "Y坐标")
private Long yCoordinate;
/** Z坐标 */
@Excel(name = "Z坐标")
private Long zCoordinate;
/** X像素 */
@Excel(name = "X像素")
private Long xPixels;
/** Y像素 */
@Excel(name = "Y像素")
private Long yPixels;
/** Z像素 */
@Excel(name = "Z像素")
private Long zPixels;
/** 排 */
@Excel(name = "排")
private String locRow;
/** 层数 */
@Excel(name = "层数")
private Long layerNum;
/** 列 */
@Excel(name = "列")
private String locColumn;
/** 巷道 */
@Excel(name = "巷道")
private String bord;
/** 允许混放产品 */
@Excel(name = "允许混放产品")
private String productMix;
/** 允许混放批次 */
@Excel(name = "允许混放批次")
private String batchMix;
/** 忽略ID */
@Excel(name = "忽略ID")
private String ignoreId;
/** 激活标记 */
@Excel(name = "激活标记")
private String activeFlag;
/** 货位标志0-普通货位 */
@Excel(name = "货位标志0-普通货位")
private String userDefined1;
/** 用户自定义2 */
@Excel(name = "用户自定义2")
private String userDefined2;
/** 用户自定义3 */
@Excel(name = "用户自定义3")
private String userDefined3;
/** 工厂 */
@Excel(name = "工厂")
private String factoryCode;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String syntozk;
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public String getLocationId() {
return locationId;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
public String getLocationCode() {
return locationCode;
}
public void setShelfOrder(String shelfOrder) {
this.shelfOrder = shelfOrder;
}
public String getShelfOrder() {
return shelfOrder;
}
public void setCheckOrder(String checkOrder) {
this.checkOrder = checkOrder;
}
public String getCheckOrder() {
return checkOrder;
}
public void setPickOrder(String pickOrder) {
this.pickOrder = pickOrder;
}
public String getPickOrder() {
return pickOrder;
}
public void setLocationUse(String locationUse) {
this.locationUse = locationUse;
}
public String getLocationUse() {
return locationUse;
}
public void setPickFlag(String pickFlag) {
this.pickFlag = pickFlag;
}
public String getPickFlag() {
return pickFlag;
}
public void setIsOpenKnFlag(String isOpenKnFlag) {
this.isOpenKnFlag = isOpenKnFlag;
}
public String getIsOpenKnFlag() {
return isOpenKnFlag;
}
public void setLocationType(String locationType) {
this.locationType = locationType;
}
public String getLocationType() {
return locationType;
}
public void setLocationScrapType(String locationScrapType) {
this.locationScrapType = locationScrapType;
}
public String getLocationScrapType() {
return locationScrapType;
}
public void setLocationAttr(String locationAttr) {
this.locationAttr = locationAttr;
}
public String getLocationAttr() {
return locationAttr;
}
public void setTurnDemand(String turnDemand) {
this.turnDemand = turnDemand;
}
public String getTurnDemand() {
return turnDemand;
}
public void setStockEnv(String stockEnv) {
this.stockEnv = stockEnv;
}
public String getStockEnv() {
return stockEnv;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
public String getRegionCode() {
return regionCode;
}
public void setAreaCode(String areaCode) {
this.areaCode = areaCode;
}
public String getAreaCode() {
return areaCode;
}
public void setCheckCode(String checkCode) {
this.checkCode = checkCode;
}
public String getCheckCode() {
return checkCode;
}
public void setWorkArea(String workArea) {
this.workArea = workArea;
}
public String getWorkArea() {
return workArea;
}
public void setPort1(String port1) {
this.port1 = port1;
}
public String getPort1() {
return port1;
}
public void setPort2(String port2) {
this.port2 = port2;
}
public String getPort2() {
return port2;
}
public void setPort3(String port3) {
this.port3 = port3;
}
public String getPort3() {
return port3;
}
public void setVolumeLimit(BigDecimal volumeLimit) {
this.volumeLimit = volumeLimit;
}
public BigDecimal getVolumeLimit() {
return volumeLimit;
}
public void setWeightLimit(BigDecimal weightLimit) {
this.weightLimit = weightLimit;
}
public BigDecimal getWeightLimit() {
return weightLimit;
}
public void setBoxLimit(Long boxLimit) {
this.boxLimit = boxLimit;
}
public Long getBoxLimit() {
return boxLimit;
}
public void setQtyLimit(Long qtyLimit) {
this.qtyLimit = qtyLimit;
}
public Long getQtyLimit() {
return qtyLimit;
}
public void setPalletLimit(Long palletLimit) {
this.palletLimit = palletLimit;
}
public Long getPalletLimit() {
return palletLimit;
}
public void setLength(BigDecimal length) {
this.length = length;
}
public BigDecimal getLength() {
return length;
}
public void setWidth(BigDecimal width) {
this.width = width;
}
public BigDecimal getWidth() {
return width;
}
public void setHeight(BigDecimal height) {
this.height = height;
}
public BigDecimal getHeight() {
return height;
}
public void setxCoordinate(Long xCoordinate) {
this.xCoordinate = xCoordinate;
}
public Long getxCoordinate() {
return xCoordinate;
}
public void setyCoordinate(Long yCoordinate) {
this.yCoordinate = yCoordinate;
}
public Long getyCoordinate() {
return yCoordinate;
}
public void setzCoordinate(Long zCoordinate) {
this.zCoordinate = zCoordinate;
}
public Long getzCoordinate() {
return zCoordinate;
}
public void setxPixels(Long xPixels) {
this.xPixels = xPixels;
}
public Long getxPixels() {
return xPixels;
}
public void setyPixels(Long yPixels) {
this.yPixels = yPixels;
}
public Long getyPixels() {
return yPixels;
}
public void setzPixels(Long zPixels) {
this.zPixels = zPixels;
}
public Long getzPixels() {
return zPixels;
}
public void setLocRow(String locRow) {
this.locRow = locRow;
}
public String getLocRow() {
return locRow;
}
public void setLayerNum(Long layerNum) {
this.layerNum = layerNum;
}
public Long getLayerNum() {
return layerNum;
}
public void setLocColumn(String locColumn) {
this.locColumn = locColumn;
}
public String getLocColumn() {
return locColumn;
}
public void setBord(String bord) {
this.bord = bord;
}
public String getBord() {
return bord;
}
public void setProductMix(String productMix) {
this.productMix = productMix;
}
public String getProductMix() {
return productMix;
}
public void setBatchMix(String batchMix) {
this.batchMix = batchMix;
}
public String getBatchMix() {
return batchMix;
}
public void setIgnoreId(String ignoreId) {
this.ignoreId = ignoreId;
}
public String getIgnoreId() {
return ignoreId;
}
public void setActiveFlag(String activeFlag) {
this.activeFlag = activeFlag;
}
public String getActiveFlag() {
return activeFlag;
}
public void setUserDefined1(String userDefined1) {
this.userDefined1 = userDefined1;
}
public String getUserDefined1() {
return userDefined1;
}
public void setUserDefined2(String userDefined2) {
this.userDefined2 = userDefined2;
}
public String getUserDefined2() {
return userDefined2;
}
public void setUserDefined3(String userDefined3) {
this.userDefined3 = userDefined3;
}
public String getUserDefined3() {
return userDefined3;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
public String getFactoryCode() {
return factoryCode;
}
public void setSyntozk(String syntozk) {
this.syntozk = syntozk;
}
public String getSyntozk() {
return syntozk;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("locationId", getLocationId())
.append("locationCode", getLocationCode())
.append("shelfOrder", getShelfOrder())
.append("checkOrder", getCheckOrder())
.append("pickOrder", getPickOrder())
.append("locationUse", getLocationUse())
.append("pickFlag", getPickFlag())
.append("isOpenKnFlag", getIsOpenKnFlag())
.append("locationType", getLocationType())
.append("locationScrapType", getLocationScrapType())
.append("locationAttr", getLocationAttr())
.append("turnDemand", getTurnDemand())
.append("stockEnv", getStockEnv())
.append("warehouseCode", getWarehouseCode())
.append("regionCode", getRegionCode())
.append("areaCode", getAreaCode())
.append("checkCode", getCheckCode())
.append("workArea", getWorkArea())
.append("port1", getPort1())
.append("port2", getPort2())
.append("port3", getPort3())
.append("volumeLimit", getVolumeLimit())
.append("weightLimit", getWeightLimit())
.append("boxLimit", getBoxLimit())
.append("qtyLimit", getQtyLimit())
.append("palletLimit", getPalletLimit())
.append("length", getLength())
.append("width", getWidth())
.append("height", getHeight())
.append("xCoordinate", getxCoordinate())
.append("yCoordinate", getyCoordinate())
.append("zCoordinate", getzCoordinate())
.append("xPixels", getxPixels())
.append("yPixels", getyPixels())
.append("zPixels", getzPixels())
.append("locRow", getLocRow())
.append("layerNum", getLayerNum())
.append("locColumn", getLocColumn())
.append("bord", getBord())
.append("productMix", getProductMix())
.append("batchMix", getBatchMix())
.append("ignoreId", getIgnoreId())
.append("activeFlag", getActiveFlag())
.append("userDefined1", getUserDefined1())
.append("userDefined2", getUserDefined2())
.append("userDefined3", getUserDefined3())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.append("factoryCode", getFactoryCode())
.append("syntozk", getSyntozk())
.toString();
}
}

@ -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,304 @@
package com.op.wms.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.BaseEntity;
/**
* base_team_t
*
* @author Open Platform
* @date 2023-07-05
*/
public class BaseTeamT extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 班组主键 */
private String teamId;
/** 组织机构主键 */
@Excel(name = "组织机构主键")
private String orgId;
/** 班组编码 */
@Excel(name = "班组编码")
private String teamCode;
/** 班组简称 */
@Excel(name = "班组简称")
private String teamDesc;
/** 班组通用名称 */
@Excel(name = "班组通用名称")
private String teamDescGlobal;
/** 班组扩展名称 */
@Excel(name = "班组扩展名称")
private String teamDescExtended;
/** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date createDate;
/** 最后更新人 */
@Excel(name = "最后更新人")
private String lastUpdateBy;
/** 最后更新时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "最后更新时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date lastUpdateDate;
/** 可用标识 */
@Excel(name = "可用标识")
private String Active;
/** 企业主键 */
@Excel(name = "企业主键")
private String enterpriseId;
/** 企业编码 */
@Excel(name = "企业编码")
private String enterpriseCode;
/** 工厂主键 */
@Excel(name = "工厂主键")
private String siteId;
/** 工厂编码 */
@Excel(name = "工厂编码")
private String siteCode;
/** 线体编码 */
@Excel(name = "线体编码")
private String productionLineCode;
/** 班组长编码 */
@Excel(name = "班组长编码")
private String teamLeaderCode;
/** 定编岗位数量 */
@Excel(name = "定编岗位数量")
private Integer planPostQuantity;
/** 已分配岗位数量 */
@Excel(name = "已分配岗位数量")
private Integer actualPostQuantity;
/** 薪酬类型(0总装1:小时节点筹; */
@Excel(name = "薪酬类型(0总装1:小时节点筹;")
private String salaryType;
/** 班组属性 */
@Excel(name = "班组属性")
private String teamProperties;
/** 应出勤人数 */
@Excel(name = "应出勤人数")
private Integer attendanceQuantity;
/** 已分配人数 */
@Excel(name = "已分配人数")
private Integer assignedQuantity;
/** 班组类型 */
@Excel(name = "班组类型")
private String teamType;
public void setTeamType(String teamType) {
this.teamType = teamType;
}
public String getTeamType() {
return teamType;
}
public void setTeamId(String teamId) {
this.teamId = teamId;
}
public String getTeamId() {
return teamId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgId() {
return orgId;
}
public void setTeamCode(String teamCode) {
this.teamCode = teamCode;
}
public String getTeamCode() {
return teamCode;
}
public void setTeamDesc(String teamDesc) {
this.teamDesc = teamDesc;
}
public String getTeamDesc() {
return teamDesc;
}
public void setTeamDescGlobal(String teamDescGlobal) {
this.teamDescGlobal = teamDescGlobal;
}
public String getTeamDescGlobal() {
return teamDescGlobal;
}
public void setTeamDescExtended(String teamDescExtended) {
this.teamDescExtended = teamDescExtended;
}
public String getTeamDescExtended() {
return teamDescExtended;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Date getCreateDate() {
return createDate;
}
public void setLastUpdateBy(String lastUpdateBy) {
this.lastUpdateBy = lastUpdateBy;
}
public String getLastUpdateBy() {
return lastUpdateBy;
}
public void setLastUpdateDate(Date lastUpdateDate) {
this.lastUpdateDate = lastUpdateDate;
}
public Date getLastUpdateDate() {
return lastUpdateDate;
}
public void setActive(String Active) {
this.Active = Active;
}
public String getActive() {
return Active;
}
public void setEnterpriseId(String enterpriseId) {
this.enterpriseId = enterpriseId;
}
public String getEnterpriseId() {
return enterpriseId;
}
public void setEnterpriseCode(String enterpriseCode) {
this.enterpriseCode = enterpriseCode;
}
public String getEnterpriseCode() {
return enterpriseCode;
}
public void setSiteId(String siteId) {
this.siteId = siteId;
}
public String getSiteId() {
return siteId;
}
public void setSiteCode(String siteCode) {
this.siteCode = siteCode;
}
public String getSiteCode() {
return siteCode;
}
public void setProductionLineCode(String productionLineCode) {
this.productionLineCode = productionLineCode;
}
public String getProductionLineCode() {
return productionLineCode;
}
public void setTeamLeaderCode(String teamLeaderCode) {
this.teamLeaderCode = teamLeaderCode;
}
public String getTeamLeaderCode() {
return teamLeaderCode;
}
public void setPlanPostQuantity(Integer planPostQuantity) {
this.planPostQuantity = planPostQuantity;
}
public Integer getPlanPostQuantity() {
return planPostQuantity;
}
public void setActualPostQuantity(Integer actualPostQuantity) {
this.actualPostQuantity = actualPostQuantity;
}
public Integer getActualPostQuantity() {
return actualPostQuantity;
}
public void setSalaryType(String salaryType) {
this.salaryType = salaryType;
}
public String getSalaryType() {
return salaryType;
}
public void setTeamProperties(String teamProperties) {
this.teamProperties = teamProperties;
}
public String getTeamProperties() {
return teamProperties;
}
public void setAttendanceQuantity(Integer attendanceQuantity) {
this.attendanceQuantity = attendanceQuantity;
}
public Integer getAttendanceQuantity() {
return attendanceQuantity;
}
public void setAssignedQuantity(Integer assignedQuantity) {
this.assignedQuantity = assignedQuantity;
}
public Integer getAssignedQuantity() {
return assignedQuantity;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("teamId", getTeamId())
.append("orgId", getOrgId())
.append("teamCode", getTeamCode())
.append("teamDesc", getTeamDesc())
.append("teamDescGlobal", getTeamDescGlobal())
.append("teamDescExtended", getTeamDescExtended())
.append("createBy", getCreateBy())
.append("createDate", getCreateDate())
.append("lastUpdateBy", getLastUpdateBy())
.append("lastUpdateDate", getLastUpdateDate())
.append("Active", getActive())
.append("enterpriseId", getEnterpriseId())
.append("enterpriseCode", getEnterpriseCode())
.append("siteId", getSiteId())
.append("siteCode", getSiteCode())
.append("productionLineCode", getProductionLineCode())
.append("teamLeaderCode", getTeamLeaderCode())
.append("planPostQuantity", getPlanPostQuantity())
.append("actualPostQuantity", getActualPostQuantity())
.append("salaryType", getSalaryType())
.append("teamProperties", getTeamProperties())
.append("attendanceQuantity", getAttendanceQuantity())
.append("assignedQuantity", getAssignedQuantity())
.append("teamType", getTeamType())
.toString();
}
}

@ -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,126 @@
package com.op.wms.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.op.common.core.annotation.Excel;
import com.op.common.core.web.domain.TreeEntity;
/**
* sys_factory
*
* @author Open Platform
* @date 2023-07-03
*/
public class SysFactory extends TreeEntity {
private static final long serialVersionUID = 1L;
/** 工厂id */
private Long factoryId;
/** 部门名称 */
@Excel(name = "工厂名称")
private String factoryName;
/** 负责人 */
@Excel(name = "负责人")
private String leader;
/** 联系电话 */
@Excel(name = "联系电话")
private String phone;
/** 邮箱 */
@Excel(name = "邮箱")
private String email;
/** 部门状态0正常 */
@Excel(name = "工厂状态")
private String status;
/** 删除标志0代表存在 */
private String delFlag;
/** 工厂编码 */
@Excel(name = "工厂编码")
private String factoryCode;
public void setFactoryId(Long factoryId) {
this.factoryId = factoryId;
}
public Long getFactoryId() {
return factoryId;
}
public void setFactoryName(String factoryName) {
this.factoryName = factoryName;
}
public String getFactoryName() {
return factoryName;
}
public void setLeader(String leader) {
this.leader = leader;
}
public String getLeader() {
return leader;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getPhone() {
return phone;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getDelFlag() {
return delFlag;
}
public String getFactoryCode() {
return factoryCode;
}
public void setFactoryCode(String factoryCode) {
this.factoryCode = factoryCode;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("factoryId", getFactoryId())
.append("parentId", getParentId())
.append("ancestors", getAncestors())
.append("factoryName", getFactoryName())
.append("orderNum", getOrderNum())
.append("leader", getLeader())
.append("phone", getPhone())
.append("email", getEmail())
.append("status", getStatus())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("factoryCode", getFactoryCode())
.toString();
}
}

@ -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…
Cancel
Save