opt:对比字段
This commit is contained in:
@@ -1,8 +1,12 @@
|
|||||||
package org.nl.wms.sch.point.service.dto;
|
package org.nl.wms.sch.point.service.dto;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description /
|
* @description /
|
||||||
@@ -12,109 +16,45 @@ import java.io.Serializable;
|
|||||||
@Data
|
@Data
|
||||||
public class SchBasePointDto implements Serializable {
|
public class SchBasePointDto implements Serializable {
|
||||||
|
|
||||||
/** 点位编码 */
|
|
||||||
private String point_code;
|
private String point_code;
|
||||||
|
|
||||||
/** 点位名称 */
|
|
||||||
private String point_name;
|
private String point_name;
|
||||||
|
|
||||||
/** 区域编码 */
|
|
||||||
private String region_code;
|
private String region_code;
|
||||||
|
|
||||||
/** 区域名称 */
|
|
||||||
private String region_name;
|
private String region_name;
|
||||||
|
|
||||||
/** 点位类型 */
|
|
||||||
private String point_type;
|
private String point_type;
|
||||||
|
|
||||||
/** 点位状态 */
|
|
||||||
private String point_status;
|
private String point_status;
|
||||||
|
|
||||||
/** 允许的物料类型 */
|
|
||||||
private String can_material_type;
|
private String can_material_type;
|
||||||
|
|
||||||
/** 允许的载具类型 */
|
|
||||||
private String can_vehicle_type;
|
private String can_vehicle_type;
|
||||||
|
|
||||||
/** 载具允许最大数量 */
|
|
||||||
private Integer vehicle_max_qty;
|
private Integer vehicle_max_qty;
|
||||||
|
|
||||||
/** 载具类型 */
|
|
||||||
private String vehicle_type;
|
private String vehicle_type;
|
||||||
|
|
||||||
/** 载具编码 */
|
|
||||||
private String vehicle_code;
|
private String vehicle_code;
|
||||||
|
|
||||||
/** 载具数量 */
|
|
||||||
private Integer vehicle_qty;
|
private Integer vehicle_qty;
|
||||||
|
|
||||||
/** 块 */
|
|
||||||
private Integer block_num;
|
private Integer block_num;
|
||||||
|
|
||||||
/** 排 */
|
|
||||||
private Integer row_num;
|
private Integer row_num;
|
||||||
|
|
||||||
/** 列 */
|
|
||||||
private Integer col_num;
|
private Integer col_num;
|
||||||
|
|
||||||
/** 层 */
|
|
||||||
private Integer layer_num;
|
private Integer layer_num;
|
||||||
|
|
||||||
/** 入库顺序 */
|
|
||||||
private Integer in_order_seq;
|
private Integer in_order_seq;
|
||||||
|
|
||||||
/** 出库顺序 */
|
|
||||||
private Integer out_order_seq;
|
private Integer out_order_seq;
|
||||||
|
|
||||||
/** 入空载具顺序 */
|
|
||||||
private Integer in_empty_seq;
|
private Integer in_empty_seq;
|
||||||
|
|
||||||
/** 出空载具顺序 */
|
|
||||||
private Integer out_empty_seq;
|
private Integer out_empty_seq;
|
||||||
|
|
||||||
/** 父点位编码 */
|
|
||||||
private String parent_point_code;
|
private String parent_point_code;
|
||||||
|
|
||||||
/** 外部点位编码 */
|
|
||||||
private String ext_point_code;
|
private String ext_point_code;
|
||||||
|
|
||||||
/** 在执行的任务标识 */
|
|
||||||
private String ing_task_code;
|
private String ing_task_code;
|
||||||
|
|
||||||
/** 是否创建工单 */
|
|
||||||
private Boolean is_has_workder;
|
private Boolean is_has_workder;
|
||||||
|
|
||||||
/** 车间编码 */
|
|
||||||
private String workshop_code;
|
private String workshop_code;
|
||||||
|
|
||||||
/** 是否自动 */
|
|
||||||
private Boolean is_auto;
|
private Boolean is_auto;
|
||||||
|
|
||||||
/** 备注 */
|
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
/** 是否启用 */
|
|
||||||
private Boolean is_used;
|
private Boolean is_used;
|
||||||
|
|
||||||
/** 创建人 */
|
|
||||||
private String create_id;
|
private String create_id;
|
||||||
|
|
||||||
/** 创建人 */
|
|
||||||
private String create_name;
|
private String create_name;
|
||||||
|
|
||||||
/** 创建时间 */
|
|
||||||
private String create_time;
|
private String create_time;
|
||||||
|
|
||||||
/** 修改人 */
|
|
||||||
private String update_id;
|
private String update_id;
|
||||||
|
|
||||||
/** 修改人 */
|
|
||||||
private String update_name;
|
private String update_name;
|
||||||
|
|
||||||
/** 修改时间 */
|
|
||||||
private String update_time;
|
private String update_time;
|
||||||
|
private String start_wait_point;
|
||||||
private String moname;
|
private String next_wait_point;
|
||||||
|
private String vehicle_code2;
|
||||||
private String status;
|
private Integer standing_time;
|
||||||
|
private BigDecimal material_weight;
|
||||||
|
private String instorage_time;
|
||||||
|
private String pcsn;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user