自动化立体仓库 - WMS系统
*
L
2025-09-18 ceb59af2c3dbe0a4f0953aab5d3498e9c42c8ef9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
/*
 *  Created by Monkey D. Luffy on 2025.09.09
 * */
@Data
public class TaskArmCycleResultParam {
    //单据编号
    private String order_id;
    //数量
    private String pick_num;
    private String staNo;
    private String orderNo;
 
    public void OrderIdTwo(String sign){
        String[] split = order_id.split(sign);
        staNo = split[0];
        orderNo = split[1];
    }
}