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