检验项目维护初始化提交(1)

赵嘉伟 4 years ago
parent 582e283785
commit fa58163678

@ -0,0 +1,158 @@
package com.foreverwin.mesnac.meapi.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.meapi.model.Operation;
import com.foreverwin.mesnac.meapi.service.OperationService;
import com.foreverwin.modular.core.util.CommonMethods;
import com.foreverwin.modular.core.util.FrontPage;
import com.foreverwin.modular.core.util.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
*
* @author Robert
* @since 2021-06-03
*/
@RestController
@RequestMapping("/OPERATION")
public class OperationController {
@Autowired
public OperationService operationService;
/**
* id
*
* @param id
* @return
*/
@ResponseBody
@GetMapping("/{id:.+}")
public R getOperationById(@PathVariable String id) {
return R.ok( operationService.getById(id));
}
/**
*
*
* @return
*/
@ResponseBody
@GetMapping("")
public R getOperationList(Operation operation){
List<Operation> result;
QueryWrapper<Operation> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(operation);
result = operationService.list(queryWrapper);
return R.ok(result);
}
/**
*
*
* @param frontPage
* @return
*/
@ResponseBody
@GetMapping("/page")
public R page(FrontPage<Operation> frontPage, Operation operation){
IPage result;
QueryWrapper<Operation> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(operation);
if (frontPage.getGlobalQuery() != null && !"".equals(frontPage.getGlobalQuery().trim())) {
//TODO modify global query
queryWrapper.lambda().and(wrapper -> wrapper
.like(Operation::getHandle, frontPage.getGlobalQuery())
.or().like(Operation::getSite, frontPage.getGlobalQuery())
.or().like(Operation::getOperation, frontPage.getGlobalQuery())
.or().like(Operation::getType, frontPage.getGlobalQuery())
.or().like(Operation::getSpecialRouterBo, frontPage.getGlobalQuery())
.or().like(Operation::getStatusBo, frontPage.getGlobalQuery())
.or().like(Operation::getResourceTypeBo, frontPage.getGlobalQuery())
.or().like(Operation::getRevision, frontPage.getGlobalQuery())
.or().like(Operation::getCurrentRevision, frontPage.getGlobalQuery())
.or().like(Operation::getPcaDashboardMode, frontPage.getGlobalQuery())
.or().like(Operation::getDefaultNcCodeBo, frontPage.getGlobalQuery())
.or().like(Operation::getFailureTrackingConfigBo, frontPage.getGlobalQuery())
.or().like(Operation::getResourceBo, frontPage.getGlobalQuery())
.or().like(Operation::getReportingStep, frontPage.getGlobalQuery())
.or().like(Operation::getPrevSite, frontPage.getGlobalQuery())
.or().like(Operation::getOriginalTransferKey, frontPage.getGlobalQuery())
.or().like(Operation::getSpecialInstruction, frontPage.getGlobalQuery())
.or().like(Operation::getReportingCenterBo, frontPage.getGlobalQuery())
.or().like(Operation::getErpControlKeyBo, frontPage.getGlobalQuery())
.or().like(Operation::getErpWorkCenterBo, frontPage.getGlobalQuery())
);
}
result = operationService.page(frontPage.getPagePlus(), queryWrapper);
return R.ok(result);
}
/**
*
* @param operation
* @return null
*/
@PostMapping
public R save(@RequestBody Operation operation) {
return R.ok(operationService.save(operation));
}
/**
*
* @param operation
* @return null
*/
@PutMapping
public R updateById(@RequestBody Operation operation) {
return R.ok(operationService.updateById(operation));
}
/**
* id
* @param id ID
* @return 0 1
*/
@ResponseBody
@RequestMapping(method = RequestMethod.DELETE, value = "/{id:.+}")
public R removeById(@PathVariable("id") String id){
return R.ok(operationService.removeById(id));
}
/**
*
* @param ids ID
* @return 0 1
*/
@ResponseBody
@RequestMapping(method = RequestMethod.POST, value = "/delete-batch")
public R removeByIds(List<String> ids){
return R.ok(operationService.removeByIds(ids));
}
@ResponseBody
@GetMapping("/getOperationPageList")
public R getItemPageList(FrontPage<Operation> frontPage, Operation operation){
IPage result;
try {
String site = CommonMethods.getSite();
operation.setSite(site);
QueryWrapper<Operation> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(operation);
if (frontPage.getGlobalQuery() != null && !"".equals(frontPage.getGlobalQuery().trim())) {
queryWrapper
.like("O.OPERATION", frontPage.getGlobalQuery())
.or().like("OT.DESCRIPTION", frontPage.getGlobalQuery())
.or().like("RS.SUB_STEP",frontPage.getGlobalQuery());
}
result = operationService.selectPage(frontPage.getPagePlus(), queryWrapper);
} catch (Exception e) {
return R.failed(e.getMessage());
}
return R.ok(result);
}
}

