You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
465 B
Java
22 lines
465 B
Java
package com.glxp.api.req.inout;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class AddEnterCodeRequest {
|
|
private String originCode;
|
|
private Long workPlaceCode;
|
|
private String busType;
|
|
private String code;
|
|
private List<String> codeList;
|
|
private String viewType;
|
|
private String orderId;
|
|
|
|
/**
|
|
* selectType 搜索类型 用于取药确认搜索单据 判断灯组是否够用
|
|
*/
|
|
private Integer selectType;
|
|
}
|