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 2ad7408..9b70e65 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 @@ -15,7 +15,7 @@ import java.time.LocalDateTime; *

* * @author mt - * @since 2021-11-25 + * @since 2021-12-08 */ @Data @EqualsAndHashCode(callSuper = false) @@ -174,6 +174,12 @@ public class CurrTask extends Model { @TableField("location_name") private String locationName; + /** + * 窑炉工艺号 + */ + @TableField("craft_code") + private String craftCode; + public static final String ID = "id"; @@ -225,6 +231,8 @@ public class CurrTask extends Model { public static final String LOCATION_NAME = "location_name"; + public static final String CRAFT_CODE = "craft_code"; + @Override protected Serializable pkVal() { return this.id; 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 cf30ad8..a7149c6 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 @@ -15,7 +15,7 @@ import java.time.LocalDateTime; *

* * @author mt - * @since 2021-11-25 + * @since 2021-12-08 */ @Data @EqualsAndHashCode(callSuper = false) @@ -174,6 +174,12 @@ public class TaskHis extends Model { @TableField("location_name") private String locationName; + /** + * 窑炉工艺号 + */ + @TableField("craft_code") + private String craftCode; + public static final String ID = "id"; @@ -225,6 +231,8 @@ public class TaskHis extends Model { public static final String LOCATION_NAME = "location_name"; + public static final String CRAFT_CODE = "craft_code"; + @Override protected Serializable pkVal() { return this.id; 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 d4fe1bd..dd75888 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 @@ -29,13 +29,14 @@ + id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code, sheet_no, 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 + kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name, craft_code 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 7c9d21d..09756ee 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 @@ -29,13 +29,14 @@ + id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code, sheet_no, 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 + kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name, craft_code