@ -0,0 +1,124 @@
package com.foreverwin.mesnac.meapi.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.meapi.model.RouterSubstep;
import com.foreverwin.mesnac.meapi.service.RouterSubstepService;
import com.foreverwin.modular.core.util.FrontPage;
import com.foreverwin.modular.core.util.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
*
* @author Robert
* @since 2021-06-03
*/
@RestController
@RequestMapping("/ROUTER-SUBSTEP")
public class RouterSubstepController {
@Autowired
public RouterSubstepService routerSubstepService;
/**
* id
*
* @param id
* @return
*/
@ResponseBody
@GetMapping("/{id:.+}")
public R getRouterSubstepById(@PathVariable String id) {
return R.ok( routerSubstepService.getById(id));
}
/**
*
*
* @return
*/
@ResponseBody
@GetMapping("")
public R getRouterSubstepList(RouterSubstep routerSubstep){
List<RouterSubstep> result;
QueryWrapper<RouterSubstep> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(routerSubstep);
result = routerSubstepService.list(queryWrapper);
return R.ok(result);
}
/**
*
*
* @param frontPage
* @return
*/
@ResponseBody
@GetMapping("/page")
public R page(FrontPage<RouterSubstep> frontPage, RouterSubstep routerSubstep){
IPage result;
QueryWrapper<RouterSubstep> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(routerSubstep);
if (frontPage.getGlobalQuery() != null && !"".equals(frontPage.getGlobalQuery().trim())) {
//TODO modify global query
queryWrapper.lambda().and(wrapper -> wrapper
.like(RouterSubstep::getHandle, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getRouterStepBo, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getSubstep, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getSubstepId, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getSubstepGroup, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getSubstepType, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getDescription, frontPage.getGlobalQuery())
.or().like(RouterSubstep::getLongDescription, frontPage.getGlobalQuery())
);
}
result = routerSubstepService.page(frontPage.getPagePlus(), queryWrapper);
return R.ok(result);
}
/**
*
* @param routerSubstep
* @return null
*/
@PostMapping
public R save(@RequestBody RouterSubstep routerSubstep) {
return R.ok(routerSubstepService.save(routerSubstep));
}
/**
*
* @param routerSubstep
* @return null
*/
@PutMapping
public R updateById(@RequestBody RouterSubstep routerSubstep) {
return R.ok(routerSubstepService.updateById(routerSubstep));
}
/**
* id
* @param id ID
* @return 0 1
*/
@ResponseBody
@RequestMapping(method = RequestMethod.DELETE, value = "/{id:.+}")
public R removeById(@PathVariable("id") String id){
return R.ok(routerSubstepService.removeById(id));
}
/**
*
* @param ids ID
* @return 0 1
*/
@ResponseBody
@RequestMapping(method = RequestMethod.POST, value = "/delete-batch")
public R removeByIds(List<String> ids){
return R.ok(routerSubstepService.removeByIds(ids));
}
}

