bug修改

This commit is contained in:
lgh
2022-07-12 16:46:25 +08:00
parent f3dda753a4
commit ddf86e07b4
48 changed files with 154 additions and 131 deletions

View File

@@ -101,7 +101,7 @@ public class AlarmInfo extends Model<AlarmInfo> {
private String equipmentName;
/**
* 报警类型 01表示车辆依次类推
* 报警类型 0工业1表示车辆依次类推
*/
@TableField("type")
private Integer type;

View File

@@ -91,13 +91,13 @@ public class CurrTask extends Model<CurrTask> {
private Long autoExeTaskId;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;
/**
* 炉名称
* 工业炉名称
*/
@TableField("kiln_name")
private String kilnName;
@@ -145,13 +145,13 @@ public class CurrTask extends Model<CurrTask> {
private String startPosition;
/**
* 目标位置指的是炉的位置
* 目标位置指的是工业炉的位置
*/
@TableField("target_position")
private String targetPosition;
/**
* 是否缓存,如果当前指的炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
* 是否缓存,如果当前指的工业炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定工业炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
*/
@TableField("is_cache")
private Integer isCache;
@@ -217,7 +217,7 @@ public class CurrTask extends Model<CurrTask> {
private String sheetNo;
/**
* 任务类型0:入库到1:入库到缓存区2出库到 炉到缓存区3缓存区出库
* 任务类型0:入库到工业1:入库到缓存区2出库到 工业炉到缓存区3缓存区出库
*/
@TableField("task_type")
private Integer taskType;

View File

@@ -95,13 +95,13 @@ public class InStockInfo extends Model<InStockInfo> {
private Long taskId;
/**
* 炉id if(status == 0){从炉出来等待库存} else if(status == 1){到目标炉前缓存到库位}关联设备炉表t_kiln_info
* 工业炉id if(status == 0){从工业炉出来等待库存} else if(status == 1){到目标工业炉前缓存到库位}关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;
/**
* 炉名称
* 工业炉名称
*/
@TableField("kiln_name")
private String kilnName;
@@ -125,7 +125,7 @@ public class InStockInfo extends Model<InStockInfo> {
private String palletCode;
/**
* 类型: 0等待出库1到炉前缓存2插单任务缓存
* 类型: 0等待出库1到工业炉前缓存2插单任务缓存
*/
@TableField("type")
private Integer type;

View File

@@ -95,13 +95,13 @@ public class InStockInfoHis extends Model<InStockInfoHis> {
private Integer taskId;
/**
* 炉id if(status == 0){从炉出来等待库存} else if(status == 1){到目标炉前缓存到库位}关联设备炉表t_kiln_info
* 工业炉id if(status == 0){从工业炉出来等待库存} else if(status == 1){到目标工业炉前缓存到库位}关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Integer kilnId;
/**
* 炉名称
* 工业炉名称
*/
@TableField("kiln_name")
private String kilnName;
@@ -125,7 +125,7 @@ public class InStockInfoHis extends Model<InStockInfoHis> {
private String palletCode;
/**
* 类型: 0等待出库1到炉前缓存2插单任务缓存
* 类型: 0等待出库1到工业炉前缓存2插单任务缓存
*/
@TableField("type")
private Integer type;

View File

@@ -15,7 +15,7 @@ import lombok.experimental.Accessors;
/**
* <p>
* 炉信息
* 工业炉信息
* </p>
*
* @author mt
@@ -95,13 +95,13 @@ public class KilnInfo extends Model<KilnInfo> {
private Integer factoryId;
/**
* 炉名称 建议与AMPS相同
* 工业炉名称 建议与AMPS相同
*/
@TableField("kiln_name")
private String kilnName;
/**
* 炉别名
* 工业炉别名
*/
@TableField("kiln_alias")
private String kilnAlias;

View File

@@ -14,7 +14,7 @@ import lombok.experimental.Accessors;
/**
* <p>
* 炉电能参数值
* 工业炉电能参数值
* </p>
*
* @author mt
@@ -50,7 +50,7 @@ public class ParEleValue extends Model<ParEleValue> {
private Integer status;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;

View File

@@ -14,7 +14,7 @@ import lombok.experimental.Accessors;
/**
* <p>
* 炉使用气检测值
* 工业炉使用气检测值
* </p>
*
* @author mt
@@ -50,7 +50,7 @@ public class ParGasValue extends Model<ParGasValue> {
private Integer status;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;

View File

@@ -14,7 +14,7 @@ import lombok.experimental.Accessors;
/**
* <p>
* 炉运转速度
* 工业炉运转速度
* </p>
*
* @author mt
@@ -50,7 +50,7 @@ public class ParRotSpeedValue extends Model<ParRotSpeedValue> {
private Integer status;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;

View File

@@ -14,7 +14,7 @@ import lombok.experimental.Accessors;
/**
* <p>
* 炉温度监控
* 工业炉温度监控
* </p>
*
* @author mt
@@ -50,7 +50,7 @@ public class ParTemValue extends Model<ParTemValue> {
private Integer status;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;

View File

@@ -45,7 +45,7 @@ public class PointInfo extends Model<PointInfo> {
private String name;
/**
* 点位说明关联对应表数据的code炉code,库位code等等
* 点位说明关联对应表数据的code工业炉code,库位code等等
*/
@TableField("note")
private String note;

View File

@@ -91,13 +91,13 @@ public class TaskHis extends Model<TaskHis> {
private Long autoExeTaskId;
/**
* 炉id关联设备炉表t_kiln_info
* 工业炉id关联设备工业炉表t_kiln_info
*/
@TableField("kiln_id")
private Long kilnId;
/**
* 炉名称
* 工业炉名称
*/
@TableField("kiln_name")
private String kilnName;
@@ -145,13 +145,13 @@ public class TaskHis extends Model<TaskHis> {
private String startPosition;
/**
* 目标位置指的是炉的位置
* 目标位置指的是工业炉的位置
*/
@TableField("target_position")
private String targetPosition;
/**
* 是否缓存,如果当前指的炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
* 是否缓存,如果当前指的工业炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定工业炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
*/
@TableField("is_cache")
private Integer isCache;
@@ -217,7 +217,7 @@ public class TaskHis extends Model<TaskHis> {
private Integer processType;
/**
* 任务类型0:入库到1:入库到缓存区2出库到 炉到缓存区3缓存区出库
* 任务类型0:入库到工业1:入库到缓存区2出库到 工业炉到缓存区3缓存区出库
*/
@TableField("task_type")
private Integer taskType;

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 炉信息 Mapper 接口
* 工业炉信息 Mapper 接口
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 炉电能参数值 Mapper 接口
* 工业炉电能参数值 Mapper 接口
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 炉使用气检测值 Mapper 接口
* 工业炉使用气检测值 Mapper 接口
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 炉运转速度 Mapper 接口
* 工业炉运转速度 Mapper 接口
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 炉温度监控 Mapper 接口
* 工业炉温度监控 Mapper 接口
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 炉信息 服务类
* 工业炉信息 服务类
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 炉电能参数值 服务类
* 工业炉电能参数值 服务类
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 炉使用气检测值 服务类
* 工业炉使用气检测值 服务类
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 炉运转速度 服务类
* 工业炉运转速度 服务类
* </p>
*
* @author mt

View File

@@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 炉温度监控 服务类
* 工业炉温度监控 服务类
* </p>
*
* @author mt

View File

@@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/**
* <p>
* 炉信息 服务实现类
* 工业炉信息 服务实现类
* </p>
*
* @author mt

View File

@@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/**
* <p>
* 炉电能参数值 服务实现类
* 工业炉电能参数值 服务实现类
* </p>
*
* @author mt

View File

@@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/**
* <p>
* 炉使用气检测值 服务实现类
* 工业炉使用气检测值 服务实现类
* </p>
*
* @author mt

View File

@@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/**
* <p>
* 炉运转速度 服务实现类
* 工业炉运转速度 服务实现类
* </p>
*
* @author mt

View File

@@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/**
* <p>
* 炉温度监控 服务实现类
* 工业炉温度监控 服务实现类
* </p>
*
* @author mt