基础文件同步数据库变更
This commit is contained in:
parent
2e5f6dab8e
commit
2d6beef4c3
@ -88,6 +88,12 @@ public class CurrTask extends Model<CurrTask> {
|
|||||||
@TableField("task_code")
|
@TableField("task_code")
|
||||||
private String taskCode;
|
private String taskCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 任务来源 0:人工 扩展字段
|
||||||
|
*/
|
||||||
|
@TableField("task_source")
|
||||||
|
private Integer taskSource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 任务类型:0:入库到窑炉,1:入库到缓存区,2出库到 窑炉到缓存区,3缓存区出库
|
* 任务类型:0:入库到窑炉,1:入库到缓存区,2出库到 窑炉到缓存区,3缓存区出库
|
||||||
*/
|
*/
|
||||||
@ -125,16 +131,22 @@ public class CurrTask extends Model<CurrTask> {
|
|||||||
private String targetPosition;
|
private String targetPosition;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 目标窑炉id
|
* 窑炉id,关联设备窑炉表:t_kiln_info
|
||||||
*/
|
*/
|
||||||
@TableField("kiln_id")
|
@TableField("kiln_id")
|
||||||
private Long kilnId;
|
private Long kilnId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 窑炉名称
|
||||||
|
*/
|
||||||
|
@TableField("kiln_name")
|
||||||
|
private String kilnName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 车辆id,关联车辆表:t_vehicle_info
|
* 车辆id,关联车辆表:t_vehicle_info
|
||||||
*/
|
*/
|
||||||
@TableField("vehicle_id")
|
@TableField("vehicle_id")
|
||||||
private Integer vehicleId;
|
private Long vehicleId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否缓存,如果当前指的窑炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定窑炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
|
* 是否缓存,如果当前指的窑炉正在加工,系统自动分配货物到缓存位置, 并且记录缓存库位,这是当指定窑炉加工完成后系统先判断是否当前缓存有当前等待执行的任务,然后按照先来先执行原则(等待多个任务)自动调用车辆来执行
|
||||||
@ -146,7 +158,7 @@ public class CurrTask extends Model<CurrTask> {
|
|||||||
* 库位id,关联库位表:t_location
|
* 库位id,关联库位表:t_location
|
||||||
*/
|
*/
|
||||||
@TableField("location_id")
|
@TableField("location_id")
|
||||||
private Integer locationId;
|
private Long locationId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 库位名称
|
* 库位名称
|
||||||
@ -175,6 +187,8 @@ public class CurrTask extends Model<CurrTask> {
|
|||||||
|
|
||||||
public static final String TASK_CODE = "task_code";
|
public static final String TASK_CODE = "task_code";
|
||||||
|
|
||||||
|
public static final String TASK_SOURCE = "task_source";
|
||||||
|
|
||||||
public static final String TASK_TYPE = "task_type";
|
public static final String TASK_TYPE = "task_type";
|
||||||
|
|
||||||
public static final String PALLET_CODE = "pallet_code";
|
public static final String PALLET_CODE = "pallet_code";
|
||||||
@ -189,6 +203,8 @@ public class CurrTask extends Model<CurrTask> {
|
|||||||
|
|
||||||
public static final String KILN_ID = "kiln_id";
|
public static final String KILN_ID = "kiln_id";
|
||||||
|
|
||||||
|
public static final String KILN_NAME = "kiln_name";
|
||||||
|
|
||||||
public static final String VEHICLE_ID = "vehicle_id";
|
public static final String VEHICLE_ID = "vehicle_id";
|
||||||
|
|
||||||
public static final String IS_CACHE = "is_cache";
|
public static final String IS_CACHE = "is_cache";
|
||||||
|
@ -92,7 +92,7 @@ public class CurrTaskDet extends Model<CurrTaskDet> {
|
|||||||
* 当前任务id,关联当前任务表:t_curr_task
|
* 当前任务id,关联当前任务表:t_curr_task
|
||||||
*/
|
*/
|
||||||
@TableField("curr_task_id")
|
@TableField("curr_task_id")
|
||||||
private Integer currTaskId;
|
private Long currTaskId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单号,
|
* 订单号,
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
<result column="status" property="status" />
|
<result column="status" property="status" />
|
||||||
<result column="inter_code" property="interCode" />
|
<result column="inter_code" property="interCode" />
|
||||||
<result column="task_code" property="taskCode" />
|
<result column="task_code" property="taskCode" />
|
||||||
|
<result column="task_source" property="taskSource" />
|
||||||
<result column="task_type" property="taskType" />
|
<result column="task_type" property="taskType" />
|
||||||
<result column="pallet_code" property="palletCode" />
|
<result column="pallet_code" property="palletCode" />
|
||||||
<result column="a_begin_time" property="aBeginTime" />
|
<result column="a_begin_time" property="aBeginTime" />
|
||||||
@ -21,6 +22,7 @@
|
|||||||
<result column="start_position" property="startPosition" />
|
<result column="start_position" property="startPosition" />
|
||||||
<result column="target_position" property="targetPosition" />
|
<result column="target_position" property="targetPosition" />
|
||||||
<result column="kiln_id" property="kilnId" />
|
<result column="kiln_id" property="kilnId" />
|
||||||
|
<result column="kiln_name" property="kilnName" />
|
||||||
<result column="vehicle_id" property="vehicleId" />
|
<result column="vehicle_id" property="vehicleId" />
|
||||||
<result column="is_cache" property="isCache" />
|
<result column="is_cache" property="isCache" />
|
||||||
<result column="location_id" property="locationId" />
|
<result column="location_id" property="locationId" />
|
||||||
@ -29,7 +31,7 @@
|
|||||||
|
|
||||||
<!-- 通用查询结果列 -->
|
<!-- 通用查询结果列 -->
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id, valid, create_time, creator_id, updater_id, update_time, version, status, inter_code, task_code, task_type, pallet_code, a_begin_time, a_end_time, start_position, target_position, kiln_id, 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, pallet_code, a_begin_time, a_end_time, start_position, target_position, kiln_id, kiln_name, vehicle_id, is_cache, location_id, location_name
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
Loading…
Reference in New Issue
Block a user