@ -0,0 +1,23 @@
package com.foreverwin.mesnac.meapi.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.meapi.model.Operation;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import java.util.List;
/**
* <p>
* Mapper
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@Repository
public interface OperationMapper extends BaseMapper<Operation> {
List<Operation> selectPage(@Param("locale") String locale, IPage<Operation> page, @Param("ew") Wrapper<Operation> wrapper);
}

@ -0,0 +1,18 @@
package com.foreverwin.mesnac.meapi.mapper;
import com.foreverwin.mesnac.meapi.model.RouterSubstep;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
/**
* <p>
* Mapper
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@Repository
public interface RouterSubstepMapper extends BaseMapper<RouterSubstep> {
}

@ -0,0 +1,423 @@
package com.foreverwin.mesnac.meapi.model;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@TableName("OPERATION")
public class Operation extends Model<Operation> {
private static final long serialVersionUID = 1L;
@TableField("HANDLE")
private String handle;
@TableField("CHANGE_STAMP")
private Long changeStamp;
@TableField("SITE")
private String site;
@TableField("OPERATION")
private String operation;
@TableField("TYPE")
private String type;
@TableField("SPECIAL_ROUTER_BO")
private String specialRouterBo;
@TableField("STATUS_BO")
private String statusBo;
@TableField("RESOURCE_TYPE_BO")
private String resourceTypeBo;
@TableField("REVISION")
private String revision;
@TableField("CURRENT_REVISION")
private String currentRevision;
@TableField("EFF_START_DATE")
private LocalDateTime effStartDate;
@TableField("EFF_END_DATE")
private LocalDateTime effEndDate;
@TableField("CREATED_DATE_TIME")
private LocalDateTime createdDateTime;
@TableField("MODIFIED_DATE_TIME")
private LocalDateTime modifiedDateTime;
@TableField("PCA_DASHBOARD_MODE")
private String pcaDashboardMode;
@TableField("DEFAULT_NC_CODE_BO")
private String defaultNcCodeBo;
@TableField("FAILURE_TRACKING_CONFIG_BO")
private String failureTrackingConfigBo;
@TableField("RESOURCE_BO")
private String resourceBo;
@TableField("MAX_LOOP")
private Long maxLoop;
@TableField("REQUIRED_TIME_IN_PROCESS")
private Long requiredTimeInProcess;
@TableField("REPORTING_STEP")
private String reportingStep;
@TableField("PREV_SITE")
private String prevSite;
@TableField("ORIGINAL_TRANSFER_KEY")
private String originalTransferKey;
@TableField("SPECIAL_INSTRUCTION")
private String specialInstruction;
@TableField("REPORTING_CENTER_BO")
private String reportingCenterBo;
@TableField("ERP_CONTROL_KEY_BO")
private String erpControlKeyBo;
@TableField("ERP_WORK_CENTER_BO")
private String erpWorkCenterBo;
@TableField(exist = false)
private String description;
@TableField(exist = false)
private String stepId;
@TableField(exist = false)
private String item;
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public Long getChangeStamp() {
return changeStamp;
}
public void setChangeStamp(Long changeStamp) {
this.changeStamp = changeStamp;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getSpecialRouterBo() {
return specialRouterBo;
}
public void setSpecialRouterBo(String specialRouterBo) {
this.specialRouterBo = specialRouterBo;
}
public String getStatusBo() {
return statusBo;
}
public void setStatusBo(String statusBo) {
this.statusBo = statusBo;
}
public String getResourceTypeBo() {
return resourceTypeBo;
}
public void setResourceTypeBo(String resourceTypeBo) {
this.resourceTypeBo = resourceTypeBo;
}
public String getRevision() {
return revision;
}
public void setRevision(String revision) {
this.revision = revision;
}
public String getCurrentRevision() {
return currentRevision;
}
public void setCurrentRevision(String currentRevision) {
this.currentRevision = currentRevision;
}
public LocalDateTime getEffStartDate() {
return effStartDate;
}
public void setEffStartDate(LocalDateTime effStartDate) {
this.effStartDate = effStartDate;
}
public LocalDateTime getEffEndDate() {
return effEndDate;
}
public void setEffEndDate(LocalDateTime effEndDate) {
this.effEndDate = effEndDate;
}
public LocalDateTime getCreatedDateTime() {
return createdDateTime;
}
public void setCreatedDateTime(LocalDateTime createdDateTime) {
this.createdDateTime = createdDateTime;
}
public LocalDateTime getModifiedDateTime() {
return modifiedDateTime;
}
public void setModifiedDateTime(LocalDateTime modifiedDateTime) {
this.modifiedDateTime = modifiedDateTime;
}
public String getPcaDashboardMode() {
return pcaDashboardMode;
}
public void setPcaDashboardMode(String pcaDashboardMode) {
this.pcaDashboardMode = pcaDashboardMode;
}
public String getDefaultNcCodeBo() {
return defaultNcCodeBo;
}
public void setDefaultNcCodeBo(String defaultNcCodeBo) {
this.defaultNcCodeBo = defaultNcCodeBo;
}
public String getFailureTrackingConfigBo() {
return failureTrackingConfigBo;
}
public void setFailureTrackingConfigBo(String failureTrackingConfigBo) {
this.failureTrackingConfigBo = failureTrackingConfigBo;
}
public String getResourceBo() {
return resourceBo;
}
public void setResourceBo(String resourceBo) {
this.resourceBo = resourceBo;
}
public Long getMaxLoop() {
return maxLoop;
}
public void setMaxLoop(Long maxLoop) {
this.maxLoop = maxLoop;
}
public Long getRequiredTimeInProcess() {
return requiredTimeInProcess;
}
public void setRequiredTimeInProcess(Long requiredTimeInProcess) {
this.requiredTimeInProcess = requiredTimeInProcess;
}
public String getReportingStep() {
return reportingStep;
}
public void setReportingStep(String reportingStep) {
this.reportingStep = reportingStep;
}
public String getPrevSite() {
return prevSite;
}
public void setPrevSite(String prevSite) {
this.prevSite = prevSite;
}
public String getOriginalTransferKey() {
return originalTransferKey;
}
public void setOriginalTransferKey(String originalTransferKey) {
this.originalTransferKey = originalTransferKey;
}
public String getSpecialInstruction() {
return specialInstruction;
}
public void setSpecialInstruction(String specialInstruction) {
this.specialInstruction = specialInstruction;
}
public String getReportingCenterBo() {
return reportingCenterBo;
}
public void setReportingCenterBo(String reportingCenterBo) {
this.reportingCenterBo = reportingCenterBo;
}
public String getErpControlKeyBo() {
return erpControlKeyBo;
}
public void setErpControlKeyBo(String erpControlKeyBo) {
this.erpControlKeyBo = erpControlKeyBo;
}
public String getErpWorkCenterBo() {
return erpWorkCenterBo;
}
public void setErpWorkCenterBo(String erpWorkCenterBo) {
this.erpWorkCenterBo = erpWorkCenterBo;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStepId() {
return stepId;
}
public void setStepId(String stepId) {
this.stepId = stepId;
}
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public static final String HANDLE = "HANDLE";
public static final String CHANGE_STAMP = "CHANGE_STAMP";
public static final String SITE = "SITE";
public static final String OPERATION = "OPERATION";
public static final String TYPE = "TYPE";
public static final String SPECIAL_ROUTER_BO = "SPECIAL_ROUTER_BO";
public static final String STATUS_BO = "STATUS_BO";
public static final String RESOURCE_TYPE_BO = "RESOURCE_TYPE_BO";
public static final String REVISION = "REVISION";
public static final String CURRENT_REVISION = "CURRENT_REVISION";
public static final String EFF_START_DATE = "EFF_START_DATE";
public static final String EFF_END_DATE = "EFF_END_DATE";
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
public static final String MODIFIED_DATE_TIME = "MODIFIED_DATE_TIME";
public static final String PCA_DASHBOARD_MODE = "PCA_DASHBOARD_MODE";
public static final String DEFAULT_NC_CODE_BO = "DEFAULT_NC_CODE_BO";
public static final String FAILURE_TRACKING_CONFIG_BO = "FAILURE_TRACKING_CONFIG_BO";
public static final String RESOURCE_BO = "RESOURCE_BO";
public static final String MAX_LOOP = "MAX_LOOP";
public static final String REQUIRED_TIME_IN_PROCESS = "REQUIRED_TIME_IN_PROCESS";
public static final String REPORTING_STEP = "REPORTING_STEP";
public static final String PREV_SITE = "PREV_SITE";
public static final String ORIGINAL_TRANSFER_KEY = "ORIGINAL_TRANSFER_KEY";
public static final String SPECIAL_INSTRUCTION = "SPECIAL_INSTRUCTION";
public static final String REPORTING_CENTER_BO = "REPORTING_CENTER_BO";
public static final String ERP_CONTROL_KEY_BO = "ERP_CONTROL_KEY_BO";
public static final String ERP_WORK_CENTER_BO = "ERP_WORK_CENTER_BO";
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "Operation{" +
"handle='" + handle + '\'' +
", changeStamp=" + changeStamp +
", site='" + site + '\'' +
", operation='" + operation + '\'' +
", type='" + type + '\'' +
", specialRouterBo='" + specialRouterBo + '\'' +
", statusBo='" + statusBo + '\'' +
", resourceTypeBo='" + resourceTypeBo + '\'' +
", revision='" + revision + '\'' +
", currentRevision='" + currentRevision + '\'' +
", effStartDate=" + effStartDate +
", effEndDate=" + effEndDate +
", createdDateTime=" + createdDateTime +
", modifiedDateTime=" + modifiedDateTime +
", pcaDashboardMode='" + pcaDashboardMode + '\'' +
", defaultNcCodeBo='" + defaultNcCodeBo + '\'' +
", failureTrackingConfigBo='" + failureTrackingConfigBo + '\'' +
", resourceBo='" + resourceBo + '\'' +
", maxLoop=" + maxLoop +
", requiredTimeInProcess=" + requiredTimeInProcess +
", reportingStep='" + reportingStep + '\'' +
", prevSite='" + prevSite + '\'' +
", originalTransferKey='" + originalTransferKey + '\'' +
", specialInstruction='" + specialInstruction + '\'' +
", reportingCenterBo='" + reportingCenterBo + '\'' +
", erpControlKeyBo='" + erpControlKeyBo + '\'' +
", erpWorkCenterBo='" + erpWorkCenterBo + '\'' +
", description='" + description + '\'' +
'}';
}
}

@ -0,0 +1,167 @@
package com.foreverwin.mesnac.meapi.model;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@TableName("ROUTER_SUBSTEP")
public class RouterSubstep extends Model<RouterSubstep> {
private static final long serialVersionUID = 1L;
@TableField("HANDLE")
private String handle;
@TableField("ROUTER_STEP_BO")
private String routerStepBo;
@TableField("SUBSTEP")
private String substep;
@TableField("SUBSTEP_ID")
private String substepId;
@TableField("SUBSTEP_GROUP")
private String substepGroup;
@TableField("SUBSTEP_TYPE")
private String substepType;
@TableField("TIMER")
private Long timer;
@TableField("SEQUENCE")
private Long sequence;
@TableField("DESCRIPTION")
private String description;
@TableField("LONG_DESCRIPTION")
private String longDescription;
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public String getRouterStepBo() {
return routerStepBo;
}
public void setRouterStepBo(String routerStepBo) {
this.routerStepBo = routerStepBo;
}
public String getSubstep() {
return substep;
}
public void setSubstep(String substep) {
this.substep = substep;
}
public String getSubstepId() {
return substepId;
}
public void setSubstepId(String substepId) {
this.substepId = substepId;
}
public String getSubstepGroup() {
return substepGroup;
}
public void setSubstepGroup(String substepGroup) {
this.substepGroup = substepGroup;
}
public String getSubstepType() {
return substepType;
}
public void setSubstepType(String substepType) {
this.substepType = substepType;
}
public Long getTimer() {
return timer;
}
public void setTimer(Long timer) {
this.timer = timer;
}
public Long getSequence() {
return sequence;
}
public void setSequence(Long sequence) {
this.sequence = sequence;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getLongDescription() {
return longDescription;
}
public void setLongDescription(String longDescription) {
this.longDescription = longDescription;
}
public static final String HANDLE = "HANDLE";
public static final String ROUTER_STEP_BO = "ROUTER_STEP_BO";
public static final String SUBSTEP = "SUBSTEP";
public static final String SUBSTEP_ID = "SUBSTEP_ID";
public static final String SUBSTEP_GROUP = "SUBSTEP_GROUP";
public static final String SUBSTEP_TYPE = "SUBSTEP_TYPE";
public static final String TIMER = "TIMER";
public static final String SEQUENCE = "SEQUENCE";
public static final String DESCRIPTION = "DESCRIPTION";
public static final String LONG_DESCRIPTION = "LONG_DESCRIPTION";
@Override
protected Serializable pkVal() {
return this.handle;
}
@Override
public String toString() {
return "RouterSubstep{" +
"handle = " + handle +
", routerStepBo = " + routerStepBo +
", substep = " + substep +
", substepId = " + substepId +
", substepGroup = " + substepGroup +
", substepType = " + substepType +
", timer = " + timer +
", sequence = " + sequence +
", description = " + description +
", longDescription = " + longDescription +
"}";
}
}

@ -0,0 +1,29 @@
package com.foreverwin.mesnac.meapi.service;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.mesnac.meapi.model.Operation;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
public interface OperationService extends IService<Operation> {
/**
*
* @param page
* @return
*/
IPage<Operation> selectPage(Page<Operation> page, QueryWrapper<Operation> operation);
List<Operation> selectList(Operation operation);
}

