From 1766eae0573123974d1914bdfbc1885f4fb8cbfb Mon Sep 17 00:00:00 2001
From: lgh0010 <1746689524@qq.com>
Date: Thu, 18 Nov 2021 11:09:52 +0800
Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E8=AE=AF=E6=97=A5=E5=BF=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../controller/CommunicationContrallor.java | 51 ++++++
.../basic/params/CommunicationQueryParam.java | 31 ++++
.../basic/service/CommunicationService.java | 32 ++++
.../impl/CommunicationServiceImpl.java | 51 ++++++
.../com/mt/wms/basic/vo/CommunicationVo.java | 61 +++++++
.../com/mt/wms/core/dal/entity/AlarmBase.java | 2 +-
.../com/mt/wms/core/dal/entity/AlarmInfo.java | 2 +-
.../wms/core/dal/entity/CommunicationLog.java | 125 +++++++++++++++
.../com/mt/wms/core/dal/entity/CurrTask.java | 14 +-
.../mt/wms/core/dal/entity/CurrTaskDet.java | 2 +-
.../com/mt/wms/core/dal/entity/Factory.java | 2 +-
.../mt/wms/core/dal/entity/InStockInfo.java | 2 +-
.../wms/core/dal/entity/InStockInfoHis.java | 2 +-
.../com/mt/wms/core/dal/entity/KilnInfo.java | 2 +-
.../com/mt/wms/core/dal/entity/Location.java | 2 +-
.../com/mt/wms/core/dal/entity/LoginLog.java | 2 +-
.../mt/wms/core/dal/entity/LoginSession.java | 2 +-
.../com/mt/wms/core/dal/entity/OrderInfo.java | 2 +-
.../mt/wms/core/dal/entity/OrderInfoHis.java | 14 +-
.../com/mt/wms/core/dal/entity/ParBase.java | 2 +-
.../mt/wms/core/dal/entity/ParEleValue.java | 2 +-
.../mt/wms/core/dal/entity/ParGasValue.java | 2 +-
.../com/mt/wms/core/dal/entity/ParInfo.java | 2 +-
.../wms/core/dal/entity/ParRotSpeedValue.java | 2 +-
.../mt/wms/core/dal/entity/ParTemValue.java | 2 +-
.../mt/wms/core/dal/entity/ProductAttr.java | 2 +-
.../wms/core/dal/entity/ProductLibrary.java | 2 +-
.../com/mt/wms/core/dal/entity/Resource.java | 2 +-
.../com/mt/wms/core/dal/entity/SmsCode.java | 2 +-
.../com/mt/wms/core/dal/entity/SmsScene.java | 2 +-
.../com/mt/wms/core/dal/entity/SmsSend.java | 2 +-
.../com/mt/wms/core/dal/entity/SmsSign.java | 2 +-
.../mt/wms/core/dal/entity/SmsTemplate.java | 2 +-
.../mt/wms/core/dal/entity/SysDictData.java | 2 +-
.../mt/wms/core/dal/entity/SysDictType.java | 2 +-
.../com/mt/wms/core/dal/entity/SysFile.java | 2 +-
.../mt/wms/core/dal/entity/SysFileType.java | 2 +-
.../com/mt/wms/core/dal/entity/SysMenu.java | 2 +-
.../wms/core/dal/entity/SysMenuResource.java | 2 +-
.../com/mt/wms/core/dal/entity/SysOrg.java | 2 +-
.../com/mt/wms/core/dal/entity/SysPost.java | 2 +-
.../com/mt/wms/core/dal/entity/SysRole.java | 2 +-
.../mt/wms/core/dal/entity/SysRoleMenu.java | 2 +-
.../com/mt/wms/core/dal/entity/SysUser.java | 2 +-
.../mt/wms/core/dal/entity/SysUserPost.java | 2 +-
.../mt/wms/core/dal/entity/SysUserRole.java | 2 +-
.../mt/wms/core/dal/entity/TaskDetHis.java | 14 +-
.../com/mt/wms/core/dal/entity/TaskHis.java | 14 +-
.../mt/wms/core/dal/entity/TaskSourceLog.java | 2 +-
.../com/mt/wms/core/dal/entity/TrayInfo.java | 2 +-
.../mt/wms/core/dal/entity/VehicleInfo.java | 2 +-
.../com/mt/wms/core/dal/entity/Warehouse.java | 2 +-
.../com/mt/wms/core/dal/entity/WcsTask.java | 149 ++++++++++++++++++
.../mt/wms/core/dal/entity/WcsTaskLog.java | 133 ++++++++++++++++
.../dal/entity/WechatTemplateMessage.java | 2 +-
.../wms/core/dal/mapper/AlarmBaseMapper.java | 2 +-
.../wms/core/dal/mapper/AlarmInfoMapper.java | 2 +-
.../dal/mapper/CommunicationLogMapper.java | 16 ++
.../dal/mapper/CommunicationLogMapper.xml | 25 +++
.../core/dal/mapper/CurrTaskDetMapper.java | 2 +-
.../wms/core/dal/mapper/CurrTaskMapper.java | 2 +-
.../mt/wms/core/dal/mapper/CurrTaskMapper.xml | 6 +-
.../mt/wms/core/dal/mapper/FactoryMapper.java | 2 +-
.../core/dal/mapper/InStockInfoHisMapper.java | 2 +-
.../core/dal/mapper/InStockInfoMapper.java | 2 +-
.../wms/core/dal/mapper/KilnInfoMapper.java | 2 +-
.../wms/core/dal/mapper/LocationMapper.java | 2 +-
.../wms/core/dal/mapper/LoginLogMapper.java | 2 +-
.../core/dal/mapper/LoginSessionMapper.java | 2 +-
.../core/dal/mapper/OrderInfoHisMapper.java | 4 +-
.../core/dal/mapper/OrderInfoHisMapper.xml | 6 +-
.../wms/core/dal/mapper/OrderInfoMapper.java | 2 +-
.../mt/wms/core/dal/mapper/ParBaseMapper.java | 2 +-
.../core/dal/mapper/ParEleValueMapper.java | 2 +-
.../core/dal/mapper/ParGasValueMapper.java | 2 +-
.../mt/wms/core/dal/mapper/ParInfoMapper.java | 2 +-
.../dal/mapper/ParRotSpeedValueMapper.java | 2 +-
.../core/dal/mapper/ParTemValueMapper.java | 2 +-
.../core/dal/mapper/ProductAttrMapper.java | 2 +-
.../core/dal/mapper/ProductLibraryMapper.java | 2 +-
.../wms/core/dal/mapper/ResourceMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SmsCodeMapper.java | 2 +-
.../wms/core/dal/mapper/SmsSceneMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SmsSendMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SmsSignMapper.java | 2 +-
.../core/dal/mapper/SmsTemplateMapper.java | 2 +-
.../core/dal/mapper/SysDictDataMapper.java | 2 +-
.../core/dal/mapper/SysDictTypeMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysFileMapper.java | 2 +-
.../core/dal/mapper/SysFileTypeMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysMenuMapper.java | 2 +-
.../dal/mapper/SysMenuResourceMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysOrgMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysPostMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysRoleMapper.java | 2 +-
.../core/dal/mapper/SysRoleMenuMapper.java | 2 +-
.../mt/wms/core/dal/mapper/SysUserMapper.java | 2 +-
.../core/dal/mapper/SysUserPostMapper.java | 2 +-
.../core/dal/mapper/SysUserRoleMapper.java | 2 +-
.../wms/core/dal/mapper/TaskDetHisMapper.java | 2 +-
.../mt/wms/core/dal/mapper/TaskHisMapper.java | 4 +-
.../mt/wms/core/dal/mapper/TaskHisMapper.xml | 50 +++---
.../core/dal/mapper/TaskSourceLogMapper.java | 2 +-
.../wms/core/dal/mapper/TrayInfoMapper.java | 2 +-
.../core/dal/mapper/VehicleInfoMapper.java | 2 +-
.../wms/core/dal/mapper/WarehouseMapper.java | 2 +-
.../wms/core/dal/mapper/WcsTaskLogMapper.java | 16 ++
.../wms/core/dal/mapper/WcsTaskLogMapper.xml | 26 +++
.../mt/wms/core/dal/mapper/WcsTaskMapper.java | 16 ++
.../mt/wms/core/dal/mapper/WcsTaskMapper.xml | 28 ++++
.../mapper/WechatTemplateMessageMapper.java | 2 +-
.../core/dal/service/AlarmBaseServiceBiz.java | 2 +-
.../core/dal/service/AlarmInfoServiceBiz.java | 2 +-
.../service/CommunicationLogServiceBiz.java | 16 ++
.../dal/service/CurrTaskDetServiceBiz.java | 2 +-
.../core/dal/service/CurrTaskServiceBiz.java | 2 +-
.../core/dal/service/FactoryServiceBiz.java | 2 +-
.../dal/service/InStockInfoHisServiceBiz.java | 2 +-
.../dal/service/InStockInfoServiceBiz.java | 2 +-
.../core/dal/service/KilnInfoServiceBiz.java | 2 +-
.../core/dal/service/LocationServiceBiz.java | 2 +-
.../core/dal/service/LoginLogServiceBiz.java | 2 +-
.../dal/service/LoginSessionServiceBiz.java | 2 +-
.../dal/service/OrderInfoHisServiceBiz.java | 4 +-
.../core/dal/service/OrderInfoServiceBiz.java | 2 +-
.../core/dal/service/ParBaseServiceBiz.java | 2 +-
.../dal/service/ParEleValueServiceBiz.java | 2 +-
.../dal/service/ParGasValueServiceBiz.java | 2 +-
.../core/dal/service/ParInfoServiceBiz.java | 2 +-
.../service/ParRotSpeedValueServiceBiz.java | 2 +-
.../dal/service/ParTemValueServiceBiz.java | 2 +-
.../dal/service/ProductAttrServiceBiz.java | 2 +-
.../dal/service/ProductLibraryServiceBiz.java | 2 +-
.../core/dal/service/ResourceServiceBiz.java | 2 +-
.../core/dal/service/SmsCodeServiceBiz.java | 2 +-
.../core/dal/service/SmsSceneServiceBiz.java | 2 +-
.../core/dal/service/SmsSendServiceBiz.java | 2 +-
.../core/dal/service/SmsSignServiceBiz.java | 2 +-
.../dal/service/SmsTemplateServiceBiz.java | 2 +-
.../dal/service/SysDictDataServiceBiz.java | 2 +-
.../dal/service/SysDictTypeServiceBiz.java | 2 +-
.../core/dal/service/SysFileServiceBiz.java | 2 +-
.../dal/service/SysFileTypeServiceBiz.java | 2 +-
.../service/SysMenuResourceServiceBiz.java | 2 +-
.../core/dal/service/SysMenuServiceBiz.java | 2 +-
.../core/dal/service/SysOrgServiceBiz.java | 2 +-
.../core/dal/service/SysPostServiceBiz.java | 2 +-
.../dal/service/SysRoleMenuServiceBiz.java | 2 +-
.../core/dal/service/SysRoleServiceBiz.java | 2 +-
.../dal/service/SysUserPostServiceBiz.java | 2 +-
.../dal/service/SysUserRoleServiceBiz.java | 2 +-
.../core/dal/service/SysUserServiceBiz.java | 2 +-
.../dal/service/TaskDetHisServiceBiz.java | 2 +-
.../core/dal/service/TaskHisServiceBiz.java | 4 +-
.../dal/service/TaskSourceLogServiceBiz.java | 2 +-
.../core/dal/service/TrayInfoServiceBiz.java | 2 +-
.../dal/service/VehicleInfoServiceBiz.java | 2 +-
.../core/dal/service/WarehouseServiceBiz.java | 2 +-
.../dal/service/WcsTaskLogServiceBiz.java | 16 ++
.../core/dal/service/WcsTaskServiceBiz.java | 16 ++
.../WechatTemplateMessageServiceBiz.java | 2 +-
.../service/impl/AlarmBaseServiceBizImpl.java | 2 +-
.../service/impl/AlarmInfoServiceBizImpl.java | 2 +-
.../impl/CommunicationLogServiceBizImpl.java | 20 +++
.../impl/CurrTaskDetServiceBizImpl.java | 2 +-
.../service/impl/CurrTaskServiceBizImpl.java | 2 +-
.../service/impl/FactoryServiceBizImpl.java | 2 +-
.../impl/InStockInfoHisServiceBizImpl.java | 2 +-
.../impl/InStockInfoServiceBizImpl.java | 2 +-
.../service/impl/KilnInfoServiceBizImpl.java | 2 +-
.../service/impl/LocationServiceBizImpl.java | 2 +-
.../service/impl/LoginLogServiceBizImpl.java | 2 +-
.../impl/LoginSessionServiceBizImpl.java | 2 +-
.../impl/OrderInfoHisServiceBizImpl.java | 4 +-
.../service/impl/OrderInfoServiceBizImpl.java | 2 +-
.../service/impl/ParBaseServiceBizImpl.java | 2 +-
.../impl/ParEleValueServiceBizImpl.java | 2 +-
.../impl/ParGasValueServiceBizImpl.java | 2 +-
.../service/impl/ParInfoServiceBizImpl.java | 2 +-
.../impl/ParRotSpeedValueServiceBizImpl.java | 2 +-
.../impl/ParTemValueServiceBizImpl.java | 2 +-
.../impl/ProductAttrServiceBizImpl.java | 2 +-
.../impl/ProductLibraryServiceBizImpl.java | 2 +-
.../service/impl/ResourceServiceBizImpl.java | 2 +-
.../service/impl/SmsCodeServiceBizImpl.java | 2 +-
.../service/impl/SmsSceneServiceBizImpl.java | 2 +-
.../service/impl/SmsSendServiceBizImpl.java | 2 +-
.../service/impl/SmsSignServiceBizImpl.java | 2 +-
.../impl/SmsTemplateServiceBizImpl.java | 2 +-
.../impl/SysDictDataServiceBizImpl.java | 2 +-
.../impl/SysDictTypeServiceBizImpl.java | 2 +-
.../service/impl/SysFileServiceBizImpl.java | 2 +-
.../impl/SysFileTypeServiceBizImpl.java | 2 +-
.../impl/SysMenuResourceServiceBizImpl.java | 2 +-
.../service/impl/SysMenuServiceBizImpl.java | 2 +-
.../service/impl/SysOrgServiceBizImpl.java | 2 +-
.../service/impl/SysPostServiceBizImpl.java | 2 +-
.../impl/SysRoleMenuServiceBizImpl.java | 2 +-
.../service/impl/SysRoleServiceBizImpl.java | 2 +-
.../impl/SysUserPostServiceBizImpl.java | 2 +-
.../impl/SysUserRoleServiceBizImpl.java | 2 +-
.../service/impl/SysUserServiceBizImpl.java | 2 +-
.../impl/TaskDetHisServiceBizImpl.java | 2 +-
.../service/impl/TaskHisServiceBizImpl.java | 4 +-
.../impl/TaskSourceLogServiceBizImpl.java | 2 +-
.../service/impl/TrayInfoServiceBizImpl.java | 2 +-
.../impl/VehicleInfoServiceBizImpl.java | 2 +-
.../service/impl/WarehouseServiceBizImpl.java | 2 +-
.../impl/WcsTaskLogServiceBizImpl.java | 20 +++
.../service/impl/WcsTaskServiceBizImpl.java | 20 +++
.../WechatTemplateMessageServiceBizImpl.java | 2 +-
.../java/com/mt/wms/empty/task/RunTask.java | 26 +++
212 files changed, 1148 insertions(+), 244 deletions(-)
create mode 100644 6.program/wms-basic/src/main/java/com/mt/wms/basic/controller/CommunicationContrallor.java
create mode 100644 6.program/wms-basic/src/main/java/com/mt/wms/basic/params/CommunicationQueryParam.java
create mode 100644 6.program/wms-basic/src/main/java/com/mt/wms/basic/service/CommunicationService.java
create mode 100644 6.program/wms-basic/src/main/java/com/mt/wms/basic/service/impl/CommunicationServiceImpl.java
create mode 100644 6.program/wms-basic/src/main/java/com/mt/wms/basic/vo/CommunicationVo.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CommunicationLog.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTask.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTaskLog.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.xml
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.xml
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.xml
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CommunicationLogServiceBiz.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskLogServiceBiz.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskServiceBiz.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CommunicationLogServiceBizImpl.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskLogServiceBizImpl.java
create mode 100644 6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskServiceBizImpl.java
create mode 100644 6.program/wms-empty/src/main/java/com/mt/wms/empty/task/RunTask.java
diff --git a/6.program/wms-basic/src/main/java/com/mt/wms/basic/controller/CommunicationContrallor.java b/6.program/wms-basic/src/main/java/com/mt/wms/basic/controller/CommunicationContrallor.java
new file mode 100644
index 0000000..d051a0c
--- /dev/null
+++ b/6.program/wms-basic/src/main/java/com/mt/wms/basic/controller/CommunicationContrallor.java
@@ -0,0 +1,51 @@
+package com.mt.wms.basic.controller;
+
+import com.mt.wms.basic.params.CommunicationQueryParam;
+import com.mt.wms.basic.service.CommunicationService;
+import com.mt.wms.basic.vo.CommunicationVo;
+import com.mt.wms.core.base.BaseController;
+import com.mt.wms.core.constants.CommonConstant;
+import com.mt.wms.core.params.IdParam;
+import com.mt.wms.core.validator.groups.PageGroup;
+import com.mt.wms.core.vo.PageVo;
+import com.mt.wms.core.vo.R;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import javax.validation.groups.Default;
+import java.util.List;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/18 10:34
+ * @Version 1.0
+ */
+@RestController
+@RequestMapping(CommonConstant.API_MODULE_BASE + "communication")
+@Slf4j
+@Api(value = "通讯日志管理", tags = "通讯日志管理", hidden = false)
+public class CommunicationContrallor extends BaseController {
+
+ @Autowired
+ private CommunicationService communicationService;
+
+ @PostMapping(value = "get")
+ @ApiOperation(value = "获取报警基础信息")
+ private R get(@Validated @RequestBody IdParam idParam) {
+ return communicationService.get(idParam);
+ }
+
+
+ @PostMapping(value = "page")
+ @ApiOperation(value = "获取分页报警基础信息")
+ private R> page(@Validated({PageGroup.class, Default.class}) @RequestBody CommunicationQueryParam communicationQueryParam) {
+ return communicationService.page(communicationQueryParam);
+ }
+}
diff --git a/6.program/wms-basic/src/main/java/com/mt/wms/basic/params/CommunicationQueryParam.java b/6.program/wms-basic/src/main/java/com/mt/wms/basic/params/CommunicationQueryParam.java
new file mode 100644
index 0000000..25281db
--- /dev/null
+++ b/6.program/wms-basic/src/main/java/com/mt/wms/basic/params/CommunicationQueryParam.java
@@ -0,0 +1,31 @@
+package com.mt.wms.basic.params;
+
+import com.mt.wms.core.params.BasePageParam;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/18 10:13
+ * @Version 1.0
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value = "通讯日志查询参数", description = "用于查询通讯日志")
+public class CommunicationQueryParam extends BasePageParam {
+ /**
+ * 主键,自增
+ */
+ @ApiModelProperty(value = "主键",required = false, example = "1")
+ private Long id;
+
+ /**
+ * 类型
+ */
+ @ApiModelProperty(value = "类型",required = false, example = "1")
+ private Integer type;
+}
diff --git a/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/CommunicationService.java b/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/CommunicationService.java
new file mode 100644
index 0000000..5bb1ef9
--- /dev/null
+++ b/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/CommunicationService.java
@@ -0,0 +1,32 @@
+package com.mt.wms.basic.service;
+
+import com.mt.wms.basic.params.CommunicationQueryParam;
+import com.mt.wms.basic.vo.CommunicationVo;
+import com.mt.wms.core.params.IdParam;
+import com.mt.wms.core.vo.PageVo;
+import com.mt.wms.core.vo.R;
+
+import java.util.List;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/18 10:16
+ * @Version 1.0
+ */
+public interface CommunicationService {
+ /**
+ * 获取xx
+ *
+ * @param idParam 主键参数
+ * @return xx
+ */
+ R get(IdParam idParam);
+
+ /**
+ * 获取xx分页列表
+ *
+ * @param kilnInfoQueryParam xx查询参数
+ * @return xx分页列表
+ */
+ R> page(CommunicationQueryParam kilnInfoQueryParam);
+}
diff --git a/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/impl/CommunicationServiceImpl.java b/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/impl/CommunicationServiceImpl.java
new file mode 100644
index 0000000..7b64355
--- /dev/null
+++ b/6.program/wms-basic/src/main/java/com/mt/wms/basic/service/impl/CommunicationServiceImpl.java
@@ -0,0 +1,51 @@
+package com.mt.wms.basic.service.impl;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.mt.wms.basic.params.CommunicationQueryParam;
+import com.mt.wms.basic.service.CommunicationService;
+import com.mt.wms.basic.vo.AlarmBaseVo;
+import com.mt.wms.basic.vo.CommunicationVo;
+import com.mt.wms.core.api.Assert;
+import com.mt.wms.core.base.BaseService;
+import com.mt.wms.core.dal.entity.CommunicationLog;
+import com.mt.wms.core.dal.service.CommunicationLogServiceBiz;
+import com.mt.wms.core.errorcode.ApiErrorCode;
+import com.mt.wms.core.params.IdParam;
+import com.mt.wms.core.utils.StringUtils;
+import com.mt.wms.core.vo.PageVo;
+import com.mt.wms.core.vo.R;
+import org.springframework.beans.BeanUtils;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import javax.annotation.Resource;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/18 10:18
+ * @Version 1.0
+ */
+@Service
+@Transactional
+public class CommunicationServiceImpl extends BaseService implements CommunicationService {
+ @Resource
+ private CommunicationLogServiceBiz communicationLogServiceBiz;
+ @Override
+ public R get(IdParam idParam) {
+ Assert.notNull(ApiErrorCode.INVALID_PARAMETER,idParam.getId());
+ CommunicationLog communicationLog = communicationLogServiceBiz.getById(idParam.getId());
+ CommunicationVo communicationVo = CommunicationVo.builder().build();
+ BeanUtils.copyProperties(communicationLog,communicationVo);
+ return successful(communicationVo);
+ }
+
+ @Override
+ public R> page(CommunicationQueryParam communicationQueryParam) {
+ QueryWrapper wrapper=new QueryWrapper<>();
+ wrapper.eq(CommunicationLog.VALID,1);
+ wrapper.eq(communicationQueryParam.getType()!=null,CommunicationLog.TYPE,communicationQueryParam.getType());
+ Page page = communicationLogServiceBiz.page(new Page<>(communicationQueryParam.getCurrent(), communicationQueryParam.getSize()), wrapper);
+ return successful(new PageVo<>(page,CommunicationVo.class));
+ }
+}
diff --git a/6.program/wms-basic/src/main/java/com/mt/wms/basic/vo/CommunicationVo.java b/6.program/wms-basic/src/main/java/com/mt/wms/basic/vo/CommunicationVo.java
new file mode 100644
index 0000000..1332f86
--- /dev/null
+++ b/6.program/wms-basic/src/main/java/com/mt/wms/basic/vo/CommunicationVo.java
@@ -0,0 +1,61 @@
+package com.mt.wms.basic.vo;
+
+import com.mt.wms.core.base.BaseVo;
+import com.mt.wms.core.vo.PageVo;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import io.swagger.models.auth.In;
+import lombok.Builder;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+import java.time.LocalDateTime;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/18 8:55
+ * @Version 1.0
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@Builder
+@ApiModel(value = "通讯日志视图对象", description = "用于查询通讯日志信息")
+public class CommunicationVo extends BaseVo implements PageVo.ConvertVo {
+ /**
+ * 主键,自增
+ */
+ @ApiModelProperty(value = "主键,更新时需要填写", example = "1")
+ private Long id;
+
+ /**
+ * 编码
+ */
+ @ApiModelProperty(value = "编码", example = "1")
+ private String code;
+
+ /**
+ * 日志名称
+ */
+ @ApiModelProperty(value = "日志名称", example = "1")
+ private String logName;
+
+ /**
+ * 内容
+ */
+ @ApiModelProperty(value = "日志名称", example = "1")
+ private String content;
+
+ /**
+ * 类型
+ */
+ @ApiModelProperty(value = "类型", example = "1")
+ private Integer type;
+
+ /**
+ * 创建时间
+ */
+ @ApiModelProperty(value = "创建时间", example = "1")
+ private LocalDateTime createTime;
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmBase.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmBase.java
index d4f3a7d..32196da 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmBase.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmBase.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmInfo.java
index e85dfbc..9f99e45 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/AlarmInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CommunicationLog.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CommunicationLog.java
new file mode 100644
index 0000000..d04f4cc
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CommunicationLog.java
@@ -0,0 +1,125 @@
+package com.mt.wms.core.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ *
+ * 通讯日志信息 包括wcs与wms apms与wms相互通讯
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@TableName("t_communication_log")
+public class CommunicationLog extends Model {
+
+ private static final long serialVersionUID = 1L;
+
+ @TableId(value = "id", type = IdType.AUTO)
+ private Long id;
+
+ /**
+ * 删除标志,是否有效:1 可用 0不可用,2停止
+ */
+ @TableField("valid")
+ @TableLogic
+ private Integer valid;
+
+ /**
+ * 添加时间,入库时间
+ */
+ @TableField("create_time")
+ private LocalDateTime createTime;
+
+ /**
+ * 创建人id
+ */
+ @TableField("creator_id")
+ private Integer creatorId;
+
+ /**
+ * 更新人id
+ */
+ @TableField("updater_id")
+ private Integer updaterId;
+
+ /**
+ * 修改时间,更具修改时间来判断下次执行顺序,第一次修改时间和新增时间相同
+ */
+ @TableField("update_time")
+ private LocalDateTime updateTime;
+
+ /**
+ * 版本号 默认为 1
+ */
+ @TableField("version")
+ @Version
+ private String version;
+
+ /**
+ * 类型,0:wms To wcs日志,1:wcs to wms日志 2:wms to apms日志 3:apms to wms日志
+ */
+ @TableField("type")
+ private Integer type;
+
+ /**
+ * 内部编码,系统自动生成
+ */
+ @TableField("code")
+ private String code;
+
+ /**
+ * 日志名称
+ */
+ @TableField("log_name")
+ private String logName;
+
+ /**
+ * 内容
+ */
+ @TableField("content")
+ private String content;
+
+
+ public static final String ID = "id";
+
+ public static final String VALID = "valid";
+
+ public static final String CREATE_TIME = "create_time";
+
+ public static final String CREATOR_ID = "creator_id";
+
+ public static final String UPDATER_ID = "updater_id";
+
+ public static final String UPDATE_TIME = "update_time";
+
+ public static final String VERSION = "version";
+
+ public static final String TYPE = "type";
+
+ public static final String CODE = "code";
+
+ public static final String LOG_NAME = "log_name";
+
+ public static final String CONTENT = "content";
+
+ @Override
+ protected Serializable pkVal() {
+ return this.id;
+ }
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTask.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTask.java
index c8f69a1..885fb2a 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTask.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTask.java
@@ -1,21 +1,25 @@
package com.mt.wms.core.dal.entity;
-import com.baomidou.mybatisplus.annotation.*;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
-import java.io.Serializable;
-import java.time.LocalDateTime;
-
/**
*
* 当前任务
*
*
* @author mt
- * @since 2021-11-16
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTaskDet.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTaskDet.java
index e9c9279..97a353c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTaskDet.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/CurrTaskDet.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Factory.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Factory.java
index b4ec4b9..87cd9ed 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Factory.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Factory.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfo.java
index 6372e7c..321d457 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfoHis.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfoHis.java
index 52d4d11..798e21f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfoHis.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/InStockInfoHis.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/KilnInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/KilnInfo.java
index d513dae..de2dc14 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/KilnInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/KilnInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Location.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Location.java
index 2a7ae29..9339486 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Location.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Location.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginLog.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginLog.java
index 5e2e772..70c2bc6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginLog.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginLog.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginSession.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginSession.java
index d7e7e39..74002c2 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginSession.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/LoginSession.java
@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfo.java
index f986e5d..e561ad4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-11-08
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfoHis.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfoHis.java
index 9b325c2..f09911a 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfoHis.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/OrderInfoHis.java
@@ -1,21 +1,25 @@
package com.mt.wms.core.dal.entity;
-import com.baomidou.mybatisplus.annotation.*;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
-import java.io.Serializable;
-import java.time.LocalDateTime;
-
/**
*
* 订单任务历史表
*
*
* @author mt
- * @since 2021-11-16
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParBase.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParBase.java
index bbe584b..be90270 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParBase.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParBase.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParEleValue.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParEleValue.java
index 4940458..89d315f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParEleValue.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParEleValue.java
@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParGasValue.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParGasValue.java
index 961c743..f85d211 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParGasValue.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParGasValue.java
@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParInfo.java
index 92c489b..a3dc620 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParRotSpeedValue.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParRotSpeedValue.java
index a8091f3..2de692e 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParRotSpeedValue.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParRotSpeedValue.java
@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParTemValue.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParTemValue.java
index f433e70..227b20a 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParTemValue.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ParTemValue.java
@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductAttr.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductAttr.java
index 42afef2..a7b39d4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductAttr.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductAttr.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductLibrary.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductLibrary.java
index 3c3b81e..a033346 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductLibrary.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/ProductLibrary.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Resource.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Resource.java
index a8a8a09..92e6f04 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Resource.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Resource.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsCode.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsCode.java
index b1a4b65..c87de5e 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsCode.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsCode.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsScene.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsScene.java
index a7c65b4..1f4613b 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsScene.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsScene.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSend.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSend.java
index b400554..dcf095d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSend.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSend.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSign.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSign.java
index a2168a3..b8d1edb 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSign.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsSign.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsTemplate.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsTemplate.java
index 0b97452..71d98dd 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsTemplate.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SmsTemplate.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictData.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictData.java
index 0f0b0f6..6db39ac 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictData.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictData.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictType.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictType.java
index 2c01324..44860f6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictType.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysDictType.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFile.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFile.java
index 8a457d5..2572fb4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFile.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFile.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFileType.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFileType.java
index 4d27c67..a2c9db2 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFileType.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysFileType.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenu.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenu.java
index 1b8747c..27fdd57 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenu.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenu.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenuResource.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenuResource.java
index d81b017..920b161 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenuResource.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysMenuResource.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysOrg.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysOrg.java
index 38207cd..22e7c36 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysOrg.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysOrg.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysPost.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysPost.java
index 0b1b960..7c57ef7 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysPost.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysPost.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRole.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRole.java
index 2e1ce34..d696b27 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRole.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRole.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRoleMenu.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRoleMenu.java
index 7fd51cd..df10269 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRoleMenu.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysRoleMenu.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUser.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUser.java
index fa19718..41076ad 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUser.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUser.java
@@ -20,7 +20,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserPost.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserPost.java
index a3b07eb..ac41f4e 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserPost.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserPost.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserRole.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserRole.java
index fb3c263..4db4996 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserRole.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/SysUserRole.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskDetHis.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskDetHis.java
index cd74b23..4aacdeb 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskDetHis.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskDetHis.java
@@ -1,21 +1,25 @@
package com.mt.wms.core.dal.entity;
-import com.baomidou.mybatisplus.annotation.*;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
-import java.io.Serializable;
-import java.time.LocalDateTime;
-
/**
*
* 任务明细历史表
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskHis.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskHis.java
index 3f35f33..e1e530b 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskHis.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskHis.java
@@ -1,21 +1,25 @@
package com.mt.wms.core.dal.entity;
-import com.baomidou.mybatisplus.annotation.*;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
-import java.io.Serializable;
-import java.time.LocalDateTime;
-
/**
*
* 任务历史
*
*
* @author mt
- * @since 2021-11-16
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskSourceLog.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskSourceLog.java
index 6426ad0..dee1697 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskSourceLog.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TaskSourceLog.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TrayInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TrayInfo.java
index d0be46e..aa036e3 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TrayInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/TrayInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/VehicleInfo.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/VehicleInfo.java
index beaaccf..f487722 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/VehicleInfo.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/VehicleInfo.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Warehouse.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Warehouse.java
index 270f3f6..929dc64 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Warehouse.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/Warehouse.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTask.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTask.java
new file mode 100644
index 0000000..91ade4d
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTask.java
@@ -0,0 +1,149 @@
+package com.mt.wms.core.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ *
+ * wcs 任务信息表
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@TableName("t_wcs_task")
+public class WcsTask extends Model {
+
+ private static final long serialVersionUID = 1L;
+
+ @TableId(value = "id", type = IdType.AUTO)
+ private Integer id;
+
+ /**
+ * 删除标志,是否有效:1 可用 0不可用,2停止
+ */
+ @TableField("valid")
+ @TableLogic
+ private Integer valid;
+
+ /**
+ * 添加时间,入库时间
+ */
+ @TableField("create_time")
+ private LocalDateTime createTime;
+
+ /**
+ * 创建人id
+ */
+ @TableField("creator_id")
+ private Integer creatorId;
+
+ /**
+ * 更新人id
+ */
+ @TableField("updater_id")
+ private Integer updaterId;
+
+ /**
+ * 修改时间,更具修改时间来判断下次执行顺序,第一次修改时间和新增时间相同
+ */
+ @TableField("update_time")
+ private LocalDateTime updateTime;
+
+ /**
+ * 版本号 默认为 1
+ */
+ @TableField("version")
+ @Version
+ private String version;
+
+ /**
+ * 任务编码
+ */
+ @TableField("code")
+ private String code;
+
+ /**
+ * 标识卡号
+ */
+ @TableField("iden_card_number")
+ private String idenCardNumber;
+
+ /**
+ * 产品名称,有多个逗号隔开
+ */
+ @TableField("product_name")
+ private String productName;
+
+ /**
+ * 材料牌号,有多个逗号隔开
+ */
+ @TableField("material_grade")
+ private String materialGrade;
+
+ /**
+ * 开始位置
+ */
+ @TableField("start_position")
+ private String startPosition;
+
+ /**
+ * 结束位置
+ */
+ @TableField("end_position")
+ private String endPosition;
+
+ /**
+ * 状态,0:未执行,1:正在执行,2:执行成功,3:执行失败
+ */
+ @TableField("status")
+ private Integer status;
+
+
+ public static final String ID = "id";
+
+ public static final String VALID = "valid";
+
+ public static final String CREATE_TIME = "create_time";
+
+ public static final String CREATOR_ID = "creator_id";
+
+ public static final String UPDATER_ID = "updater_id";
+
+ public static final String UPDATE_TIME = "update_time";
+
+ public static final String VERSION = "version";
+
+ public static final String CODE = "code";
+
+ public static final String IDEN_CARD_NUMBER = "iden_card_number";
+
+ public static final String PRODUCT_NAME = "product_name";
+
+ public static final String MATERIAL_GRADE = "material_grade";
+
+ public static final String START_POSITION = "start_position";
+
+ public static final String END_POSITION = "end_position";
+
+ public static final String STATUS = "status";
+
+ @Override
+ protected Serializable pkVal() {
+ return this.id;
+ }
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTaskLog.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTaskLog.java
new file mode 100644
index 0000000..2ac0fc4
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WcsTaskLog.java
@@ -0,0 +1,133 @@
+package com.mt.wms.core.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import com.baomidou.mybatisplus.annotation.Version;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import com.baomidou.mybatisplus.annotation.TableField;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ *
+ * wcs 任务信息日志表
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@TableName("t_wcs_task_log")
+public class WcsTaskLog extends Model {
+
+ private static final long serialVersionUID = 1L;
+
+ @TableId(value = "id", type = IdType.AUTO)
+ private Integer id;
+
+ /**
+ * 删除标志,是否有效:1 可用 0不可用,2停止
+ */
+ @TableField("valid")
+ @TableLogic
+ private Integer valid;
+
+ /**
+ * 添加时间,入库时间
+ */
+ @TableField("create_time")
+ private LocalDateTime createTime;
+
+ /**
+ * 创建人id
+ */
+ @TableField("creator_id")
+ private Integer creatorId;
+
+ /**
+ * 更新人id
+ */
+ @TableField("updater_id")
+ private Integer updaterId;
+
+ /**
+ * 修改时间,更具修改时间来判断下次执行顺序,第一次修改时间和新增时间相同
+ */
+ @TableField("update_time")
+ private LocalDateTime updateTime;
+
+ /**
+ * 版本号 默认为 1
+ */
+ @TableField("version")
+ @Version
+ private String version;
+
+ /**
+ * 任务来源
+ */
+ @TableField("source")
+ private String source;
+
+ /**
+ * 接收状态
+ */
+ @TableField("receive_status")
+ private String receiveStatus;
+
+ /**
+ * 发送状态
+ */
+ @TableField("send_status")
+ private String sendStatus;
+
+ /**
+ * 内容
+ */
+ @TableField("content")
+ private String content;
+
+ /**
+ * 编码 和 t_wcs_task 中的code 一直。用来对应wms传过来任务的 唯一标识
+ */
+ @TableField("code")
+ private String code;
+
+
+ public static final String ID = "id";
+
+ public static final String VALID = "valid";
+
+ public static final String CREATE_TIME = "create_time";
+
+ public static final String CREATOR_ID = "creator_id";
+
+ public static final String UPDATER_ID = "updater_id";
+
+ public static final String UPDATE_TIME = "update_time";
+
+ public static final String VERSION = "version";
+
+ public static final String SOURCE = "source";
+
+ public static final String RECEIVE_STATUS = "receive_status";
+
+ public static final String SEND_STATUS = "send_status";
+
+ public static final String CONTENT = "content";
+
+ public static final String CODE = "code";
+
+ @Override
+ protected Serializable pkVal() {
+ return this.id;
+ }
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WechatTemplateMessage.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WechatTemplateMessage.java
index b384ed6..b83c3f9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WechatTemplateMessage.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/entity/WechatTemplateMessage.java
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Data
@EqualsAndHashCode(callSuper = false)
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmBaseMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmBaseMapper.java
index 0420b1d..18b4a04 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmBaseMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmBaseMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface AlarmBaseMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmInfoMapper.java
index 50d1daa..efcd14a 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/AlarmInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface AlarmInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.java
new file mode 100644
index 0000000..80a9add
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.mapper;
+
+import com.mt.wms.core.dal.entity.CommunicationLog;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ *
+ * 通讯日志信息 包括wcs与wms apms与wms相互通讯 Mapper 接口
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface CommunicationLogMapper extends BaseMapper {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.xml
new file mode 100644
index 0000000..c2847c4
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CommunicationLogMapper.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ id, valid, create_time, creator_id, updater_id, update_time, version, type, code, log_name, content
+
+
+
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskDetMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskDetMapper.java
index 1b10fdd..bffffec 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskDetMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskDetMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface CurrTaskDetMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.java
index a5d9cc9..22497aa 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-11-09
+ * @since 2021-11-18
*/
public interface CurrTaskMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.xml
index 9af375c..0db46ac 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.xml
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/CurrTaskMapper.xml
@@ -16,7 +16,7 @@
-
+
@@ -32,9 +32,7 @@
- id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code,
- task_source, task_type, process_type, pallet_code, a_begin_time, a_end_time, start_position, target_position,
- kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name
+ id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code, task_source, task_type, process_type, pallet_code, a_begin_time, a_end_time, start_position, target_position, kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/FactoryMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/FactoryMapper.java
index c585098..4874540 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/FactoryMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/FactoryMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface FactoryMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoHisMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoHisMapper.java
index b631c3a..e812451 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoHisMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoHisMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface InStockInfoHisMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoMapper.java
index 8cb1786..d21ef77 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/InStockInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface InStockInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/KilnInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/KilnInfoMapper.java
index 6592b28..12ad5da 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/KilnInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/KilnInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface KilnInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LocationMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LocationMapper.java
index 71d997d..b4a46a1 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LocationMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LocationMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LocationMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginLogMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginLogMapper.java
index 83013a8..2547086 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginLogMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginLogMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LoginLogMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginSessionMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginSessionMapper.java
index eecbc7f..5a17f31 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginSessionMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/LoginSessionMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LoginSessionMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.java
index cae882a..4f798a6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.java
@@ -5,11 +5,11 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
*
- * 订单历史信息 Mapper 接口
+ * 订单任务历史表 Mapper 接口
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface OrderInfoHisMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.xml
index 65a554c..0476782 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.xml
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoHisMapper.xml
@@ -11,7 +11,7 @@
-
+
@@ -30,9 +30,7 @@
- id, valid, create_time, creator_id, updater_id, update_time, version, order_source, status, inter_code, code,
- order_no, iden_card_num, customer_no, customer_name, product_name, product_model, material_des, craft_ill, unit,
- weight, quantity
+ id, valid, create_time, creator_id, updater_id, update_time, version, order_source, status, inter_code, code, order_no, iden_card_num, customer_no, customer_name, product_name, product_model, material_des, craft_ill, unit, weight, quantity
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoMapper.java
index 4a6428b..1a73198 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/OrderInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-11-08
+ * @since 2021-11-18
*/
public interface OrderInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParBaseMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParBaseMapper.java
index 8b3f858..66c190a 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParBaseMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParBaseMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParBaseMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParEleValueMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParEleValueMapper.java
index dd9f8f3..91720d9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParEleValueMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParEleValueMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParEleValueMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParGasValueMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParGasValueMapper.java
index a5f59f1..90b0338 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParGasValueMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParGasValueMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParGasValueMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParInfoMapper.java
index e79f36e..3b16a8c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParRotSpeedValueMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParRotSpeedValueMapper.java
index 508358d..459939d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParRotSpeedValueMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParRotSpeedValueMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParRotSpeedValueMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParTemValueMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParTemValueMapper.java
index c3101de..a878f79 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParTemValueMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ParTemValueMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParTemValueMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductAttrMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductAttrMapper.java
index b0ac59a..2f7dff8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductAttrMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductAttrMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ProductAttrMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductLibraryMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductLibraryMapper.java
index 190028e..0059b90 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductLibraryMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ProductLibraryMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ProductLibraryMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ResourceMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ResourceMapper.java
index 034b16f..99de093 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ResourceMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/ResourceMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ResourceMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsCodeMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsCodeMapper.java
index 6419031..e26b9f4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsCodeMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsCodeMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsCodeMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSceneMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSceneMapper.java
index 56d069b..14def90 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSceneMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSceneMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSceneMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSendMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSendMapper.java
index b39bdd2..c985927 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSendMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSendMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSendMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSignMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSignMapper.java
index be542e7..3301534 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSignMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsSignMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSignMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsTemplateMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsTemplateMapper.java
index 21a4179..0a4d177 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsTemplateMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SmsTemplateMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsTemplateMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictDataMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictDataMapper.java
index 189337a..4df287d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictDataMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictDataMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysDictDataMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictTypeMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictTypeMapper.java
index f9270aa..7ce4a54 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictTypeMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysDictTypeMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysDictTypeMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileMapper.java
index ec59c56..7966caf 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysFileMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileTypeMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileTypeMapper.java
index 65bd698..b669642 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileTypeMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysFileTypeMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysFileTypeMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuMapper.java
index 3851c89..1cce556 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysMenuMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuResourceMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuResourceMapper.java
index abaed02..0c68030 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuResourceMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysMenuResourceMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysMenuResourceMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysOrgMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysOrgMapper.java
index 81d97e2..38717db 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysOrgMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysOrgMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysOrgMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysPostMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysPostMapper.java
index ac1f03d..a10d2a6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysPostMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysPostMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysPostMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMapper.java
index ec24b9c..c5cd3ea 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysRoleMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMenuMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMenuMapper.java
index eab2cb1..185e28b 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMenuMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysRoleMenuMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysRoleMenuMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserMapper.java
index 22e1b88..4772f37 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserPostMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserPostMapper.java
index 0ee3651..460e628 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserPostMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserPostMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserPostMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserRoleMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserRoleMapper.java
index a766941..726f8f9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserRoleMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/SysUserRoleMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserRoleMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskDetHisMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskDetHisMapper.java
index 28ef86e..d417496 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskDetHisMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskDetHisMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskDetHisMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.java
index 7ad388d..9f2b580 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.java
@@ -5,11 +5,11 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
*
- * 任务历史表 Mapper 接口
+ * 任务历史 Mapper 接口
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskHisMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.xml
index 8bdd969..3c467da 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.xml
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskHisMapper.xml
@@ -4,37 +4,35 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code,
- task_source, task_type, process_type, pallet_code, a_begin_time, a_end_time, start_position, target_position,
- kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name
+ id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code, task_source, task_type, process_type, pallet_code, a_begin_time, a_end_time, start_position, target_position, kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskSourceLogMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskSourceLogMapper.java
index 179c6ee..d3824ed 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskSourceLogMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TaskSourceLogMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskSourceLogMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TrayInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TrayInfoMapper.java
index 86f6010..66c20f9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TrayInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/TrayInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TrayInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/VehicleInfoMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/VehicleInfoMapper.java
index 60a598d..a38d92d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/VehicleInfoMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/VehicleInfoMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface VehicleInfoMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WarehouseMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WarehouseMapper.java
index 7ce6ed4..2736627 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WarehouseMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WarehouseMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface WarehouseMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.java
new file mode 100644
index 0000000..a95dcd1
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.mapper;
+
+import com.mt.wms.core.dal.entity.WcsTaskLog;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ *
+ * wcs 任务信息日志表 Mapper 接口
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface WcsTaskLogMapper extends BaseMapper {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.xml
new file mode 100644
index 0000000..4e93f6e
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskLogMapper.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ id, valid, create_time, creator_id, updater_id, update_time, version, source, receive_status, send_status, content, code
+
+
+
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.java
new file mode 100644
index 0000000..b22d086
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.mapper;
+
+import com.mt.wms.core.dal.entity.WcsTask;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ *
+ * wcs 任务信息表 Mapper 接口
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface WcsTaskMapper extends BaseMapper {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.xml b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.xml
new file mode 100644
index 0000000..be3c9f3
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WcsTaskMapper.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ id, valid, create_time, creator_id, updater_id, update_time, version, code, iden_card_number, product_name, material_grade, start_position, end_position, status
+
+
+
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WechatTemplateMessageMapper.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WechatTemplateMessageMapper.java
index ca07f8a..1c7571d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WechatTemplateMessageMapper.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/mapper/WechatTemplateMessageMapper.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface WechatTemplateMessageMapper extends BaseMapper {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmBaseServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmBaseServiceBiz.java
index c3cb92d..0147f70 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmBaseServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmBaseServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface AlarmBaseServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmInfoServiceBiz.java
index 02b7f3c..041b3aa 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/AlarmInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface AlarmInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CommunicationLogServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CommunicationLogServiceBiz.java
new file mode 100644
index 0000000..0dd2efe
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CommunicationLogServiceBiz.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.service;
+
+import com.mt.wms.core.dal.entity.CommunicationLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ *
+ * 通讯日志信息 包括wcs与wms apms与wms相互通讯 服务类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface CommunicationLogServiceBiz extends IService {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskDetServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskDetServiceBiz.java
index 7d335b3..d3e73e3 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskDetServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskDetServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface CurrTaskDetServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskServiceBiz.java
index 479ad93..aafaf70 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/CurrTaskServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-11-09
+ * @since 2021-11-18
*/
public interface CurrTaskServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/FactoryServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/FactoryServiceBiz.java
index 352f6ba..6c03e18 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/FactoryServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/FactoryServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface FactoryServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoHisServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoHisServiceBiz.java
index a697f14..6763185 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoHisServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoHisServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface InStockInfoHisServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoServiceBiz.java
index 9e22736..3481cbc 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/InStockInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface InStockInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/KilnInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/KilnInfoServiceBiz.java
index 63be215..21b0b85 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/KilnInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/KilnInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface KilnInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LocationServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LocationServiceBiz.java
index 424366c..ee578a5 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LocationServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LocationServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LocationServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginLogServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginLogServiceBiz.java
index 994048e..7608351 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginLogServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginLogServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LoginLogServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginSessionServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginSessionServiceBiz.java
index 736c0bd..acd05c8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginSessionServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/LoginSessionServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface LoginSessionServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoHisServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoHisServiceBiz.java
index e7dc9ed..95b0cda 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoHisServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoHisServiceBiz.java
@@ -5,11 +5,11 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
*
- * 订单历史信息 服务类
+ * 订单任务历史表 服务类
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface OrderInfoHisServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoServiceBiz.java
index a682d49..12400d6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/OrderInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-11-08
+ * @since 2021-11-18
*/
public interface OrderInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParBaseServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParBaseServiceBiz.java
index f178e36..53a957f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParBaseServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParBaseServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParBaseServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParEleValueServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParEleValueServiceBiz.java
index dab22d0..10e5569 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParEleValueServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParEleValueServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParEleValueServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParGasValueServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParGasValueServiceBiz.java
index 73a3c71..9bceed2 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParGasValueServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParGasValueServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParGasValueServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParInfoServiceBiz.java
index b3c7636..8c6d4eb 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParRotSpeedValueServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParRotSpeedValueServiceBiz.java
index 6079c59..0d8017f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParRotSpeedValueServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParRotSpeedValueServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParRotSpeedValueServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParTemValueServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParTemValueServiceBiz.java
index 187aafc..d93f2e8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParTemValueServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ParTemValueServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ParTemValueServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductAttrServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductAttrServiceBiz.java
index cb06fe3..08a5d24 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductAttrServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductAttrServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ProductAttrServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductLibraryServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductLibraryServiceBiz.java
index 29a073c..9ad830d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductLibraryServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ProductLibraryServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ProductLibraryServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ResourceServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ResourceServiceBiz.java
index a2cb63b..1c71d12 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ResourceServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/ResourceServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface ResourceServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsCodeServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsCodeServiceBiz.java
index d28ac8a..aac9207 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsCodeServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsCodeServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsCodeServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSceneServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSceneServiceBiz.java
index eb8615f..b3131f4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSceneServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSceneServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSceneServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSendServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSendServiceBiz.java
index 7afaf43..ee689bd 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSendServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSendServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSendServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSignServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSignServiceBiz.java
index 296503e..845c57e 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSignServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsSignServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsSignServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsTemplateServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsTemplateServiceBiz.java
index a7f50f1..b8a3948 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsTemplateServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SmsTemplateServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SmsTemplateServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictDataServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictDataServiceBiz.java
index 80abe4a..461ce8c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictDataServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictDataServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysDictDataServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictTypeServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictTypeServiceBiz.java
index 7ec92b3..2cf20dc 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictTypeServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysDictTypeServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysDictTypeServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileServiceBiz.java
index d48cb2c..4383f24 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysFileServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileTypeServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileTypeServiceBiz.java
index 1529438..4676f5f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileTypeServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysFileTypeServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysFileTypeServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuResourceServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuResourceServiceBiz.java
index 200b127..2e058f8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuResourceServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuResourceServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysMenuResourceServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuServiceBiz.java
index 343c42f..a8fa74d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysMenuServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysMenuServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysOrgServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysOrgServiceBiz.java
index 9bc44bb..973424f 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysOrgServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysOrgServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysOrgServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysPostServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysPostServiceBiz.java
index fa74048..6e7e26c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysPostServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysPostServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysPostServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleMenuServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleMenuServiceBiz.java
index 1ff1408..47b2265 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleMenuServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleMenuServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysRoleMenuServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleServiceBiz.java
index 8038537..3f41d85 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysRoleServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysRoleServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserPostServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserPostServiceBiz.java
index b79f79d..67f6e00 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserPostServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserPostServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserPostServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserRoleServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserRoleServiceBiz.java
index 60a73ee..6b12c91 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserRoleServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserRoleServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserRoleServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserServiceBiz.java
index bd73762..99987e0 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/SysUserServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface SysUserServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskDetHisServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskDetHisServiceBiz.java
index c8dc188..c064d07 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskDetHisServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskDetHisServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskDetHisServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskHisServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskHisServiceBiz.java
index c753364..fa7131e 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskHisServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskHisServiceBiz.java
@@ -5,11 +5,11 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
*
- * 任务历史表 服务类
+ * 任务历史 服务类
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskHisServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskSourceLogServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskSourceLogServiceBiz.java
index 7e914dd..bb13792 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskSourceLogServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TaskSourceLogServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TaskSourceLogServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TrayInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TrayInfoServiceBiz.java
index a7fe98b..85e861c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TrayInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/TrayInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface TrayInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/VehicleInfoServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/VehicleInfoServiceBiz.java
index 9d7ccd6..a08fd1b 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/VehicleInfoServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/VehicleInfoServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface VehicleInfoServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WarehouseServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WarehouseServiceBiz.java
index d22b4e6..0883fda 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WarehouseServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WarehouseServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface WarehouseServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskLogServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskLogServiceBiz.java
new file mode 100644
index 0000000..69e3091
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskLogServiceBiz.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.service;
+
+import com.mt.wms.core.dal.entity.WcsTaskLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ *
+ * wcs 任务信息日志表 服务类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface WcsTaskLogServiceBiz extends IService {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskServiceBiz.java
new file mode 100644
index 0000000..bc2fd34
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WcsTaskServiceBiz.java
@@ -0,0 +1,16 @@
+package com.mt.wms.core.dal.service;
+
+import com.mt.wms.core.dal.entity.WcsTask;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ *
+ * wcs 任务信息表 服务类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+public interface WcsTaskServiceBiz extends IService {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WechatTemplateMessageServiceBiz.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WechatTemplateMessageServiceBiz.java
index 35d09a5..74de833 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WechatTemplateMessageServiceBiz.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/WechatTemplateMessageServiceBiz.java
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
public interface WechatTemplateMessageServiceBiz extends IService {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmBaseServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmBaseServiceBizImpl.java
index 2fc2ecd..62e1ce9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmBaseServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmBaseServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class AlarmBaseServiceBizImpl extends ServiceImpl implements AlarmBaseServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmInfoServiceBizImpl.java
index f30e884..73f1564 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/AlarmInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class AlarmInfoServiceBizImpl extends ServiceImpl implements AlarmInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CommunicationLogServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CommunicationLogServiceBizImpl.java
new file mode 100644
index 0000000..b3a8f00
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CommunicationLogServiceBizImpl.java
@@ -0,0 +1,20 @@
+package com.mt.wms.core.dal.service.impl;
+
+import com.mt.wms.core.dal.entity.CommunicationLog;
+import com.mt.wms.core.dal.mapper.CommunicationLogMapper;
+import com.mt.wms.core.dal.service.CommunicationLogServiceBiz;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ *
+ * 通讯日志信息 包括wcs与wms apms与wms相互通讯 服务实现类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Service
+public class CommunicationLogServiceBizImpl extends ServiceImpl implements CommunicationLogServiceBiz {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskDetServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskDetServiceBizImpl.java
index b81cfdc..1aaa8b0 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskDetServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskDetServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class CurrTaskDetServiceBizImpl extends ServiceImpl implements CurrTaskDetServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskServiceBizImpl.java
index decae37..fb9ca87 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/CurrTaskServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-11-09
+ * @since 2021-11-18
*/
@Service
public class CurrTaskServiceBizImpl extends ServiceImpl implements CurrTaskServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/FactoryServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/FactoryServiceBizImpl.java
index efc4b99..163db9b 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/FactoryServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/FactoryServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class FactoryServiceBizImpl extends ServiceImpl implements FactoryServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoHisServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoHisServiceBizImpl.java
index 7ada344..b72d035 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoHisServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoHisServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class InStockInfoHisServiceBizImpl extends ServiceImpl implements InStockInfoHisServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoServiceBizImpl.java
index 1701fcf..b604ca0 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/InStockInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class InStockInfoServiceBizImpl extends ServiceImpl implements InStockInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/KilnInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/KilnInfoServiceBizImpl.java
index 733a10c..e2e3158 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/KilnInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/KilnInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class KilnInfoServiceBizImpl extends ServiceImpl implements KilnInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LocationServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LocationServiceBizImpl.java
index 49281e3..18c59e9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LocationServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LocationServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class LocationServiceBizImpl extends ServiceImpl implements LocationServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginLogServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginLogServiceBizImpl.java
index 086830d..809c789 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginLogServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginLogServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class LoginLogServiceBizImpl extends ServiceImpl implements LoginLogServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginSessionServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginSessionServiceBizImpl.java
index 32dd73a..af9b810 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginSessionServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/LoginSessionServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class LoginSessionServiceBizImpl extends ServiceImpl implements LoginSessionServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoHisServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoHisServiceBizImpl.java
index 8a01e55..27e70d8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoHisServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoHisServiceBizImpl.java
@@ -8,11 +8,11 @@ import org.springframework.stereotype.Service;
/**
*
- * 订单历史信息 服务实现类
+ * 订单任务历史表 服务实现类
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class OrderInfoHisServiceBizImpl extends ServiceImpl implements OrderInfoHisServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoServiceBizImpl.java
index 6259b16..f235478 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/OrderInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-11-08
+ * @since 2021-11-18
*/
@Service
public class OrderInfoServiceBizImpl extends ServiceImpl implements OrderInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParBaseServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParBaseServiceBizImpl.java
index 9a9f0cc..dcdafc7 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParBaseServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParBaseServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParBaseServiceBizImpl extends ServiceImpl implements ParBaseServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParEleValueServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParEleValueServiceBizImpl.java
index 32cbefb..7f867ff 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParEleValueServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParEleValueServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParEleValueServiceBizImpl extends ServiceImpl implements ParEleValueServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParGasValueServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParGasValueServiceBizImpl.java
index b300fda..07870cd 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParGasValueServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParGasValueServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParGasValueServiceBizImpl extends ServiceImpl implements ParGasValueServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParInfoServiceBizImpl.java
index d73c011..60b581d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParInfoServiceBizImpl extends ServiceImpl implements ParInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParRotSpeedValueServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParRotSpeedValueServiceBizImpl.java
index f3f6c27..a8c1f10 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParRotSpeedValueServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParRotSpeedValueServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParRotSpeedValueServiceBizImpl extends ServiceImpl implements ParRotSpeedValueServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParTemValueServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParTemValueServiceBizImpl.java
index a2e25f3..80abb00 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParTemValueServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ParTemValueServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ParTemValueServiceBizImpl extends ServiceImpl implements ParTemValueServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductAttrServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductAttrServiceBizImpl.java
index 6bf5933..c1e1e42 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductAttrServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductAttrServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ProductAttrServiceBizImpl extends ServiceImpl implements ProductAttrServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductLibraryServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductLibraryServiceBizImpl.java
index 9595e1c..d504b65 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductLibraryServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ProductLibraryServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ProductLibraryServiceBizImpl extends ServiceImpl implements ProductLibraryServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ResourceServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ResourceServiceBizImpl.java
index 7dafc45..ca21b86 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ResourceServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/ResourceServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class ResourceServiceBizImpl extends ServiceImpl implements ResourceServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsCodeServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsCodeServiceBizImpl.java
index 61774e5..cb8aa40 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsCodeServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsCodeServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SmsCodeServiceBizImpl extends ServiceImpl implements SmsCodeServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSceneServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSceneServiceBizImpl.java
index d3bb67c..e35fa26 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSceneServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSceneServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SmsSceneServiceBizImpl extends ServiceImpl implements SmsSceneServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSendServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSendServiceBizImpl.java
index ae82267..399bfa8 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSendServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSendServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SmsSendServiceBizImpl extends ServiceImpl implements SmsSendServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSignServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSignServiceBizImpl.java
index bb2dbf0..5f7c847 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSignServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsSignServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SmsSignServiceBizImpl extends ServiceImpl implements SmsSignServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsTemplateServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsTemplateServiceBizImpl.java
index fdea59c..cac7f3c 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsTemplateServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SmsTemplateServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SmsTemplateServiceBizImpl extends ServiceImpl implements SmsTemplateServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictDataServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictDataServiceBizImpl.java
index a2683a1..ec21d48 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictDataServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictDataServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysDictDataServiceBizImpl extends ServiceImpl implements SysDictDataServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictTypeServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictTypeServiceBizImpl.java
index c92d2ae..111c6ad 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictTypeServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysDictTypeServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysDictTypeServiceBizImpl extends ServiceImpl implements SysDictTypeServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileServiceBizImpl.java
index e92bda6..3d80fea 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysFileServiceBizImpl extends ServiceImpl implements SysFileServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileTypeServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileTypeServiceBizImpl.java
index a1136c3..d0a0419 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileTypeServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysFileTypeServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysFileTypeServiceBizImpl extends ServiceImpl implements SysFileTypeServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuResourceServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuResourceServiceBizImpl.java
index ac40aa6..288e3e6 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuResourceServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuResourceServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysMenuResourceServiceBizImpl extends ServiceImpl implements SysMenuResourceServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuServiceBizImpl.java
index 16efdde..7646bd2 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysMenuServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysMenuServiceBizImpl extends ServiceImpl implements SysMenuServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysOrgServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysOrgServiceBizImpl.java
index abb258c..bafb1a4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysOrgServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysOrgServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysOrgServiceBizImpl extends ServiceImpl implements SysOrgServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysPostServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysPostServiceBizImpl.java
index 470c9ee..b73b9e4 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysPostServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysPostServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysPostServiceBizImpl extends ServiceImpl implements SysPostServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleMenuServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleMenuServiceBizImpl.java
index ee6e41b..2e7ac28 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleMenuServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleMenuServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysRoleMenuServiceBizImpl extends ServiceImpl implements SysRoleMenuServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleServiceBizImpl.java
index 4494365..12bf9f5 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysRoleServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysRoleServiceBizImpl extends ServiceImpl implements SysRoleServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserPostServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserPostServiceBizImpl.java
index c40c7ae..444c8b5 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserPostServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserPostServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysUserPostServiceBizImpl extends ServiceImpl implements SysUserPostServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserRoleServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserRoleServiceBizImpl.java
index 528ec2d..b8040ed 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserRoleServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserRoleServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysUserRoleServiceBizImpl extends ServiceImpl implements SysUserRoleServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserServiceBizImpl.java
index e556f18..04194c9 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/SysUserServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class SysUserServiceBizImpl extends ServiceImpl implements SysUserServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskDetHisServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskDetHisServiceBizImpl.java
index 379280b..91fba74 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskDetHisServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskDetHisServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class TaskDetHisServiceBizImpl extends ServiceImpl implements TaskDetHisServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskHisServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskHisServiceBizImpl.java
index 1b274dd..7dadb50 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskHisServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskHisServiceBizImpl.java
@@ -8,11 +8,11 @@ import org.springframework.stereotype.Service;
/**
*
- * 任务历史表 服务实现类
+ * 任务历史 服务实现类
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class TaskHisServiceBizImpl extends ServiceImpl implements TaskHisServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskSourceLogServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskSourceLogServiceBizImpl.java
index e5cc660..87d2f5d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskSourceLogServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TaskSourceLogServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class TaskSourceLogServiceBizImpl extends ServiceImpl implements TaskSourceLogServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TrayInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TrayInfoServiceBizImpl.java
index 0463a45..3696f14 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TrayInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/TrayInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class TrayInfoServiceBizImpl extends ServiceImpl implements TrayInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/VehicleInfoServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/VehicleInfoServiceBizImpl.java
index e550511..93b6fec 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/VehicleInfoServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/VehicleInfoServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class VehicleInfoServiceBizImpl extends ServiceImpl implements VehicleInfoServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WarehouseServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WarehouseServiceBizImpl.java
index 0a2bb8f..3206aad 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WarehouseServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WarehouseServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class WarehouseServiceBizImpl extends ServiceImpl implements WarehouseServiceBiz {
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskLogServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskLogServiceBizImpl.java
new file mode 100644
index 0000000..990afe3
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskLogServiceBizImpl.java
@@ -0,0 +1,20 @@
+package com.mt.wms.core.dal.service.impl;
+
+import com.mt.wms.core.dal.entity.WcsTaskLog;
+import com.mt.wms.core.dal.mapper.WcsTaskLogMapper;
+import com.mt.wms.core.dal.service.WcsTaskLogServiceBiz;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ *
+ * wcs 任务信息日志表 服务实现类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Service
+public class WcsTaskLogServiceBizImpl extends ServiceImpl implements WcsTaskLogServiceBiz {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskServiceBizImpl.java
new file mode 100644
index 0000000..8339f6b
--- /dev/null
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WcsTaskServiceBizImpl.java
@@ -0,0 +1,20 @@
+package com.mt.wms.core.dal.service.impl;
+
+import com.mt.wms.core.dal.entity.WcsTask;
+import com.mt.wms.core.dal.mapper.WcsTaskMapper;
+import com.mt.wms.core.dal.service.WcsTaskServiceBiz;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ *
+ * wcs 任务信息表 服务实现类
+ *
+ *
+ * @author mt
+ * @since 2021-11-18
+ */
+@Service
+public class WcsTaskServiceBizImpl extends ServiceImpl implements WcsTaskServiceBiz {
+
+}
diff --git a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WechatTemplateMessageServiceBizImpl.java b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WechatTemplateMessageServiceBizImpl.java
index d6a02cf..c2c500d 100644
--- a/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WechatTemplateMessageServiceBizImpl.java
+++ b/6.program/wms-core/src/main/java/com/mt/wms/core/dal/service/impl/WechatTemplateMessageServiceBizImpl.java
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
*
*
* @author mt
- * @since 2021-09-29
+ * @since 2021-11-18
*/
@Service
public class WechatTemplateMessageServiceBizImpl extends ServiceImpl implements WechatTemplateMessageServiceBiz {
diff --git a/6.program/wms-empty/src/main/java/com/mt/wms/empty/task/RunTask.java b/6.program/wms-empty/src/main/java/com/mt/wms/empty/task/RunTask.java
new file mode 100644
index 0000000..958ab66
--- /dev/null
+++ b/6.program/wms-empty/src/main/java/com/mt/wms/empty/task/RunTask.java
@@ -0,0 +1,26 @@
+package com.mt.wms.empty.task;
+
+import com.mt.wms.core.vo.R;
+
+/**
+ * @Author: liguanghao
+ * @Date: 2021/11/15 21:55
+ * @Version 1.0
+ */
+public class RunTask {
+
+ public R runTask() {
+ //传入任务id,起始点,若终点是窑炉,获取窑炉状态
+ int kilnStatus = 0;
+ if (kilnStatus == 0) {//窑炉状态为不可用
+ return R.failed("目标窑炉不可用!");
+ }
+ if (kilnStatus==1){//窑炉可用未满
+
+ }
+ if (kilnStatus==2){//窑炉已满
+
+ }
+ return null;
+ }
+}