add:拣选手持dto
This commit is contained in:
@@ -0,0 +1,116 @@
|
|||||||
|
package org.nl.wms.pda_manage.pick.dto;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.nl.common.enums.StatusEnum;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PickFormVo {
|
||||||
|
/**
|
||||||
|
* 业务单据单据id
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
/**
|
||||||
|
* 单据编码
|
||||||
|
*/
|
||||||
|
private String code;
|
||||||
|
/**
|
||||||
|
* 对应流程实例id
|
||||||
|
*/
|
||||||
|
private String proc_inst_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务单据编号
|
||||||
|
*/
|
||||||
|
private String source_form_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务单据编号
|
||||||
|
*/
|
||||||
|
private String source_form_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务单据日期
|
||||||
|
*/
|
||||||
|
private String source_form_date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型
|
||||||
|
*/
|
||||||
|
private String form_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务单据状态
|
||||||
|
*/
|
||||||
|
private String status;
|
||||||
|
/**
|
||||||
|
* 物料id
|
||||||
|
*/
|
||||||
|
private String material_id;
|
||||||
|
/**
|
||||||
|
* 数量
|
||||||
|
*/
|
||||||
|
private BigDecimal qty;
|
||||||
|
/**
|
||||||
|
* 分配数量
|
||||||
|
*/
|
||||||
|
private BigDecimal assign_qty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单位
|
||||||
|
*/
|
||||||
|
private String unit_id;
|
||||||
|
/**
|
||||||
|
* 批次号
|
||||||
|
*/
|
||||||
|
private String pcsn;
|
||||||
|
/**
|
||||||
|
* 载具
|
||||||
|
*/
|
||||||
|
private String vehicle_code;
|
||||||
|
/**
|
||||||
|
* 载具组盘id
|
||||||
|
*/
|
||||||
|
private String vehicle_id;
|
||||||
|
/**
|
||||||
|
* 拣选工位
|
||||||
|
*/
|
||||||
|
private String point_code;
|
||||||
|
/**
|
||||||
|
*拣选出库车间
|
||||||
|
*/
|
||||||
|
private String product_area;
|
||||||
|
/**
|
||||||
|
*拣选仓库
|
||||||
|
*/
|
||||||
|
private String stor_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private String create_time;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
private String create_name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
private String update_time;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新人
|
||||||
|
*/
|
||||||
|
private String update_name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注说明
|
||||||
|
*/
|
||||||
|
private String remark;
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
package org.nl.wms.pda_manage.pick.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PickTask {
|
||||||
|
/**
|
||||||
|
* 业务单据单据id
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
/**
|
||||||
|
* 单据编码
|
||||||
|
*/
|
||||||
|
private String code;
|
||||||
|
/**
|
||||||
|
* 单据类型
|
||||||
|
*/
|
||||||
|
private String form_type;
|
||||||
|
/**
|
||||||
|
* 数量
|
||||||
|
*/
|
||||||
|
private BigDecimal qty;
|
||||||
|
/**
|
||||||
|
* 载具
|
||||||
|
*/
|
||||||
|
private String vehicle_code;
|
||||||
|
/**
|
||||||
|
* 载具组盘id
|
||||||
|
*/
|
||||||
|
private String vehicle_id;
|
||||||
|
/**
|
||||||
|
* 拣选工位
|
||||||
|
*/
|
||||||
|
private String point_code;
|
||||||
|
/**
|
||||||
|
*拣选出库车间
|
||||||
|
*/
|
||||||
|
private String product_area;
|
||||||
|
/**
|
||||||
|
*拣选仓库
|
||||||
|
*/
|
||||||
|
private String stor_code;
|
||||||
|
/**
|
||||||
|
*是否机械
|
||||||
|
*/
|
||||||
|
private Boolean is_move;
|
||||||
|
/**
|
||||||
|
* 拣选出库
|
||||||
|
*/
|
||||||
|
private String pick_vehicle_23;
|
||||||
|
/**
|
||||||
|
* 拣选回库
|
||||||
|
*/
|
||||||
|
private String pick_vehicle_13;
|
||||||
|
/**
|
||||||
|
* 拣选作业类型
|
||||||
|
*/
|
||||||
|
private String task_type;
|
||||||
|
/**
|
||||||
|
*拣选回库库位
|
||||||
|
*/
|
||||||
|
private String end_struct_code;
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user