@ -0,0 +1,29 @@
package com.foreverwin.mesnac.meapi.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.meapi.model.RouterSubstep;
import com.baomidou.mybatisplus.extension.service.IService;
import com.foreverwin.modular.core.util.FrontPage;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
public interface RouterSubstepService extends IService<RouterSubstep> {
/**
*
* @param frontPage
* @return
*/
IPage<RouterSubstep> selectPage(FrontPage<RouterSubstep> frontPage, RouterSubstep routerSubstep);
List<RouterSubstep> selectList(RouterSubstep routerSubstep);
}

@ -0,0 +1,50 @@
package com.foreverwin.mesnac.meapi.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.foreverwin.mesnac.meapi.mapper.OperationMapper;
import com.foreverwin.mesnac.meapi.model.Operation;
import com.foreverwin.mesnac.meapi.service.OperationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
import java.util.Locale;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class OperationServiceImpl extends ServiceImpl<OperationMapper, Operation> implements OperationService {
@Autowired
private OperationMapper operationMapper;
@Override
public IPage<Operation> selectPage(Page<Operation> page, QueryWrapper<Operation> queryWrapper) {
Locale locale = LocaleContextHolder.getLocale();
page.setRecords(this.operationMapper.selectPage(locale.getLanguage(),page,queryWrapper));
return page;
}
@Override
public List<Operation> selectList(Operation operation) {
QueryWrapper<Operation> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(operation);
return super.list(queryWrapper);
}
}

