#
Junjie
2 天以前 d07e0c1a8961b61557de3812450ddfd227f773de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.domain.param;
 
import lombok.Data;
 
@Data
public class StationCommandBarcodeParam {
 
    // 站点编号
    private Integer stationId;
 
    // 条码值(允许为空字符串)
    private String barcode;
 
}