@ -0,0 +1,46 @@
package com.foreverwin.mesnac.meapi.service.impl;
import com.foreverwin.modular.core.util.FrontPage;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.foreverwin.mesnac.meapi.model.RouterSubstep;
import com.foreverwin.mesnac.meapi.mapper.RouterSubstepMapper;
import com.foreverwin.mesnac.meapi.service.RouterSubstepService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* <p>
*
* </p>
*
* @author Robert
* @since 2021-06-03
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class RouterSubstepServiceImpl extends ServiceImpl<RouterSubstepMapper, RouterSubstep> implements RouterSubstepService {
@Autowired
private RouterSubstepMapper routerSubstepMapper;
@Override
public IPage<RouterSubstep> selectPage(FrontPage<RouterSubstep> frontPage, RouterSubstep routerSubstep) {
QueryWrapper<RouterSubstep> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(routerSubstep);
return super.page(frontPage.getPagePlus(), queryWrapper);
}
@Override
public List<RouterSubstep> selectList(RouterSubstep routerSubstep) {
QueryWrapper<RouterSubstep> queryWrapper = new QueryWrapper<>();
queryWrapper.setEntity(routerSubstep);
return super.list(queryWrapper);
}
}

@ -0,0 +1,622 @@
<?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.foreverwin.mesnac.meapi.mapper.OperationMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.meapi.model.Operation">
<result column="HANDLE" property="handle" />
<result column="CHANGE_STAMP" property="changeStamp" />
<result column="SITE" property="site" />
<result column="OPERATION" property="operation" />
<result column="TYPE" property="type" />
<result column="SPECIAL_ROUTER_BO" property="specialRouterBo" />
<result column="STATUS_BO" property="statusBo" />
<result column="RESOURCE_TYPE_BO" property="resourceTypeBo" />
<result column="REVISION" property="revision" />
<result column="CURRENT_REVISION" property="currentRevision" />
<result column="EFF_START_DATE" property="effStartDate" />
<result column="EFF_END_DATE" property="effEndDate" />
<result column="CREATED_DATE_TIME" property="createdDateTime" />
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
<result column="PCA_DASHBOARD_MODE" property="pcaDashboardMode" />
<result column="DEFAULT_NC_CODE_BO" property="defaultNcCodeBo" />
<result column="FAILURE_TRACKING_CONFIG_BO" property="failureTrackingConfigBo" />
<result column="RESOURCE_BO" property="resourceBo" />
<result column="MAX_LOOP" property="maxLoop" />
<result column="REQUIRED_TIME_IN_PROCESS" property="requiredTimeInProcess" />
<result column="REPORTING_STEP" property="reportingStep" />
<result column="PREV_SITE" property="prevSite" />
<result column="ORIGINAL_TRANSFER_KEY" property="originalTransferKey" />
<result column="SPECIAL_INSTRUCTION" property="specialInstruction" />
<result column="REPORTING_CENTER_BO" property="reportingCenterBo" />
<result column="ERP_CONTROL_KEY_BO" property="erpControlKeyBo" />
<result column="ERP_WORK_CENTER_BO" property="erpWorkCenterBo" />
<result column="DESCRIPTION" property="description"/>
<result column="STEP_ID" property="stepId"/>
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, CHANGE_STAMP, SITE, OPERATION, TYPE, SPECIAL_ROUTER_BO, STATUS_BO, RESOURCE_TYPE_BO, REVISION, CURRENT_REVISION, EFF_START_DATE, EFF_END_DATE, CREATED_DATE_TIME, MODIFIED_DATE_TIME, PCA_DASHBOARD_MODE, DEFAULT_NC_CODE_BO, FAILURE_TRACKING_CONFIG_BO, RESOURCE_BO, MAX_LOOP, REQUIRED_TIME_IN_PROCESS, REPORTING_STEP, PREV_SITE, ORIGINAL_TRANSFER_KEY, SPECIAL_INSTRUCTION, REPORTING_CENTER_BO, ERP_CONTROL_KEY_BO, ERP_WORK_CENTER_BO
</sql>
<sql id="FULL_Column_List">
O.HANDLE, O.CHANGE_STAMP,O.SITE,O.OPERATION, O.TYPE,
O.SPECIAL_ROUTER_BO, O.STATUS_BO, O.RESOURCE_TYPE_BO,
O.REVISION, O.CURRENT_REVISION, O.EFF_START_DATE, O.EFF_END_DATE,
O.CREATED_DATE_TIME, O.MODIFIED_DATE_TIME, O.PCA_DASHBOARD_MODE,
O.DEFAULT_NC_CODE_BO, O.FAILURE_TRACKING_CONFIG_BO, O.RESOURCE_BO,
O.MAX_LOOP, O.REQUIRED_TIME_IN_PROCESS, O.REPORTING_STEP, O.PREV_SITE,
O.ORIGINAL_TRANSFER_KEY, O.SPECIAL_INSTRUCTION, O.REPORTING_CENTER_BO,
O.ERP_CONTROL_KEY_BO, O.ERP_WORK_CENTER_BO,OT.DESCRIPTION,RS.STEP_ID
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM OPERATION
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM OPERATION
<where>
<if test="ew.entity.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT DISTINCT o.OPERATION,rs.STEP_ID,OT.DESCRIPTION
FROM OPERATION O
LEFT JOIN OPERATION_T OT ON O.HANDLE = OT.OPERATION_BO AND OT.LOCALE = #{locale}
-- LEFT JOIN ROUTER_OPERATION RO ON RO.OPERATION_BO = (SUBSTR(O.HANDLE,1,(SELECT INSTR(O.HANDLE , ',', -1, 1)
-- FROM dual)-1) || ',#'
-- )
-- LEFT JOIN ROUTER_STEP RS ON RS.HANDLE = RO.ROUTER_STEP_BO
INNER JOIN ROUTER_STEP rs ON o.OPERATION = rs.DESCRIPTION
INNER JOIN ROUTER r ON r.HANDLE = rs.ROUTER_BO
INNER JOIN SHOP_ORDER so ON so.PLANNED_ROUTER_BO = r.HANDLE
INNER JOIN ITEM i ON i.HANDLE = so.PLANNED_ITEM_BO
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND O.CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND O.SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND O.OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND O.TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND O.SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND O.STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND O.RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND O.REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND O.CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND O.EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND O.EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND O.CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND O.MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND O.PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND O.DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND O.FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND O.RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND O.MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND O.REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND O.REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND O.PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND O.ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND O.SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND O.REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND O.ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND O.ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
<if test="ew.entity.item!=null"> AND i.item=#{ew.entity.item}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
AND ${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
AND ${ew.sqlSegment}
</if>
ORDER BY RS.STEP_ID
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.meapi.model.Operation">
INSERT INTO OPERATION
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="changeStamp!=null">CHANGE_STAMP,</if>
<if test="site!=null">SITE,</if>
<if test="operation!=null">OPERATION,</if>
<if test="type!=null">TYPE,</if>
<if test="specialRouterBo!=null">SPECIAL_ROUTER_BO,</if>
<if test="statusBo!=null">STATUS_BO,</if>
<if test="resourceTypeBo!=null">RESOURCE_TYPE_BO,</if>
<if test="revision!=null">REVISION,</if>
<if test="currentRevision!=null">CURRENT_REVISION,</if>
<if test="effStartDate!=null">EFF_START_DATE,</if>
<if test="effEndDate!=null">EFF_END_DATE,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
<if test="pcaDashboardMode!=null">PCA_DASHBOARD_MODE,</if>
<if test="defaultNcCodeBo!=null">DEFAULT_NC_CODE_BO,</if>
<if test="failureTrackingConfigBo!=null">FAILURE_TRACKING_CONFIG_BO,</if>
<if test="resourceBo!=null">RESOURCE_BO,</if>
<if test="maxLoop!=null">MAX_LOOP,</if>
<if test="requiredTimeInProcess!=null">REQUIRED_TIME_IN_PROCESS,</if>
<if test="reportingStep!=null">REPORTING_STEP,</if>
<if test="prevSite!=null">PREV_SITE,</if>
<if test="originalTransferKey!=null">ORIGINAL_TRANSFER_KEY,</if>
<if test="specialInstruction!=null">SPECIAL_INSTRUCTION,</if>
<if test="reportingCenterBo!=null">REPORTING_CENTER_BO,</if>
<if test="erpControlKeyBo!=null">ERP_CONTROL_KEY_BO,</if>
<if test="erpWorkCenterBo!=null">ERP_WORK_CENTER_BO,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="changeStamp!=null">#{changeStamp},</if>
<if test="site!=null">#{site},</if>
<if test="operation!=null">#{operation},</if>
<if test="type!=null">#{type},</if>
<if test="specialRouterBo!=null">#{specialRouterBo},</if>
<if test="statusBo!=null">#{statusBo},</if>
<if test="resourceTypeBo!=null">#{resourceTypeBo},</if>
<if test="revision!=null">#{revision},</if>
<if test="currentRevision!=null">#{currentRevision},</if>
<if test="effStartDate!=null">#{effStartDate},</if>
<if test="effEndDate!=null">#{effEndDate},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
<if test="pcaDashboardMode!=null">#{pcaDashboardMode},</if>
<if test="defaultNcCodeBo!=null">#{defaultNcCodeBo},</if>
<if test="failureTrackingConfigBo!=null">#{failureTrackingConfigBo},</if>
<if test="resourceBo!=null">#{resourceBo},</if>
<if test="maxLoop!=null">#{maxLoop},</if>
<if test="requiredTimeInProcess!=null">#{requiredTimeInProcess},</if>
<if test="reportingStep!=null">#{reportingStep},</if>
<if test="prevSite!=null">#{prevSite},</if>
<if test="originalTransferKey!=null">#{originalTransferKey},</if>
<if test="specialInstruction!=null">#{specialInstruction},</if>
<if test="reportingCenterBo!=null">#{reportingCenterBo},</if>
<if test="erpControlKeyBo!=null">#{erpControlKeyBo},</if>
<if test="erpWorkCenterBo!=null">#{erpWorkCenterBo},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.meapi.model.Operation">
INSERT INTO OPERATION
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{changeStamp},
#{site},
#{operation},
#{type},
#{specialRouterBo},
#{statusBo},
#{resourceTypeBo},
#{revision},
#{currentRevision},
#{effStartDate},
#{effEndDate},
#{createdDateTime},
#{modifiedDateTime},
#{pcaDashboardMode},
#{defaultNcCodeBo},
#{failureTrackingConfigBo},
#{resourceBo},
#{maxLoop},
#{requiredTimeInProcess},
#{reportingStep},
#{prevSite},
#{originalTransferKey},
#{specialInstruction},
#{reportingCenterBo},
#{erpControlKeyBo},
#{erpWorkCenterBo},
</trim>
</insert>
<update id="update">
UPDATE OPERATION <trim prefix="SET" suffixOverrides=",">
<if test="et.handle!=null">HANDLE=#{et.handle},</if>
<if test="et.changeStamp!=null">CHANGE_STAMP=#{et.changeStamp},</if>
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
<if test="et.type!=null">TYPE=#{et.type},</if>
<if test="et.specialRouterBo!=null">SPECIAL_ROUTER_BO=#{et.specialRouterBo},</if>
<if test="et.statusBo!=null">STATUS_BO=#{et.statusBo},</if>
<if test="et.resourceTypeBo!=null">RESOURCE_TYPE_BO=#{et.resourceTypeBo},</if>
<if test="et.revision!=null">REVISION=#{et.revision},</if>
<if test="et.currentRevision!=null">CURRENT_REVISION=#{et.currentRevision},</if>
<if test="et.effStartDate!=null">EFF_START_DATE=#{et.effStartDate},</if>
<if test="et.effEndDate!=null">EFF_END_DATE=#{et.effEndDate},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.pcaDashboardMode!=null">PCA_DASHBOARD_MODE=#{et.pcaDashboardMode},</if>
<if test="et.defaultNcCodeBo!=null">DEFAULT_NC_CODE_BO=#{et.defaultNcCodeBo},</if>
<if test="et.failureTrackingConfigBo!=null">FAILURE_TRACKING_CONFIG_BO=#{et.failureTrackingConfigBo},</if>
<if test="et.resourceBo!=null">RESOURCE_BO=#{et.resourceBo},</if>
<if test="et.maxLoop!=null">MAX_LOOP=#{et.maxLoop},</if>
<if test="et.requiredTimeInProcess!=null">REQUIRED_TIME_IN_PROCESS=#{et.requiredTimeInProcess},</if>
<if test="et.reportingStep!=null">REPORTING_STEP=#{et.reportingStep},</if>
<if test="et.prevSite!=null">PREV_SITE=#{et.prevSite},</if>
<if test="et.originalTransferKey!=null">ORIGINAL_TRANSFER_KEY=#{et.originalTransferKey},</if>
<if test="et.specialInstruction!=null">SPECIAL_INSTRUCTION=#{et.specialInstruction},</if>
<if test="et.reportingCenterBo!=null">REPORTING_CENTER_BO=#{et.reportingCenterBo},</if>
<if test="et.erpControlKeyBo!=null">ERP_CONTROL_KEY_BO=#{et.erpControlKeyBo},</if>
<if test="et.erpWorkCenterBo!=null">ERP_WORK_CENTER_BO=#{et.erpWorkCenterBo},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteByMap">
DELETE FROM OPERATION
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM OPERATION
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.changeStamp!=null"> AND CHANGE_STAMP=#{ew.entity.changeStamp}</if>
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
<if test="ew.entity.specialRouterBo!=null"> AND SPECIAL_ROUTER_BO=#{ew.entity.specialRouterBo}</if>
<if test="ew.entity.statusBo!=null"> AND STATUS_BO=#{ew.entity.statusBo}</if>
<if test="ew.entity.resourceTypeBo!=null"> AND RESOURCE_TYPE_BO=#{ew.entity.resourceTypeBo}</if>
<if test="ew.entity.revision!=null"> AND REVISION=#{ew.entity.revision}</if>
<if test="ew.entity.currentRevision!=null"> AND CURRENT_REVISION=#{ew.entity.currentRevision}</if>
<if test="ew.entity.effStartDate!=null"> AND EFF_START_DATE=#{ew.entity.effStartDate}</if>
<if test="ew.entity.effEndDate!=null"> AND EFF_END_DATE=#{ew.entity.effEndDate}</if>
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test="ew.entity.pcaDashboardMode!=null"> AND PCA_DASHBOARD_MODE=#{ew.entity.pcaDashboardMode}</if>
<if test="ew.entity.defaultNcCodeBo!=null"> AND DEFAULT_NC_CODE_BO=#{ew.entity.defaultNcCodeBo}</if>
<if test="ew.entity.failureTrackingConfigBo!=null"> AND FAILURE_TRACKING_CONFIG_BO=#{ew.entity.failureTrackingConfigBo}</if>
<if test="ew.entity.resourceBo!=null"> AND RESOURCE_BO=#{ew.entity.resourceBo}</if>
<if test="ew.entity.maxLoop!=null"> AND MAX_LOOP=#{ew.entity.maxLoop}</if>
<if test="ew.entity.requiredTimeInProcess!=null"> AND REQUIRED_TIME_IN_PROCESS=#{ew.entity.requiredTimeInProcess}</if>
<if test="ew.entity.reportingStep!=null"> AND REPORTING_STEP=#{ew.entity.reportingStep}</if>
<if test="ew.entity.prevSite!=null"> AND PREV_SITE=#{ew.entity.prevSite}</if>
<if test="ew.entity.originalTransferKey!=null"> AND ORIGINAL_TRANSFER_KEY=#{ew.entity.originalTransferKey}</if>
<if test="ew.entity.specialInstruction!=null"> AND SPECIAL_INSTRUCTION=#{ew.entity.specialInstruction}</if>
<if test="ew.entity.reportingCenterBo!=null"> AND REPORTING_CENTER_BO=#{ew.entity.reportingCenterBo}</if>
<if test="ew.entity.erpControlKeyBo!=null"> AND ERP_CONTROL_KEY_BO=#{ew.entity.erpControlKeyBo}</if>
<if test="ew.entity.erpWorkCenterBo!=null"> AND ERP_WORK_CENTER_BO=#{ew.entity.erpWorkCenterBo}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
</mapper>

@ -0,0 +1,360 @@
<?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.foreverwin.mesnac.meapi.mapper.RouterSubstepMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.meapi.model.RouterSubstep">
<result column="HANDLE" property="handle" />
<result column="ROUTER_STEP_BO" property="routerStepBo" />
<result column="SUBSTEP" property="substep" />
<result column="SUBSTEP_ID" property="substepId" />
<result column="SUBSTEP_GROUP" property="substepGroup" />
<result column="SUBSTEP_TYPE" property="substepType" />
<result column="TIMER" property="timer" />
<result column="SEQUENCE" property="sequence" />
<result column="DESCRIPTION" property="description" />
<result column="LONG_DESCRIPTION" property="longDescription" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, ROUTER_STEP_BO, SUBSTEP, SUBSTEP_ID, SUBSTEP_GROUP, SUBSTEP_TYPE, TIMER, SEQUENCE, DESCRIPTION, LONG_DESCRIPTION
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectByMap" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM ROUTER_SUBSTEP
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM ROUTER_SUBSTEP
<where>
<if test="ew.entity.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMaps" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.meapi.model.RouterSubstep">
INSERT INTO ROUTER_SUBSTEP
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="routerStepBo!=null">ROUTER_STEP_BO,</if>
<if test="substep!=null">SUBSTEP,</if>
<if test="substepId!=null">SUBSTEP_ID,</if>
<if test="substepGroup!=null">SUBSTEP_GROUP,</if>
<if test="substepType!=null">SUBSTEP_TYPE,</if>
<if test="timer!=null">TIMER,</if>
<if test="sequence!=null">SEQUENCE,</if>
<if test="description!=null">DESCRIPTION,</if>
<if test="longDescription!=null">LONG_DESCRIPTION,</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="routerStepBo!=null">#{routerStepBo},</if>
<if test="substep!=null">#{substep},</if>
<if test="substepId!=null">#{substepId},</if>
<if test="substepGroup!=null">#{substepGroup},</if>
<if test="substepType!=null">#{substepType},</if>
<if test="timer!=null">#{timer},</if>
<if test="sequence!=null">#{sequence},</if>
<if test="description!=null">#{description},</if>
<if test="longDescription!=null">#{longDescription},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.meapi.model.RouterSubstep">
INSERT INTO ROUTER_SUBSTEP
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{routerStepBo},
#{substep},
#{substepId},
#{substepGroup},
#{substepType},
#{timer},
#{sequence},
#{description},
#{longDescription},
</trim>
</insert>
<update id="update">
UPDATE ROUTER_SUBSTEP <trim prefix="SET" suffixOverrides=",">
<if test="et.handle!=null">HANDLE=#{et.handle},</if>
<if test="et.routerStepBo!=null">ROUTER_STEP_BO=#{et.routerStepBo},</if>
<if test="et.substep!=null">SUBSTEP=#{et.substep},</if>
<if test="et.substepId!=null">SUBSTEP_ID=#{et.substepId},</if>
<if test="et.substepGroup!=null">SUBSTEP_GROUP=#{et.substepGroup},</if>
<if test="et.substepType!=null">SUBSTEP_TYPE=#{et.substepType},</if>
<if test="et.timer!=null">TIMER=#{et.timer},</if>
<if test="et.sequence!=null">SEQUENCE=#{et.sequence},</if>
<if test="et.description!=null">DESCRIPTION=#{et.description},</if>
<if test="et.longDescription!=null">LONG_DESCRIPTION=#{et.longDescription},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteByMap">
DELETE FROM ROUTER_SUBSTEP
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM ROUTER_SUBSTEP
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.routerStepBo!=null"> AND ROUTER_STEP_BO=#{ew.entity.routerStepBo}</if>
<if test="ew.entity.substep!=null"> AND SUBSTEP=#{ew.entity.substep}</if>
<if test="ew.entity.substepId!=null"> AND SUBSTEP_ID=#{ew.entity.substepId}</if>
<if test="ew.entity.substepGroup!=null"> AND SUBSTEP_GROUP=#{ew.entity.substepGroup}</if>
<if test="ew.entity.substepType!=null"> AND SUBSTEP_TYPE=#{ew.entity.substepType}</if>
<if test="ew.entity.timer!=null"> AND TIMER=#{ew.entity.timer}</if>
<if test="ew.entity.sequence!=null"> AND SEQUENCE=#{ew.entity.sequence}</if>
<if test="ew.entity.description!=null"> AND DESCRIPTION=#{ew.entity.description}</if>
<if test="ew.entity.longDescription!=null"> AND LONG_DESCRIPTION=#{ew.entity.longDescription}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
</mapper>

@ -16,8 +16,30 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.foreverwin.mesnac</groupId>
<artifactId>common</artifactId>
</dependency>
<dependency>
<groupId>com.foreverwin.mesnac</groupId>
<artifactId>meapi</artifactId>
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.15</version>
</dependency>
<!---->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
</dependencies>
</project>
Loading…
Cancel
Save